Create Wandas Skill

VerifiedSafe

Guide to create a new wandas skill by inspecting the API, following existing conventions, and generating required files.

Sby Skills Guide Bot
DevelopmentIntermediate
207/31/2026
Claude Code
#skill-creation#wandas#scaffolding#api-docs#claude-code

Recommended for

Our review

This skill guides the creation of a new wandas skill by inspecting the API, following existing conventions, and generating the required files.

Strengths

  • Checks argument name accuracy directly against source code.
  • Follows the formatting conventions from CLAUDE.md.
  • Automatically creates documentation and example files.

Limitations

  • Depends on the existing structure of the wandas repository.
  • Uses a placeholder parameter ($ARGUMENTS) for the skill name.
When to use it

When adding a new skill to the wandas collection with up-to-date documentation.

When not to use it

When modifying an existing skill or creating a skill outside the wandas ecosystem.

Security analysis

Safe
Quality score85/100

The skill only directs reading source files and creating new skill files; no execution of destructive, exfiltrating, or unauthorized commands.

No concerns found

Examples

Scaffold a wandas signal-analysis skill
Create a new wandas skill for signal-analysis. Follow the standard procedure: inspect the API, use the existing skill style, and create SKILL.md, examples/workflows.md, and references/signal_analysis_api.md.
Add a skill for the filter API
Create a new wandas skill for the filter API. Make sure to check the source code for exact argument names and include a reference file.
Generate a basic wandas skill
I need a new wandas skill called 'data-processing'. Use the standard scaffolding process and ensure the description is a verb phrase.

新しい wandas スキル $ARGUMENTS を作成してください。

手順(必ず順番通りに実行)

  1. wandas/wandas/ を Grep/Read して $ARGUMENTS に関連する API のシグネチャ・引数名・返り値を確認する
  2. CLAUDE.md のフォーマット規約と既存スキル(.claude/skills/wandas-signal-analysis/)のスタイルを参照する
  3. 以下のファイルを作成する:
    • .claude/skills/$ARGUMENTS/SKILL.md
    • .claude/skills/$ARGUMENTS/examples/workflows.md
    • .claude/skills/$ARGUMENTS/references/<topic>_api.md
  4. SKILL.md の description: はユーザーの具体的な操作(動詞+目的語)で書く
  5. 作成したコードスニペットの引数名がソースと一致していることを確認する
Related skills