From arc-probe
Creates new ARC Probe plugin skills with directory structure, YAML frontmatter in SKILL.md, naming conventions, verification, count updates, and sync steps.
npx claudepluginhub vzco/arc-probe --plugin arc-probeThis skill uses the workspace's default tool permissions.
Create a new skill in the plugin with the correct directory structure, frontmatter, and registration.
Generates structured SKILL.md files for new Claude Code skills from purpose descriptions, following templates with frontmatter, usage triggers, steps, and best practices.
Scaffold new cc-settings skill (frontmatter, layout, MANUAL.md registration). Triggers "create a skill", "write a skill", "new skill", or repeated prompt patterns worth turning into a skill.
Authors a new SKILL.md with optional references, scripts, and evals following Anthropic's progressive-disclosure conventions. Triggers on requests to write, create, or draft skills.
Share bugs, ideas, or general feedback.
Create a new skill in the plugin with the correct directory structure, frontmatter, and registration.
skill-name (required): kebab-case name for the skill (e.g., scan-vtables)description (required): One-line description of what the skill doesmkdir -p plugin/skills/<skill-name>
Every skill MUST start with YAML frontmatter:
---
name: <skill-name>
description: <description>
argument-hint: <args if applicable>
---
# Skill Title
Description of what this skill does and when to use it.
## Arguments
- `arg1` (required): What it is
- `arg2` (optional): What it is
## Steps
### 1. First step
Detailed instructions with example commands.
### 2. Second step
...
## Tips
- Helpful notes
- Edge cases
head -4 plugin/skills/<skill-name>/SKILL.md
Must show ---, name:, description:, ---.
Update these if they reference the skill count:
plugin/.claude-plugin/plugin.json descriptionpublic-repo/README.md skill tablepublic-repo/plugins/arc-probe/.claude-plugin/plugin.json descriptionAfter adding the skill, run /arc-probe:sync-plugin to copy it to the public repo.
map-struct, find-function, trace-writesprobe- for skills that interact with the GUI bridge/arc-probe:<skill-name>| Field | Required | Description |
|---|---|---|
name | yes | kebab-case skill identifier |
description | yes | One-line description shown in skill list |
argument-hint | no | Shows expected arguments (e.g., <address> [size]) |
disable-model-invocation | no | Set to true to prevent auto-invocation |