Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill aokay명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | aokay |
| description | > Use when this capability is needed. |
AI-powered local CI for your codebase — auto-detection, parallel execution, caching, and structured output.
Do NOT run lint, typecheck, test, or build commands directly (e.g. npm test,
cargo check, go test, ruff, pytest, eslint). Always use aokay
instead — it detects the right tools, runs all checks, and produces structured
results.
The CLI is at .claude/skills/aokay/scripts/aokay.
# Initialize (auto-detects project type, generates aokay.yml)
bash .claude/skills/aokay/scripts/aokay init
# Run full pipeline
bash .claude/skills/aokay/scripts/aokay run
# Quick check (lint + typecheck only)
bash .claude/skills/aokay/scripts/aokay run --profile fast
# Check last results
bash .claude/skills/aokay/scripts/aokay status
Workflow: If no aokay.yml exists, run init first, then run.
| Profile | Jobs | Use case |
|---|---|---|
fast | lint, typecheck | Quick validation |
commit | lint, typecheck, review | Pre-commit |
full | lint, typecheck, test, build, review | Pre-push or CI parity |
aokay initAnalyzes the project and generates aokay.yml. By default, also sets up git
hooks (pre-commit runs commit profile, pre-push runs full profile).
aokay init # auto-detect + setup hooks
aokay init --no-hooks # skip hook setup
aokay init --update-agent-docs # generate CLAUDE.md patch
Important: Before running init, ask the user whether they want git hooks
set up. If yes (default), run aokay init. If no, run aokay init --no-hooks.
For manual project analysis, pipe JSON to stdin. See Config Format.
aokay runaokay run # full pipeline
aokay run --profile fast # lint + typecheck only
aokay run --only lint,test # specific jobs
aokay run --json # JSONL output for agent consumption
aokay run --force # ignore cache
aokay run --until-pass # re-run failed jobs until all pass
aokay statusDisplays results from the last run.
Human-readable (default):
✓ lint
✓ typecheck
✗ test
Summary: 1 failed, 2 passed (3 total) in 2.5s
JSONL (--json): structured events for agent consumption.
The review job uses scripts/review.sh, which delegates to an AI CLI:
claude -p --model haikucodex review --uncommittedOverride the backend with AOKAY_REVIEW_CMD:
AOKAY_REVIEW_CMD="my-review-tool" aokay run --profile full
In aokay.yml, configure the review job to use the script:
review:
type: agent-review
agent: bash skills/aokay/scripts/review.sh
aokay.yml schemaSource: Ema93sh/aokay — distributed by TomeVault.