Are you the author? Sign in to claim
Make your repo ready for Codex, Claude Code, Cursor, and contributors.
Make your repo ready for Codex, Claude Code, Cursor, and contributors.
一行命令检查你的仓库是否适合 AI 编程代理协作。
npx @shidesheng0218/repo-ready@latest

RepoReady is a CLI-first AI coding agent readiness checker and fixer. It scans your repository, explains why agents may fail, and generates a reviewable fix plan. No server, no login, no AI API key, and no repository scripts are executed.
npx @shidesheng0218/repo-ready@latest
Windows PowerShell:
npx.cmd @shidesheng0218/repo-ready@latest
npx @shidesheng0218/repo-ready@latest --lang zh
npx @shidesheng0218/repo-ready@latest --compact
# Predict where AI coding agents may fail before they touch code
npx @shidesheng0218/repo-ready@latest simulate
# Guided diagnosis and fix workflow
npx @shidesheng0218/repo-ready@latest doctor
npx @shidesheng0218/repo-ready@latest doctor --write
# Generate AGENTS.md, CLAUDE.md, and Cursor rules
npx @shidesheng0218/repo-ready@latest init-agent --dry-run
npx @shidesheng0218/repo-ready@latest init-agent --write
# Use RepoReady as a CI readiness gate
npx @shidesheng0218/repo-ready@latest --ci --min-score 80 --fail-on high,dangerous-script
# Check readiness for specific coding agents
npx @shidesheng0218/repo-ready@latest --profile codex
npx @shidesheng0218/repo-ready@latest --profile claude
npx @shidesheng0218/repo-ready@latest --profile cursor
npx @shidesheng0218/repo-ready@latest fix --plan
npx @shidesheng0218/repo-ready@latest fix --dry-run
RepoReady Report - my-repo
Overall Score 82/100
Agent Ready 70/100
Safety 92/100
Agent Failure Risk
HIGH Validation Gap
MEDIUM Scope Drift
LOW Safety Boundary
Evidence Chain
PASS AGENTS.md detected
PASS Test command detected
REVIEW README contribution section missing
PR-ready Fixes
+ AGENTS.md
+ README.md
+ .github/workflows/repoready.yml
Next
npx @shidesheng0218/repo-ready@latest fix --dry-run
| Area | Checks |
|---|---|
| Agent instructions | AGENTS.md, CLAUDE.md, .cursor/rules |
| Validation | test, build, lint, typecheck commands |
| README quality | install, usage, test, contribution, demo signals |
| CI / workflow | GitHub Actions and verification workflow |
| Context quality | generated files, caches, large files, ignored folders |
| Safety | dangerous scripts, force push, DB reset, production deploys |
| Code quality | tests, checks, lockfiles, CI, source structure |
| Capability | What it gives you |
|---|---|
| Agent Failure Risk | Predicts why Codex, Claude Code, Cursor, or similar agents may fail in your repo. |
| Audit Evidence Chain | Shows the signals behind every score, not just a black-box number. |
| Fix PR Plan | Groups generated fixes into safe, review-required, and manual-only work. |
RepoReady is conservative by default. It previews changes before writing.
npx @shidesheng0218/repo-ready@latest fix --plan
npx @shidesheng0218/repo-ready@latest fix --dry-run
npx @shidesheng0218/repo-ready@latest fix --apply-safe
npx @shidesheng0218/repo-ready@latest fix --write
npx @shidesheng0218/repo-ready@latest fix --branch
npx @shidesheng0218/repo-ready@latest fix --pr --base main
Fix groups:
| Group | Meaning |
|---|---|
| Safe automatic fixes | Low-risk files such as AGENTS.md, .gitignore, .env.example |
| Review-required fixes | README, CI, templates, workflow changes |
| Manual-only boundaries | database, auth, payment, deployment, secrets, destructive scripts |
npx @shidesheng0218/repo-ready@latest --json
npx @shidesheng0218/repo-ready@latest --markdown
name: RepoReady
on:
pull_request:
push:
jobs:
repoready:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./packages/action
with:
language: en
min-score: 70
RepoReady is CLI-first. The web report is optional and can be self-hosted.
You do not need a domain, server, database, OAuth, or GitHub App to use RepoReady locally.
Optional web capabilities:
/r/[owner]/[repo]
/badge/[owner]/[repo].svg
/share-card/[owner]/[repo].svg
/api/fix-pr
Common reasons:
AGENTS.md, CLAUDE.md, or .cursor/rules filespackage.json (deploy, db reset, force push)Run npx @shidesheng0218/repo-ready@latest fix --plan to see what RepoReady suggests.
RepoReady does not upload your source code by default. Local scans stay on your machine. The optional AI enhancement requires an API key and only sends metadata, not source files.
No. RepoReady uses static analysis only. It reads files and parses configuration, but never executes repository scripts, test commands, or build commands.
No. RepoReady works fully offline by default. AI enhancement is optional and requires an API key (OPENAI_API_KEY or ANTHROPIC_API_KEY).
See CONTRIBUTING.md. Good first issues are listed in the README.
npx command not found or blockedUse npx.cmd instead of npx:
npx.cmd @shidesheng0218/repo-ready@latest
If PowerShell blocks scripts, run:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
npx @shidesheng0218/repo-ready@latest fix --plan
npx @shidesheng0218/repo-ready@latest fix --dry-run
npx @shidesheng0218/repo-ready@latest fix --pr --base main
fix --pr requires a git repository, a remote named origin, and GitHub CLI authenticated with gh auth login.
npx downloads an old versionUse @latest to always get the newest release:
npx @shidesheng0218/repo-ready@latest
RepoReady detects common test frameworks (Jest, Mocha, Vitest, Go test, pytest, etc.). If your test command is not detected, open an issue with your package.json scripts.
Use --lang zh flag:
npx @shidesheng0218/repo-ready@latest --lang zh
If your terminal still shows garbled text, try Windows Terminal or set your terminal encoding to UTF-8.
Good first issues:
See CONTRIBUTING.md and docs/launch-pack.md for contribution and launch details.
git clone https://github.com/shidesheng0218/repo-ready.git
cd repo-ready
node packages/cli/bin/repoready.js
node packages/cli/bin/repoready.js --compact
node packages/cli/bin/repoready.js fix --dry-run
Run checks:
node --test
npm run lint
npm run web:build
No. RepoReady never executes repository scripts, build commands, test commands, or any user-defined code.
No. Local scans do not upload private source code by default.
No. RepoReady works without any AI API key. AI enhancement is optional.
No. RepoReady is CLI-first. The web report is optional and can be self-hosted.
npx is blocked by PowerShell execution policy?Use npx.cmd instead of npx:
npx.cmd @shidesheng0218/repo-ready@latest
Or run:
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
RepoReady checks whether your repository has:
Missing any of these will lower your score.
Yes. See CONTRIBUTING.md and the Good First Issues section.
Run:
npx @shidesheng0218/repo-ready@latest fix --dry-run
npx @shidesheng0218/repo-ready@latest fix --plan
This will show you what RepoReady can generate and which changes need human review.
MIT
191 agents, 155 skills, and 82 plugins cross-compatible with Claude Code, Cursor, and Codex
⚠️ Experimentelle Skill-Sammlung für deutsches Recht (Arbeits-, Gesellschafts-, Insolvenz-, Datenschutz-, Prozessrecht u
Manage multiple Claude Code agents from TUI or Web with tmux and git worktrees
Project management using GitHub Issues + Git worktrees for parallel agent execution