| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
An agent skill that stops a coding agent from telling you it finished when it did not.
Coding agents like to say "done" after writing code they never ran. code-max replaces that habit with a contract:
Every run ends with a fixed report: status, requirements, changed files, commands actually executed, pre-existing failures, and open risks. The status is either COMPLETE or BLOCKED, and BLOCKED needs a real external reason such as missing credentials or unreachable infrastructure.
npx skills add PyModel/code-maxInstalls into whichever agents the skills CLI finds on your machine. Update later with npx skills update code-max.
Or clone and symlink it yourself:
git clone https://github.com/PyModel/code-max.git
cd code-max
./skills.shskills.sh symlinks this directory into the skills folder of every agent it knows about:
| Agent | Path |
|---|---|
| Claude Code | ~/.claude/skills/code-max |
| Codex | ~/.codex/skills/code-max |
| Cursor | ~/.cursor/skills/code-max |
| Gemini | ~/.gemini/skills/code-max |
| Pi | ~/.pi/skills/code-max |
| OpenCode | ~/.config/opencode/skills/code-max |
Because they are symlinks, git pull updates every agent at once. Add or remove entries by editing the TARGETS array at the top of the script.
Ask for it by name, or describe the rigor you want:
/code-max fix the token refresh race in src/auth/session.ts
Implement the CSV import. Verify before you claim done, no stubs.
Reach for it when a wrong answer is expensive: migrations, auth, payments, anything you plan to merge without reading closely. For a one-line typo fix it is overhead.
MIT
| Back | FazBrowse Home | New Git URL |