一键导入
skill-flag
Batch add or remove frontmatter fields across one or more SKILL.md files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Batch add or remove frontmatter fields across one or more SKILL.md files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Mad House project lifecycle manager. Create, list, stage, promote, ship, and archive projects in ~/dev/mad-house/lab. Every project has a stage (concept → prototype → building → shipped → maintained → archived) and a type (code, game, creative, tool, experiment, content, bot). Use when managing lab projects, moving a project between stages, promoting from lab to a GitHub org, marking something as shipped, or archiving a project.
Bootstrap a new GitHub repo with all standard Mad House files. Creates the repo, clones it locally under the correct org path, and writes README, .gitignore, .env.example, Dockerfile, CHANGELOG, and AGENTS.md template. Triggers on "new repo", "bootstrap a repo", "create a new project", "start a new repo", "scaffold repo".
Manage the Mad House agent fleet. List all agents in the central registry, check which repos have which agents deployed, and sync agents from the registry to target repos. Use when adding a new agent to the fleet, syncing agents across repos, auditing what agents are deployed where, or rebuilding the agent registry. Triggers on "sync agents", "deploy agents", "what agents are deployed", "add agent to repo", "agent fleet", "update agents".
Generate SVG banners and navigation buttons for GitHub README files. Creates repeatable, customizable SVG assets - hero banners with title, subtitle, and tagline, and sets of rounded-corner navigation buttons with Inter font. Use when building or refreshing a repo README, updating branding, or generating any SVG visual assets. Triggers on "generate banner", "create svg banner", "make readme buttons", "banner for the readme", "design banner", "add banner to readme".
Run cargo fmt, clippy, and tests on a Rust workspace before committing. Catches format failures that break CI. Triggers on "cargo check", "check rust", "run rust tests", "before I commit rust", "fmt and test", "check the workspace", "is the rust build clean".
Check whether the last git commit in the current repo has the Claude co-author trailer. If missing, amend it. Triggers on "add co-author", "fix co-author", "missing co-author", "add claude to commit", "co-author trailer".
| name | skill-flag |
| description | Batch add or remove frontmatter fields across one or more SKILL.md files |
| allowed-tools | Bash |
| disable_model_invocation | true |
Add or remove frontmatter fields across multiple SKILL.md files in one shot. No manual editing per file.
ACTION - add or removeSKILLS - space-separated skill names (or --all for every installed skill)FIELD - the full frontmatter line to add or the key to remove (e.g. disable_model_invocation: true)# Add a flag
~/.claude/commands/skill-flag/scripts/flag.sh add "skill1 skill2 skill3" "disable_model_invocation: true"
# Remove a flag
~/.claude/commands/skill-flag/scripts/flag.sh remove "skill1 skill2" "disable_model_invocation"
# Apply to all installed skills
~/.claude/commands/skill-flag/scripts/flag.sh add --all "user_invocable: false"
add: inserts the field line before the closing --- of the YAML frontmatter, skipping if the key already existsremove: deletes any line matching the key from the frontmatter blockadded, removed, already-present, already-absent, no-frontmatter, not-found~/.claude/commands/skill-flag/scripts/flag.sh <action> "<skills>" "<field>"
Parse the JSON output and present a clean table of what changed.