{"id":37231093,"url":"https://github.com/clementrog/pilot","last_synced_at":"2026-01-15T03:41:40.441Z","repository":{"id":332070253,"uuid":"1132779455","full_name":"clementrog/pilot","owner":"clementrog","description":"The shared brain for AI coding. Context, contracts, and evidence so you can trust the machine.","archived":false,"fork":false,"pushed_at":"2026-01-12T13:20:51.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T18:28:38.146Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clementrog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-12T12:47:53.000Z","updated_at":"2026-01-12T17:39:52.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/clementrog/pilot","commit_stats":null,"previous_names":["clementrog/pilot"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/clementrog/pilot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clementrog%2Fpilot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clementrog%2Fpilot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clementrog%2Fpilot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clementrog%2Fpilot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clementrog","download_url":"https://codeload.github.com/clementrog/pilot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clementrog%2Fpilot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28442318,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"online","status_checked_at":"2026-01-15T02:00:08.019Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-15T03:41:39.979Z","updated_at":"2026-01-15T03:41:40.431Z","avatar_url":"https://github.com/clementrog.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# /pilot\n\nTrust infrastructure for AI coding. Ship real software without being an engineer.\n\n\n## The Problem\n\nAI coding hits a ceiling. You can build an MVP in a weekend, but you can't trust it enough to scale.\n\n- You can't verify if auth logic is secure\n- You can't diagnose which change broke things\n- Every AI session starts from zero\n- No recovery path when things break\n\n**The ceiling isn't skill. It's trust.**\n\n## The Solution\n\nA folder in your repo that acts as shared memory between you and AI tools.\n\n```\n/pilot\n├── STATE.md      → Where are we now?\n├── TASK.md       → Current task (spec + evidence)\n├── CONTEXT.md    → Stack and commands\n├── ROADMAP.md    → What we're building\n├── RULES.md      → AI behavior constraints\n├── LOG.md        → What happened\n├── POLISH.md     → Deferred improvements\n├── /decisions    → Architecture decisions\n└── /snapshots    → Backups after commits\n```\n\nAny AI reads these files. Claude, Cursor, ChatGPT, Gemini. No vendor lock-in.\n\n## How It Works\n\n\n\n### Scope Contracts\n\nEvery task defines boundaries:\n\n```yaml\nscope:\n  must_have:\n    - \"Add login button\"\n  forbidden:\n    - \"Auth logic\"\n```\n\nVerify the diff only touched expected files. No code reading.\n\n### Evidence-Based Verification\n\nAI provides proof:\n\n```yaml\nEvidence:\n  diff_files: \"src/components/Button.tsx\"\n  test_output: \"✓ 14 tests passed\"\n  proof_url: \"localhost:3000\"\n```\n\nBinary checks: Did tests pass? Does URL work? Expected files only?\n\n### Red Zones\n\nCritical paths protected:\n\n```yaml\nred_zones:\n  - \"/api/auth/*\"\n  - \"/api/payments/*\"\n```\n\nChanges require CRITICAL risk + human approval.\n\n### Recovery\n\nLast Known Good (LKG) stored in STATE.md. If broken: `git checkout [lkg]`\n\n## Quick Start\n\n1. Copy `/pilot` folder to your repo\n2. Fill `STATE.md` with project name and repo\n3. Fill `CONTEXT.md` with your stack\n4. Tell orchestrator: \"Read /pilot/RULES.md. Say 'status' when ready.\"\n5. Start building\n\n## Commands\n\n| Say | Does |\n|-----|------|\n| `status` | Current state |\n| `health` | Run checks |\n| `next` | Advance |\n| `stuck` | Get help |\n| `undo` | Revert command |\n| `restore` | Rollback to LKG |\n\n## Risk Levels\n\n| Risk | Use For | Model |\n|------|---------|-------|\n| LOW | Typos, styling | Cheap |\n| MEDIUM | Components, forms | Standard |\n| HIGH | User data, integrations | Advanced |\n| CRITICAL | Auth, payments | Best + human gate |\n\n## Philosophy\n\nYou don't learn to code. You learn to verify.\n\n## Quick Start\n\n1. [Download the latest release](https://github.com/clementrog/pilot/releases/latest)\n2. Extract and copy `pilot/` to your repo\n3. Paste `pilot/CLAUDE.md` into your Claude project instructions\n4. Give PRD to Claude so it fills `STATE.md` with your project name, `CONTEXT.md` with your stack\n5. Say \"status\"\n6. Build\n\n\n---\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclementrog%2Fpilot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclementrog%2Fpilot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclementrog%2Fpilot/lists"}