Create Wandas Skill

VerifiedSafe

Guides creating a new wandas skill by inspecting APIs, following conventions, and generating required files.

Sby Skills Guide Bot
DevelopmentIntermediate
1708/13/2026
Claude Code
#skill-creation#wandas#scaffolding#api#claude-code

Recommended for

Our review

Creates a new wandas skill by inspecting the wandas API, following existing conventions, and generating a skill directory with documentation and examples.

Strengths

  • Ensures accuracy by reading the actual API source before writing code snippets.
  • Reuses existing skill structure and formatting conventions for consistency.
  • Produces three complete files (SKILL.md, examples, references) in one pass.
  • Validates argument names against the source code.

Limitations

  • Requires access to the wandas source repository (wandas/wandas).
  • Assumes the user already has a .claude/skills directory structure.
  • Does not generate tests or run the new skill to verify behavior.
When to use it

Use when you need to quickly scaffold a new wandas skill with reliable API documentation and examples.

When not to use it

Use when the wandas source code is unavailable or when you need to modify existing skills rather than create new ones.

Security analysis

Safe
Quality score75/100

The skill only instructs reading source code, referencing existing files, and creating new skill documentation files. It does not execute shell commands or perform destructive/exfiltrating actions.

No concerns found

Examples

Create a signal analysis skill
Create a new wandas skill called 'signal-analysis' that wraps the wandas signal API and includes workflow examples.
Add a chart skill
Generate a wandas skill for generating charts, with a reference to the chart API.
Create a custom skill for a new topic
Make a new skill named 'data-export' following the same structure as the wandas-signal-analysis skill.

新しい 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