Skip to main content
Manusで任意のスキルを実行
ワンクリックで
GitHub リポジトリ

codex-brain-bootstrap

codex-brain-bootstrap には brain-bootstrap から収集した 46 個の skills があり、リポジトリ単位の職業カバレッジとサイト内 skill 詳細ページを表示します。

収集済み skills
46
Stars
2
更新
2026-04-24
Forks
0
職業カバレッジ
7 件の職業カテゴリ · 100% 分類済み
リポジトリエクスプローラー

このリポジトリの skills

bootstrap
ソフトウェア開発者

Auto-configure AGENTS.md and brain/ knowledge docs for a new project. Use when setting up Brain Bootstrap in a new repository. Discovers the codebase, fills in templates, and writes project-specific configuration.

2026-04-24
brainstorming
ソフトウェア開発者

Use before any new feature, component, or behavioral change — when you need to explore requirements and design before writing code. Hard gate — no code until design is approved.

2026-04-24
build
ソフトウェア開発者

Build the project and verify it compiles cleanly. Use after making changes to confirm nothing is broken before running tests. Reads the build command from brain/build.md.

2026-04-24
careful
ネットワーク・コンピュータシステム管理者

Activate safety mode — review every destructive command before running. Use before working on production infrastructure, migration scripts, or any task where a typo could be catastrophic.

2026-04-24
changelog
ソフトウェア開発者

Generate a user-facing changelog from git commits — categorize, filter noise, translate to user language. Pass a tag or date as argument (e.g. "$changelog v1.0.0" or "$changelog 2026-01-01").

2026-04-24
checkpoint
ソフトウェア開発者

Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to brain/tasks/todo.md so the next session can resume cleanly.

2026-04-24
clean-worktrees
ソフトウェア開発者

Remove all git worktrees for merged branches. Accepts --dry-run to preview. Use after merging PRs or for weekly maintenance.

2026-04-24
cleanup
ネットワーク・コンピュータシステム管理者

Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.

2026-04-24
cocoindex-code
ソフトウェア開発者

Semantic vector search over the codebase — find code by meaning, not exact names. Use when you need to locate implementations without knowing exact function/class names. Triggers on "find code", "search codebase", "locate implementation", "what does X do".

2026-04-24
code-review-graph
ソフトウェア品質保証アナリスト・テスター

Change risk analysis — detect blast radius, risk score, and breaking changes from git diffs. Use before any PR or merge. Triggers on "review PR", "check impact", "blast radius", "what breaks", "safe to merge".

2026-04-24
codebase-memory
ソフトウェア開発者

Use when you need structural graph navigation — trace call paths, detect blast radius, find dead code, or query architecture — before reading files. Structural queries only: not for semantic meaning (use cocoindex-code for that).

2026-04-24
context
ソフトウェア開発者

Load all relevant brain/ knowledge files for a domain area. Use at session start or when switching to a new topic. Accepts a domain keyword like api, database, auth, build, security.

2026-04-24
cross-layer-check
ソフトウェア開発者

Verify that a new field, enum value, or status code exists consistently across all layers. Use after adding new fields to prevent cross-layer inconsistency (DB → service → API → tests).

2026-04-24
db
データベースアーキテクト

Query the database — list schemas, tables, describe a table, or run SQL. Accepts arguments like schemas, tables, describe <table>, or raw SQL.

2026-04-24
debug
ソフトウェア開発者

Root cause analysis for bugs and errors. Use when something is broken and the cause is not obvious. Applies the 5-step investigation method — observe, hypothesize, trace backwards, binary search, prove.

2026-04-24
deps
情報セキュリティアナリスト

Manage dependencies and fix CVEs — check outdated packages, update a specific package, run security audit, explain why a package is installed, or deduplicate. Read brain/cve-policy.md for the decision tree.

2026-04-24
diff
ソフトウェア開発者

Analyze branch diff against merge-base — stat overview, full diff, file list, commit list, or branch overlap check. Always uses merge-base to exclude main's forward progress.

2026-04-24
docker
ネットワーク・コンピュータシステム管理者

Docker workflow helpers — list containers, build, run, logs, compose up/down, prune. Non-interactive only.

2026-04-24
git
ソフトウェア開発者

Git workflow helpers — status, rebase, commit, amend, log, stash, branch management. Includes pre-push checklist. NEVER git push autonomously.

2026-04-24
health
ネットワーク・コンピュータシステム管理者

