Agentic Readiness
SkillAI & modelsOnce added, your AI can audit a code repository and improve how reliably agents work in it. It reviews instruction files such as AGENTS.md and CLAUDE.md, how instructions are routed in monorepos or meta-repos, and agent settings, skills, subagents, and context budgets. The checks cover work with Codex, Codex App, Claude Code, and OpenCode.
Available today. Use it from your connected AI after setup.
No other account needed.
Add the skill, then ask your AI to review the repository where your agents will work, starting with its AGENTS.md or CLAUDE.md if one exists. It will point out what is working and what to improve.
Then ask your AI: use the Agentic Readiness skill
What your AI can do with it
- Review AGENTS.md and CLAUDE.md files for quality and how easily agents discover them
- Check instruction routing in monorepos and meta-repos
- Audit agent settings for reliable agent work
- Review the skills and subagents set up in a repository
- Check context budgets to keep agent work reliable
- Suggest improvements so agents work reliably across Codex, Codex App, Claude Code, and OpenCode
What this skill tells your AI
The instructions your AI receives, as published by codealive-ai/ai-driven-development in skills/agentic-readiness/SKILL.md and read by ahel’s review.
Default to audit-only. Present findings and wait for approval unless the user explicitly asks to implement changes.
Audit workflow
- Read the repository's existing instruction chain before inspecting other files.
- Run from the repository root:
python scripts/audit_repo.py --root .
Add --include-user-scope only when the user explicitly wants personal Codex, Claude Code, and OpenCode configuration included. Never inspect credential stores or print secret values.
- Inspect the JSON report and verify findings against the actual build files, scripts, and repository layout. The script detects structural risks; it cannot prove that documented commands or architecture are current.
- Read the references needed for the task:
- instruction-files.md for
AGENTS.md/CLAUDE.mdownership, discovery, routing, compatibility, and CodeAlive lessons learned. - rubric.md for scoring and priority definitions.
- checklist.md for the full cross-agent audit.
- best-practices.md for settings, workflows, context, and safety beyond instruction files.
- instruction-files.md for
- Report evidence before recommendations.
Report shape
Keep the report concise:
- Executive summary: readiness, strongest area, main failure mode, first action.
- Repository profile: scale, languages/frameworks, Git/worktree shape.
- Instruction topology: canonical file, compatibility shim, nested routing, active-chain caveats, context-budget risks.
- Agent surfaces: Codex/Codex App, Claude Code, and OpenCode settings, MCP, skills, and subagents actually present.
- Issues: P0 through P3 with file paths and evidence.
- Recommendations: concrete edits and verification commands.
Do not penalize a repository for omitting agent-specific configuration it does not need. Do flag a claimed cross-agent setup that one of the named agents cannot discover.
Implementation workflow
When the user asks to apply changes:
- Confirm the requested scope from the conversation; do not ask again when it is already explicit.
- Preserve one source of truth. Prefer root
AGENTS.mdplus a regularCLAUDE.mdcontaining@AGENTS.mdwhen the same rules should serve all three agents. - Put scoped rules near their target paths. Add routing indexes only where they prevent real discovery mistakes.
- Keep generated directories, dependencies, caches, secondary worktrees, and unrelated subtrees out of routing tables.
- Turn non-negotiable rules into hooks, linters, or CI checks; instruction files are guidance, not enforcement.
- Show the diff, rerun the audit and tests, then explain any remaining intentional gaps.
Large and multi-repository workspaces
For more than 3,000 tracked files, emphasize navigation, bounded routing, focused verification, and retrieval support rather than copying documentation into startup context.
For a directory containing multiple child Git repositories, treat each child as an independent instruction root. Codex builds its instruction chain once per run/session, so changing a command's working directory does not load the child repository's files. Recommend an explicit meta-repository routing rule and verify each child from a fresh session or by reading its chain before the first operation.
Signals
- GitHub stars
- 136
- Forks
- 10
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
agentic-readiness- Source
- github.com/codealive-ai/ai-driven-development