ワンクリックで
lint-all
Run full lint + format + test + frontend build. Pre-commit / pre-release check.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run full lint + format + test + frontend build. Pre-commit / pre-release check.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
End-to-end MCP server verification — spawn stdio server, list tools, invoke each one, verify response shape.
Set up a demo session — pick a sample repo, index it, open web UI, prep the narrative.
Cut a release — bump version, update CHANGELOG, tag, push, create GitHub release, install local binaries.
Sprint / project status from knowledge graph. Show what's planned, in-progress, done.
Audit MCP tool set — count, descriptions, consolidation candidates, budget compliance.
Autonomous research loop. Takes a topic, runs web searches, fetches sources, synthesizes findings, and files everything into the knowledge graph. Based on Karpathy's autoresearch pattern. Triggers on: "/autoresearch", "research [topic]", "deep dive into [topic]", "investigate [topic]", "find everything about [topic]", "go research".
| name | lint-all |
| description | Run full lint + format + test + frontend build. Pre-commit / pre-release check. |
Run the complete quality gate locally. Everything CI checks plus a few extras.
/ship (release workflow depends on it being clean)# 1. Format (auto-fix in place)
cargo fmt --all
# 2. Clippy with strict warnings
cargo clippy --workspace -- -D warnings
# 3. Run all tests
cargo test --workspace
# 4. Build release binaries (catches release-only errors)
cargo build --release
# 5. Frontend build
cd crates/web/frontend && npm run build && cd ../../..
# 6. Check there are no unstaged changes (means fmt fixed something)
git diff --exit-code
| Result | Meaning |
|---|---|
All green, git diff --exit-code returns 0 | Ready to commit |
| fmt fixed something | Commit the formatting changes |
| clippy warning | Fix before commit (never allow warnings) |
| test failure | Stop; investigate |
| npm build warning about chunk size | Expected for three.js bundle, ignore |
unnecessary_min_or_max — clippy suggests removing .max(0) on unsigned typesptr_arg — clippy prefers &Path over &PathBuf in function argsneedless_borrow — remove unnecessary & in refs.gitattributesWhen clippy complains about a function:
search(mode="exact", query=<function_name>) to see it in the graph