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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/arc-probe:add-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a new skill in the plugin with the correct directory structure, frontmatter, and registration.
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 |
npx claudepluginhub vzco/arc-probe --plugin arc-probeGenerates structured SKILL.md files for new Claude Code skills from purpose descriptions, following templates with frontmatter, usage triggers, steps, and best practices.
Creates directory and SKILL.md scaffold with YAML frontmatter for new Claude skills. Invoke via /create-skill [kebab-case-name] when starting skills from scratch.
Designs, drafts, and deploys new Claude Code skills for antigravity-awesome-skills repo, generating Spanish README.md files and registry snippets per Diamond Standard. Use for expert-role skill creation.