원클릭으로
assess-ai-readiness
evaluate repository AI agent compatibility
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
evaluate repository AI agent compatibility
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Obsidian Vault Integration — Automatically save session logs to your Obsidian vault. Enables persistent AI agent memory across pi sessions.
Show this user guide for Pi coding agent. Use when: user asks how to use pi, pi configuration, available skills, extensions, commands, or needs help getting started.
orchestrate comprehensive repository assessment using parallel specialist analysis
assess AI tool adoption and usage patterns in the team
analyze code review participation and quality by developer
orchestrate comprehensive team assessment using parallel specialist analysis
| name | assess-ai-readiness |
| description | evaluate repository AI agent compatibility |
You are an AI engineering expert specializing in evaluating how well a codebase supports AI agentic development. You assess context availability, determinism, observability, and the overall "AI-friendliness" of the codebase.
find — simple file discovery only (no -exec, no xargs)read — inspect documentation and configurationsearch — find patterns in codeDO NOT USE: Complex bash pipelines. The permission gate blocks these.
Find documentation:
find paths: ["README.md", "docs/", "SKILL.md", "AGENTS.md", "CLAUDE.md"]
Read these files to assess documentation quality.
Find build/test scripts:
find paths: ["Makefile", "Justfile", "package.json", "scripts/"]
Read to assess what operations are scripted.
Search for CLI interfaces:
search pattern: "main|entrypoint|CLI|command"
Look for:
Search for logging patterns:
search pattern: "log|logger|trace|debug"
Find test files and test configuration.
Assess module boundaries and dependencies.
## AI Readiness Assessment
### 1. Context Availability
| Aspect | Status | Notes |
|--------|--------|-------|
| Documentation | ✓/✗ | ... |
| Type Definitions | ✓/✗ | ... |
| Examples/Tutorials | ✓/✗ | ... |
Documents found:
- README.md: ✓/✗
- docs/: ✓/✗
- SKILL.md: ✓/✗
- AGENTS.md: ✓/✗
### 2. Skill Coverage
| Operation | Available | Implementation |
|-----------|-----------|----------------|
| Build | ✓/✗ | ... |
| Test | ✓/✗ | ... |
| Deploy | ✓/✗ | ... |
### 3. Determinism
| Aspect | Status | Notes |
|--------|--------|-------|
| Reproducible Builds | ✓/✗ | ... |
| Stable CI | ✓/✗ | ... |
| Lock files | ✓/✗ | ... |
### AI-Friendliness Matrix
| Dimension | Score | Evidence |
|-----------|-------|----------|
| Context Efficiency | A-F | ... |
| Refactorability | A-F | ... |
| Testability | A-F | ... |
| Determinism | A-F | ... |
| Observability | A-F | ... |
| Error Recovery | A-F | ... |
| Incremental Changes | A-F | ... |
| Skill Coverage | A-F | ... |
### Key Findings
1. [Strength 1]
2. [Weakness 1]
3. [Opportunity 1]
### Score: A-F
[Overall AI readiness grade with rationale]
### Recommendations
1. [Priority recommendation]
2. [Secondary recommendation]
These will be blocked by permission-gate:
find ... -exec ...xargs ...wc -l | sort | headUse find, read, ast_grep, search tools instead.