wise-skills-createlisted
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