一键导入
gh-bulk-issues
Use when creating multiple GitHub issues from a structured list. Symptoms - need to file 3+ issues with consistent format/labels.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when creating multiple GitHub issues from a structured list. Symptoms - need to file 3+ issues with consistent format/labels.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit godmode skills, agents, and plugin files for internal consistency, broken references, stale commands, and cross-skill contradictions. Use when asked to "introspect", "audit the skills", "review godmode", or after adding new skills.
Use at the start of every conversation to orient to available skills and workspace rules. Replaces superpowers entirely. Triggers on session start, "/godmode", or "what skills do you have".
Generate and maintain a `.ctx/godmode/memory-bank/` directory that captures project context backed by source code. The memory bank is injected into prompts via lifecycle hooks and updated incrementally as work progresses. Use when starting a new project, onboarding to an unfamiliar codebase, or when context drift is detected.
Patterns and techniques for adding governance, safety, and trust controls to AI agent systems in Rust. Use this skill when building agents that call external tools, implementing policy-based access controls, adding semantic intent classification to detect dangerous prompts, creating trust scoring systems for multi-agent workflows, building audit trails, or enforcing rate limits and content filters. Covers policy composition, tool wrappers, trust decay, and JSONL audit trails — all in Rust.
Parse git history into structured changelogs. Use to generate release notes, audit commit conventions before tagging, or integrate with `godmode release` workflow.
Dead code detector for Rust workspaces. Finds unused public API surface, orphaned test helpers, stale feature flags, and plugin artifacts referencing removed CLI subcommands. Cross-references pub exports against call sites across the workspace.
| name | gh-bulk-issues |
| description | Use when creating multiple GitHub issues from a structured list. Symptoms - need to file 3+ issues with consistent format/labels. |
Filing 3+ related issues at once (e.g., refactor candidates, tech debt).
Chain all gh issue create calls in a single Bash invocation using &&:
gh issue create -R OWNER/REPO --title "..." --label "LABEL" \
--body "$(cat <<'EOF'
Body here (markdown).
EOF
)" && \
gh issue create -R OWNER/REPO --title "..." --label "LABEL" \
--body "$(cat <<'EOF'
Body here.
EOF
)"
$(cat <<'EOF' ... EOF))gh label list -R OWNER/REPOrefactor:, feat:, fix:)| Symptom | Fix |
|---|---|
label not found | Run gh label list first; create with gh label create |
| Body formatting broken | Use <<'EOF' (single-quoted) to prevent shell expansion |