Commit 4e7c0f1
Add agentic workflow layer with composable phases (#4159)
## Summary
- Adds the `agentic/` layer with composable workflow phases: plan,
build, test, review, document, and ship
- Each phase is a standalone script (`uv run
agentic/workflows/<phase>.py`) that can run independently or be piped
together
- Orchestrators chain phases into pipelines (`plan_build.py`,
`plan_build_test.py`, ..., `plan_build_test_review_document_ship.py`)
- Shared modules (`agent.py`, `state.py`, `template.py`,
`orchestrator.py`) handle execution, state persistence, and template
rendering
- Supports multiple CLI backends (claude, copilot, gemini) with
abstracted model tiers (small/medium/large)
## Test plan
- [x] All 1012 existing tests pass (`uv run python -m pytest tests/ -x`)
- [x] New files compile cleanly (`py_compile`)
- [x] No stale references to removed files
- [ ] Manual: run `uv run agentic/workflows/ship.py --run-id <id>` to
verify commit + PR flow
- [ ] Manual: run `uv run
agentic/workflows/plan_build_test_review_document_ship.py "<prompt>"`
end-to-end
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>1 parent d3c24c5 commit 4e7c0f1
File tree
62 files changed
+6121
-1251
lines changed- .claude
- commands
- .github/workflows
- .serena
- agentic
- commands
- context
- docs
- specs
- workflows
- modules
- core
- docs
- workflows
- tests/unit/agentic
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
62 files changed
+6121
-1251
lines changedThis file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
16 | 20 | | |
17 | 21 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
115 | | - | |
| 115 | + | |
116 | 116 | | |
117 | 117 | | |
118 | 118 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
227 | 227 | | |
228 | 228 | | |
229 | 229 | | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
230 | 233 | | |
231 | 234 | | |
232 | 235 | | |
| |||
0 commit comments