akitools
akitools には akiym から収集した 3 個の skills があり、リポジトリ単位の職業カバレッジとサイト内 skill 詳細ページを表示します。
このリポジトリの skills
Task runner for this repo's Go workflow. Use whenever you need to run `go build`, `go test`, `go run`, or `golangci-lint` — the raw commands fail under the sandbox because their default cache paths are not writable, and this skill's recipes pre-seed sandbox-friendly GOCACHE/GOMODCACHE/GOLANGCI_LINT_CACHE. Invoke as `just --justfile .claude/skills/just/justfile <recipe> [args]`.
Search locally indexed library documentation (SQLite FTS5/BM25) via the `docidx` CLI. Use when the user asks how to do something in a library/framework whose docs are indexed into an index.db (API/class/method lookups, tutorials, guides, FAQs), or asks to search/read indexed docs. Flow - search for candidates, then cat the promising chunk ids.
Run a command inside a disposable Docker sandbox via the `cmdsbx` CLI. Use when a command is not permitted on the host (interpreters like python/node/awk, unfamiliar CLIs, untrusted or generated code) and it does not need to write host files or reach the network — only stdout/stderr output matters. Read-only access to the project directory is available via `--mount-cwd-ro`. Examples - compute something with a python one-liner, test a code snippet, run project tests read-only, try an unfamiliar tool safely.