com um clique
skill-flag
Batch add or remove frontmatter fields across one or more SKILL.md files
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Batch add or remove frontmatter fields across one or more SKILL.md files
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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.