Agent skill

windsurf-hello-world

Create your first Windsurf Cascade interaction and Supercomplete experience. Use when starting with Windsurf, testing your setup, or learning basic Cascade and Supercomplete workflows. Trigger with phrases like "windsurf hello world", "windsurf example", "windsurf quick start", "first windsurf project", "try windsurf". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-hello-world --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.11.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEdit
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/windsurf-hello-world/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Windsurf Hello World ## Overview First hands-on experience with Windsurf's three AI modalities: Cascade (agentic chat), Supercomplete (inline completions), and Command (inline editing). This skill walks through real interactions, not placeholder code. ## Prerequisites - Completed `windsurf-install-auth` setup - Windsurf open with a project folder ## Instructions ### Step 1: Experience Supercomplete (Tab Completions) Open any code file and start typing. Supercomplete predicts your intent based on recent edits, cursor movement, and surrounding context. ```typescript // Type this in a new file: hello.ts // After typing "function greet", Supercomplete suggests the rest function greet(name: string): string { // Just type "return" and press Tab -- Supercomplete fills the template literal return `Hello, ${name}! Welcome to Windsurf.`; } // Start typing "const users" -- Supercomplete predicts array based on greet() context const users = ["Alice", "Bob", "Charlie"]; users.forEach(user => console.log(greet(user))); ``` Key Supercomplete behaviors: - Press **Tab** to accept a suggestion - Press **Esc** to dismiss - Suggestions appear as gray ghost text - Tracks your edit history (last 30-90

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Experience Supercomplete (Tab Completions)
  5. Step 2: Use Cascade Write Mode (Cmd/Ctrl+L)
  6. Step 3: Use Cascade Chat Mode
  7. Step 4: Try Inline Command (Cmd/Ctrl+I)
  8. Step 5: Use @ Context Mentions
  9. Output
  10. Error Handling
  11. Examples
  12. Terminal Command Mode
  13. Preview Your App
  14. Resources
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the windsurf-hello-world skill do?

Create your first Windsurf Cascade interaction and Supercomplete experience. Use when starting with Windsurf, testing your setup, or learning basic Cascade and Supercomplete workflows. Trigger with phrases like "windsurf hello world", "windsurf example", "windsurf quick start", "first windsurf project", "try windsurf". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-hello-world --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going