Create wandas skill

VerifiedSafe

Skill for creating a new wandas skill by analyzing the API and following conventions.

Sby Skills Guide Bot
DevelopmentIntermediate
208/8/2026
Claude Code
#skill-creation#wandas#api-documentation#conventions

Recommended for

Our review

This skill guides the creation of a new 'wandas' skill: it first inspects the wanas API, then follows existing conventions to generate the skill files (SKILL.md, examples, references) and verifies that argument names match the source.

Strengths

  • Ensures new skills match existing codebase conventions.
  • Validates argument names against actual API signatures.
  • Breaks creation into clear, ordered steps.
  • References existing skill style for consistency.

Limitations

  • Depends on wanas source and CLAUDE.md being available.
  • Scope is limited to creating skills within the wanas project.
  • Does not handle validation beyond argument name checks.
When to use it

Use when you need to add a new skill to the wanas project following its established structure.

When not to use it

Do not use for standalone skill creation outside the wanas codebase or when no existing conventions are defined.

Security analysis

Safe
Quality score80/100

The skill only involves reading source code and generating documentation files; no destructive, exfiltrating, or external command execution is instructed.

No concerns found

Examples

Create a basic skill
Create a new wandas skill called `signal-analyzer` following the standard steps. Inspect the wanas API, use the conventions from CLAUDE.md, and generate SKILL.md, examples, and reference files.
Create a skill with a specific topic
I need a new skill for the wanas `spectrum` function. Create the skill files with a reference to the spectrum API. Verify the argument names.
Create a skill for the transform API
Add a new wandas skill for the `transform` API. Follow the procedure: inspect the source, check existing skills, create the skill files, and verify argument names.

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