Verify Codex configuration health — AGENTS.md, hooks, config.toml, agents, skills, secrets scan, and MCP reachability. Reports ✅/⚠️/❌ for each check.

2026-04-24
issue-triage
ソフトウェア開発者

Use when you have open GitHub issues that need categorization, duplicate detection, staleness review, or triage comments — runs 3-phase workflow with mandatory user validation before posting. Args: "all" for deep analysis, issue numbers (e.g. "42 57"), "fr" for French, no arg = audit only.

2026-04-24
lint
ソフトウェア開発者

Run the linter and formatter check. Use before opening a PR to ensure code style compliance. Reads lint command from brain/build.md.

2026-04-24
maintain
ソフトウェア開発者

Detect and fix stale brain/*.md knowledge docs. Use when brain/architecture.md or build.md references missing files, wrong commands, or outdated patterns. Keeps the knowledge base accurate.

2026-04-24
mcp
ソフトウェア開発者

Manage MCP (Model Context Protocol) servers — list configured tools, check status, show invocation format, or add a new server to .codex/config.toml.

2026-04-24
migrate
データベースアーキテクト

Run database or schema migrations — up, down, rollback, status, or create a new migration. Reads brain/build.md for migration commands.

2026-04-24
mr
ソフトウェア開発者

Generate a PR/MR description after the review passes. Use after $review confirms the code is ready to merge. Reads brain/templates.md for the required format.

2026-04-24
plan
ソフトウェア開発者

Plan a non-trivial task before implementing. Use when the task requires 3+ steps, multiple files, or an architectural decision. Writes a checkable plan to brain/tasks/todo.md.

2026-04-24
playwright
ソフトウェア開発者

Browser automation — navigate, click, fill, snapshot web pages. Use for UI testing, documentation scraping, OAuth flows, web research. Always snapshot first, screenshot never (unless required).

2026-04-24
pr-triage
ソフトウェア品質保証アナリスト・テスター

Use when you have open GitHub PRs that need categorization, overlap detection, risk review, or code review comments — runs 3-phase workflow with mandatory user validation before posting. Args: "all" to review all, PR numbers (e.g. "42 57"), "fr" for French, no arg = audit only.

2026-04-24
receiving-code-review
ソフトウェア品質保証アナリスト・テスター

Use when receiving code review feedback — before implementing suggestions, especially if feedback seems unclear or technically questionable. Verify before implementing.

2026-04-24
repo-recap
ソフトウェア開発者

Generate a comprehensive repo recap (PRs, issues, releases) ready to share with the team. Pass "fr" for French output (default is English).

2026-04-24
research
ソフトウェア開発者

Isolated codebase exploration that preserves your main context. Use when you need to understand code structure, trace call paths, or gather evidence before making changes. Spawns an explorer subagent.

2026-04-24
resume
ファイル事務員

Resume a previous session from brain/tasks/todo.md. Use at the start of a new session to restore context and continue where you left off.

2026-04-24
review
ソフトウェア品質保証アナリスト・テスター

Full 10-point expert code review. Use before any PR or MR. Checks correctness, cross-layer consistency, transaction safety, test coverage, and security. Spawns reviewer subagent for isolation.

2026-04-24
root-cause-trace
ソフトウェア開発者

5-step root cause trace for errors deep in execution. Use when the error surface is far from the actual trigger. Trace backwards from the symptom to the origin.

2026-04-24
serena
ソフトウェア開発者

Use when renaming symbols across files, finding all references to a function/class, moving code between files, or inlining variables — LSP-backed atomic multi-file refactoring. Zero manual grep needed.

2026-04-24
serve
ソフトウェア開発者

Start service(s) locally for development. Accepts a service name, all, frontend, or backend. Reads brain/build.md for the actual start commands.

2026-04-24
squad-plan
プロジェクト管理専門家

Generate a parallel workstream plan for multi-agent Codex work. Decomposes a feature into independent workstreams, each ownable by a separate Codex instance. Saves to brain/tasks/ACTION_PLAN.md.

2026-04-24
status
プロジェクト管理専門家

Project status dashboard — AGENTS.md budget, unfilled placeholders, lessons file size, hooks executability, jq availability, plugin states. One-glance health report.

2026-04-24
subagent-driven-development
ソフトウェア開発者

Use when executing implementation plans with independent tasks — dispatches fresh subagents per task with two-stage review (spec compliance, then code quality). Use after $plan generates an independent-task plan.

2026-04-24
このリポジトリの収集済み skills 46 件中、上位 40 件を表示しています。