一键导入
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.