From windsurf-pack
Create a minimal working Windsurf example. Use when starting a new Windsurf integration, testing your setup, or learning basic Windsurf API patterns. Trigger with phrases like "windsurf hello world", "windsurf example", "windsurf quick start", "simple windsurf code".
How this skill is triggered — by the user, by Claude, or both
Slash command
/windsurf-pack:windsurf-hello-worldThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Minimal working example demonstrating core Windsurf functionality.
Minimal working example demonstrating core Windsurf functionality.
windsurf-install-auth setupCreate a new file for your hello world example.
import { WindsurfClient } from '@windsurf/sdk';
const client = new WindsurfClient({
apiKey: process.env.WINDSURF_API_KEY,
});
async function main() {
// Your first API call here
}
main().catch(console.error);
Success! Your Windsurf connection is working.
| Error | Cause | Solution |
|---|---|---|
| Import Error | SDK not installed | Verify with npm list or pip show |
| Auth Error | Invalid credentials | Check environment variable is set |
| Timeout | Network issues | Increase timeout or check connectivity |
| Rate Limit | Too many requests | Wait and retry with exponential backoff |
import { WindsurfClient } from '@windsurf/sdk';
const client = new WindsurfClient({
apiKey: process.env.WINDSURF_API_KEY,
});
async function main() {
// Your first API call here
}
main().catch(console.error);
from windsurf import WindsurfClient
client = WindsurfClient()
# Your first API call here
Proceed to windsurf-local-dev-loop for development workflow setup.
npx claudepluginhub terrylica/claude-code-plugins-plus --plugin windsurf-packGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.
7plugins reuse this skill
First indexed Jul 11, 2026
Showing the 6 earliest of 7 plugins