{"id":51670904,"url":"https://github.com/scottconverse/codex-dev-loop","last_synced_at":"2026-07-15T00:03:45.287Z","repository":{"id":367092947,"uuid":"1279207630","full_name":"scottconverse/codex-dev-loop","owner":"scottconverse","description":"Durable development workflow system for Codex desktop.","archived":false,"fork":false,"pushed_at":"2026-06-24T13:25:48.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-24T15:13:35.969Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://scottconverse.github.io/codex-dev-loop/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scottconverse.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"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-06-24T13:25:14.000Z","updated_at":"2026-06-24T13:26:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/scottconverse/codex-dev-loop","commit_stats":null,"previous_names":["scottconverse/codex-dev-loop"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/scottconverse/codex-dev-loop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scottconverse%2Fcodex-dev-loop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scottconverse%2Fcodex-dev-loop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scottconverse%2Fcodex-dev-loop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scottconverse%2Fcodex-dev-loop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scottconverse","download_url":"https://codeload.github.com/scottconverse/codex-dev-loop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scottconverse%2Fcodex-dev-loop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35483861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-14T02:00:06.603Z","response_time":114,"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-07-15T00:03:44.731Z","updated_at":"2026-07-15T00:03:45.283Z","avatar_url":"https://github.com/scottconverse.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Codex Dev Loop\n\nCodex Dev Loop is a lightweight operating system for long-running development work with the Codex desktop app.\n\nIt packages a reusable Codex skill, a project memory vault, approval gates, goal cards, loop contracts, automation runbooks, and local helper scripts so Codex can keep context, verify work, and ask for approval at the right moments.\n\nVersion: **0.2.0**\n\n## What It Gives You\n\n- A local Codex skill: `$codex-dev-loop`\n- A repo-local `.codex-loop/` memory vault\n- Goal cards with done criteria and verification\n- Loop engineering specs with triggers, verifiers, budgets, and stop conditions\n- Run logs for observed state, actions, verifier results, and escalations\n- Approval gates for external or irreversible actions\n- Approval queue for pushes, deploys, messages, merges, and production changes\n- Open-loop tracking\n- Automation registry and runbooks\n- Voice/transcript intake workflow\n- HTML status dashboard\n- GitHub/CI monitoring runbook\n- Side-panel review workflow\n\n## Quick Install\n\nClone the repo, then run the installer for your shell.\n\nPowerShell:\n\n```powershell\npowershell -ExecutionPolicy Bypass -File .\\installers\\install.ps1\n```\n\nBash:\n\n```bash\nbash installers/install.sh\n```\n\nThe installer copies `skill/` into your Codex skills directory as `codex-dev-loop`.\n\n## Use In Codex Desktop\n\nIn a project thread, say:\n\n```text\nUse $codex-dev-loop for this repo.\n```\n\nThen ask Codex to initialize the vault:\n\n```text\nInitialize the dev loop vault here.\n```\n\nOr run it yourself from the project root:\n\n```powershell\npython $HOME\\.codex\\skills\\codex-dev-loop\\scripts\\bootstrap_vault.py --target .\n```\n\n## Project Vault\n\nThe default vault shape:\n\n```text\n.codex-loop/\n  project-brief.md\n  preferences.md\n  approval-gates.md\n  approval-queue.md\n  goals/\n  loops/\n  runs/\n  decisions/\n  inbox/\n  open-loops.md\n  runbooks/\n  automation-ideas.md\n  automation-registry.md\n```\n\n## Helper Scripts\n\n```powershell\npython \u003cskill-dir\u003e\\scripts\\bootstrap_vault.py --target .\npython \u003cskill-dir\u003e\\scripts\\create_goal.py --target . --name \"first goal\" --objective \"verified outcome\"\npython \u003cskill-dir\u003e\\scripts\\memory_check.py --target .\npython \u003cskill-dir\u003e\\scripts\\finalize_check.py --target .\npython \u003cskill-dir\u003e\\scripts\\loop_status.py --target . --html\npython \u003cskill-dir\u003e\\scripts\\create_loop.py --target . --name \"pr babysitter\" --trigger \"Every 15 minutes\" --action \"Inspect PRs labeled agent-watch\" --verifier \"CI green and no blocking comments\" --stop-condition \"CI green or budget exhausted\"\npython \u003cskill-dir\u003e\\scripts\\record_loop_run.py --target . --loop pr-babysitter --observed \"CI red\" --action \"Prepared one deterministic fix\" --verifier-result failed --next-step \"Ask user before push\"\npython \u003cskill-dir\u003e\\scripts\\run_loop_check.py --target .\npython \u003cskill-dir\u003e\\scripts\\queue_approval.py --target . --title \"push branch\" --action \"Push branch feature-x\"\npython \u003cskill-dir\u003e\\scripts\\ingest_transcript.py --target . --source notes.txt\n```\n\n## Documentation\n\n- [User manual](docs/user-manual.md) ([rendered](https://scottconverse.github.io/codex-dev-loop/user-manual.html))\n- [Loop engineering guide](docs/loop-engineering.md)\n- [Landing page](docs/index.html)\n- [Discussion seed posts](discussion-seeds/)\n\n## Safety Model\n\nCodex may normally proceed with local reads, local edits, tests, local dashboards, and drafts.\n\nCodex must ask before:\n\n- sending messages, comments, or emails\n- pushing, merging, deploying, publishing, or releasing\n- deleting data or running destructive operations\n- changing production configuration\n- spending money\n- taking authenticated third-party actions on your behalf\n\n## Repository Status\n\nThis is an early system. Version 0.2.0 adds loop engineering primitives: explicit loop specs, budgets, verifiers, stop conditions, run logs, and stall detection.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscottconverse%2Fcodex-dev-loop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscottconverse%2Fcodex-dev-loop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscottconverse%2Fcodex-dev-loop/lists"}