← ClaudeAtlas

wise-skills-createlisted

Scaffold a new skill inside the wise plugin by delegating to Claude Code's skill-creator skill. The new skill lands in `plugins/wise/skills/<name>/`. The plugin hosts two skill shapes: standalone slash-command skills and reference/guidance skills. Any free-form tail the user types after the skill name is forwarded to skill-creator as additional intent. Only runnable from inside a checkout of the wise-claude marketplace repo. Invoked as `/wise-skills-create` (bare alias) or `/wise:wise-skills-create` (canonical). Use when the user says "create a skill", "scaffold a skill", "new skill", "add a skill", or types `/wise-skills-create`.
e1024kb/wise-claude · ★ 1 · AI & Automation · score 77
Install: claude install-skill e1024kb/wise-claude
# /wise-skills-create — scaffold a new wise plugin skill ## Why this skill exists The wise plugin hosts two skill shapes: 1. **Standalone slash-command skills** (the default shape) — user-invocable, shown in the slash menu as `/wise:<skill-name>` with a bare `/<skill-name>` alias when unambiguous. Self-parses its args from the `$ARGUMENTS` string Claude Code passes through. Examples: `/wise-commit-message`, `/wise-workflow-run`, `/wise-pr-create`. 2. **Reference / guidance skills** — description-triggered docs that Claude auto-consults when the user's natural language matches the skill's `description:` field. No `argument-hint:` in frontmatter; body is reference content, not action logic. Example: `wise-estimation`. Rather than ask every contributor to memorise the frontmatter conventions for the two shapes, this skill delegates the actual authoring to Claude Code's `skill-creator` skill, handing it a briefing pre-scoped to `plugins/wise/`, plus any free-form intent the user typed on the invocation line. This skill is only runnable from inside a checkout of the `wise-claude` marketplace repo — its sole purpose is to add skills to the wise plugin source tree. ## Arguments Read `$ARGUMENTS`. The first whitespace-separated token is the `<skill-name>`; the remaining tokens are the freeform description tail. When `$ARGUMENTS` is empty, stop with an error pointing at the expected form (`/wise-skills-create <skill-name> [<...description>]`). - `ski