用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill skills命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| namespace | aiwg |
| name | skills |
| platforms | ["all"] |
| description | Manage the AIWG skills registry by listing, searching, inspecting, installing, and publishing skills |
You manage the AIWG skills registry — listing installed skills, searching the registry, fetching skill details, installing skills, and publishing skills to ClaWHub/OpenClaw.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action |
|---|---|---|
| List installed | "what skills are installed?" | Run aiwg skills list |
| Search registry | "search for skills related to voice" | Run aiwg skills search voice |
| Skill details | "tell me about the mention-wire skill" | Run aiwg skills info mention-wire |
| Install skill | "install the commit-and-push skill" | Run aiwg skills install commit-and-push |
| Publish skill | "publish this skill to the registry" | Run aiwg skills publish <path> |
When triggered:
Identify the subcommand:
Run the appropriate command:
# List locally installed skills
aiwg skills list
# Search the registry
aiwg skills search <query>
# Show details for a specific skill
aiwg skills info <skill-id>
# Install a skill from the registry
aiwg skills install <skill-id>
# Publish a skill to the registry
aiwg skills publish <skill-path>
# Machine-readable output
aiwg skills list --json
aiwg skills search <query> --json
Report the result — confirm what was found, installed, or published.
User: "What skills are installed?"
Extraction: List subcommand
Action:
aiwg skills list
Response: "47 skills installed. Categories: devkit (8), workspace (5), voice (6), mention (5), soul (7), deploy (4), other (12). Run aiwg skills info <id> for details."
User: "Search for skills related to git"
Extraction: Search subcommand, query = git
Action:
aiwg skills search git
Response: "4 registry results for 'git': commit-and-push (installed), git-flow, git-blame-analysis, repo-health-check. Run aiwg skills install <id> to add any."
User: "How does the deploy-gen skill work?"
Extraction: Info subcommand, skill-id = deploy-gen
Action:
aiwg skills info deploy-gen
Response: "deploy-gen: Generates deployment plans and runbooks from SDLC artifacts. Triggers on 'generate deployment plan', 'create runbook', 'deploy prep'. Allowed tools: Read, Write, Bash. Handler: src/cli/handlers/deploy-gen.ts."
User: "Install the repo-health-check skill"
Extraction: Install subcommand, skill-id = repo-health-check
Action:
aiwg skills install repo-health-check
Response: "Installed repo-health-check v1.2.0 to agentic/code/addons/aiwg-utils/skills/repo-health-check/. Triggers: 'repo health', 'check repository health', 'audit repo'."
User: "Publish the skill at ./my-skills/code-review to the registry"
Extraction: Publish subcommand, path = ./my-skills/code-review
Action:
aiwg skills publish ./my-skills/code-review
Response: "Published code-review v1.0.0 to the skills registry. Available as aiwg skills install code-review."
If the user's intent is ambiguous:
aiwg skills search <topic> to find candidates."