explaingit

terminusakivili/codev

Analysis updated 2026-05-18

10PowerShellAudience · developerComplexity · 3/5Setup · moderate

TLDR

A lightweight governance layer that pauses AI coding assistants at defined checkpoints so a human must approve work before it continues.

Mindmap

mindmap
  root((CO-DEV))
    What it does
      Tracks project intent
      Enforces human approval gates
      Corrects AI drift
    Tech stack
      PowerShell
      Codev.md state file
      CLI
    Use cases
      Prevent AI intent drift
      Add human checkpoints to AI coding
      Plug into Claude, Codex, Cursor
    Audience
      Developers
      AI assisted teams
      Solo builders

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Add human approval checkpoints to an AI-assisted coding workflow to prevent silent drift.

USE CASE 2

Track project intent and current phase in a single lightweight state file.

USE CASE 3

Enforce a rule that no batch of AI work proceeds without explicit human approval.

USE CASE 4

Plug CO-DEV into Claude, Codex, or Cursor as a reusable governance layer.

What is it built with?

PowerShellCLI

How does it compare?

terminusakivili/codevchawyehsu/base16-concfgsourcegraph/pssourcegraph
Stars101010
LanguagePowerShellPowerShellPowerShell
Last pushed2026-06-172026-07-12
MaintenanceMaintainedActive
Setup difficultymoderateeasymoderate
Complexity3/51/52/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · moderate Time to first run · 30min

Requires PowerShell (7+ on macOS/Linux) and integrates with an existing AI coding tool like Claude, Codex, or Cursor.

In plain English

CO-DEV is a lightweight system that keeps a human in control when AI is doing software development work. The idea is that an AI agent can keep producing code that looks reasonable step by step while slowly drifting away from what the person actually wanted, and by the time that drift is noticed it is no longer a small fix but a fundamental shape problem. CO-DEV stops the AI at chosen checkpoints and forces it to wait for a human to review the work before continuing. The author built this after trying to migrate an Android app to Windows with AI assistance and watching the result quietly go off track over the course of a day, even though documentation, architecture notes, and a roadmap were all in place. Their conclusion was that good instructions alone are not enough. What is needed is a review process that is cheap enough to actually use every time, but strict enough to catch drift before it compounds. CO-DEV positions itself as a governance layer rather than a tool that writes code itself. It tracks what the human wants, which piece of work is currently active, and when the AI must pause for approval, while separate tools handle the actual coding, testing, and building. A single state file at the root of a project records the current phase, the active checkpoint, and whether a human has approved, redirected, or rejected the latest batch of work. A set of rule files define behavior such as loading that state before doing anything, enforcing that no approval means no further work, and correcting several kinds of drift. A command line tool, built for PowerShell and working on Windows, macOS, and Linux, checks and updates this state file safely, using careful file handling so that approvals are not lost even if something goes wrong mid write. The project includes its own automated test suite covering these edge cases. CO-DEV ships as plugins for a few different AI coding tools, so it can be added to an existing project as a lightweight workflow rather than a full rewrite. It is aimed at developers who already use AI coding assistants and want a simple, repeatable way to keep those assistants honest to the original intent of a project.

Copy-paste prompts

Prompt 1
Help me install CO-DEV into my existing project and set up the initial .codev.md file.
Prompt 2
Explain how CO-DEV's gate and approval workflow prevents AI intent drift.
Prompt 3
Walk me through using scripts/codev.ps1 to check status and approve a gate.
Prompt 4
Show me how to configure CO-DEV's Ceremony and Execution engine settings for my project.

Frequently asked questions

What is codev?

A lightweight governance layer that pauses AI coding assistants at defined checkpoints so a human must approve work before it continues.

What language is codev written in?

Mainly PowerShell. The stack also includes PowerShell, CLI.

How hard is codev to set up?

Setup difficulty is rated moderate, with roughly 30min to a first successful run.

Who is codev for?

Mainly developer.

Open on GitHub → Explain another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.