Skip to content

Latest commit

History

62 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

agents

An executable AI development workflow focused on reliable engineering rather than conversational memory.

AGENTS.md defines policy. skills/dev-workflow/scripts/workflow.ps1 enforces phase transitions and stores committable state in .progress/workflow.json, allowing a workflow to resume on another machine. Before integration, dev-workflow-clean-branch removes that state from every feature-branch commit.

In the diagrams below, 👤 marks a transition the user's own words drive. Every other edge is the agent's to take.

Detailed

For multi-increment, architectural, or public-interface work. INTAKE, DESIGN, and SPLIT only read and ask; they accumulate what the user wants as requests and what the user must decide as questions, and change nothing. Three commands drive the flow — intake closes the request list, implement releases the plan into code, integrate lands the reviewed branch — and between them the user still verifies each increment.

flowchart TD
INTAKE -->|👤 adds a request| INTAKE
INTAKE -->|👤 says the list is complete| DESIGN --> SPLIT
SPLIT -->|👤 says implement| BRANCH --> BUILD --> VERIFY
VERIFY -->|👤 verifies the increment| COMMIT
VERIFY -->|issues| BUILD
COMMIT -->|more increments| BUILD
COMMIT -->|plan complete| SUMMARY
SUMMARY -->|👤 says integrate| INTEGRATE
Loading

The controller refuses the implement approval while any question is still open, so nothing is built on an unanswered assumption.

Detailed Auto

Runs the same phases, reviews, tests, commits, and integration preparation as Detailed, and keeps the same three commands. What it automates is the middle: the agent verifies and commits each increment itself, so the user closes intake, approves the plan, and is not asked again until the final review.

flowchart TD
INTAKE -->|👤 adds a request| INTAKE
INTAKE -->|👤 says the list is complete| DESIGN --> SPLIT
SPLIT -->|👤 says implement| BRANCH --> BUILD --> VERIFY
VERIFY -->|agent verifies| COMMIT
VERIFY -->|issues| BUILD
COMMIT -->|more increments| BUILD
COMMIT -->|plan complete| SUMMARY --> FINAL_REVIEW
FINAL_REVIEW -->|👤 says integrate| INTEGRATE
Loading

Quick

For one small, self-contained change with a handful of clear design choices. It uses one build/verify/commit pass on the current branch, behind the same implement command.

flowchart TD
INTAKE --> DESIGN
DESIGN -->|👤 says implement| BUILD --> VERIFY
VERIFY -->|👤 verifies the change| COMMIT
VERIFY -->|issues| BUILD
Loading

Integration

INTEGRATE always rebases, so the default branch never gains a merge commit. 👤 The user then chooses how the branch lands, and the skill asks every time:

ModeResult
Commitsevery commit is kept and the base fast-forwards
Squashthe branch becomes one commit and the base fast-forwards
Requestthe branch becomes one commit, is pushed, and a pull request is opened

Future Detailed increments can be inserted or reordered without changing active or completed increment identity. The controller validates approvals, branches, commits, and legal transitions before saving state atomically. Every controller change prints user-presentable Markdown tables for the workflow phases and increment statuses.

Repository layout

  • AGENTS.md — concise policy and entry point
  • agents/ — phase role definitions
  • code-review/ — ignored local review JSON and generated Markdown
  • skills/dev-workflow/ — executable workflow state machine
  • skills/install-powershell/ — PowerShell 7 bootstrap instructions
  • skills/agents-install/ — global installation for local AI tools
  • skills/git-commit/ — the commit message format and its checker. Commits are attributed to the person who records them; the checker rejects AI co-author and generator trailers
  • skills/agents-modify/ — changing this repository's own instructions from a host project
  • skills/ — review, design, ADR, debug, summary, progress cleanup, commit, integration, and retrospective actions

About

AI workflow allowing to develop and understand, not just vibe-code

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages