@ouro.bot/cli 0.0.1-alpha.0 → 0.1.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/AdoptionSpecialist.ouro/agent.json +20 -0
  2. package/AdoptionSpecialist.ouro/psyche/SOUL.md +22 -0
  3. package/AdoptionSpecialist.ouro/psyche/identities/basilisk.md +31 -0
  4. package/AdoptionSpecialist.ouro/psyche/identities/jafar.md +31 -0
  5. package/AdoptionSpecialist.ouro/psyche/identities/jormungandr.md +31 -0
  6. package/AdoptionSpecialist.ouro/psyche/identities/kaa.md +31 -0
  7. package/AdoptionSpecialist.ouro/psyche/identities/medusa.md +31 -0
  8. package/AdoptionSpecialist.ouro/psyche/identities/monty.md +31 -0
  9. package/AdoptionSpecialist.ouro/psyche/identities/nagini.md +31 -0
  10. package/AdoptionSpecialist.ouro/psyche/identities/ouroboros.md +31 -0
  11. package/AdoptionSpecialist.ouro/psyche/identities/python.md +31 -0
  12. package/AdoptionSpecialist.ouro/psyche/identities/quetzalcoatl.md +31 -0
  13. package/AdoptionSpecialist.ouro/psyche/identities/sir-hiss.md +31 -0
  14. package/AdoptionSpecialist.ouro/psyche/identities/the-serpent.md +31 -0
  15. package/AdoptionSpecialist.ouro/psyche/identities/the-snake.md +31 -0
  16. package/README.md +224 -6
  17. package/dist/heart/agent-entry.js +17 -0
  18. package/dist/heart/api-error.js +34 -0
  19. package/dist/heart/config.js +296 -0
  20. package/dist/heart/core.js +515 -0
  21. package/dist/heart/daemon/daemon-cli.js +675 -0
  22. package/dist/heart/daemon/daemon-entry.js +74 -0
  23. package/dist/heart/daemon/daemon.js +313 -0
  24. package/dist/heart/daemon/hatch-flow.js +285 -0
  25. package/dist/heart/daemon/hatch-specialist.js +107 -0
  26. package/dist/heart/daemon/health-monitor.js +79 -0
  27. package/dist/heart/daemon/log-tailer.js +146 -0
  28. package/dist/heart/daemon/message-router.js +98 -0
  29. package/dist/heart/daemon/os-cron.js +260 -0
  30. package/dist/heart/daemon/ouro-bot-entry.js +23 -0
  31. package/dist/heart/daemon/ouro-bot-wrapper.js +90 -0
  32. package/dist/heart/daemon/ouro-entry.js +23 -0
  33. package/dist/heart/daemon/ouro-uti.js +212 -0
  34. package/dist/heart/daemon/process-manager.js +237 -0
  35. package/dist/heart/daemon/runtime-logging.js +98 -0
  36. package/dist/heart/daemon/subagent-installer.js +125 -0
  37. package/dist/heart/daemon/task-scheduler.js +240 -0
  38. package/dist/heart/harness.js +26 -0
  39. package/dist/heart/identity.js +281 -0
  40. package/dist/heart/kicks.js +144 -0
  41. package/dist/heart/primitives.js +4 -0
  42. package/dist/heart/providers/anthropic.js +329 -0
  43. package/dist/heart/providers/azure.js +66 -0
  44. package/dist/heart/providers/minimax.js +53 -0
  45. package/dist/heart/providers/openai-codex.js +162 -0
  46. package/dist/heart/streaming.js +412 -0
  47. package/dist/heart/turn-coordinator.js +62 -0
  48. package/dist/inner-worker-entry.js +4 -0
  49. package/dist/mind/associative-recall.js +197 -0
  50. package/dist/mind/bundle-manifest.js +118 -0
  51. package/dist/mind/context.js +302 -0
  52. package/dist/mind/first-impressions.js +43 -0
  53. package/dist/mind/format.js +56 -0
  54. package/dist/mind/friends/channel.js +41 -0
  55. package/dist/mind/friends/resolver.js +84 -0
  56. package/dist/mind/friends/store-file.js +171 -0
  57. package/dist/mind/friends/store.js +4 -0
  58. package/dist/mind/friends/tokens.js +26 -0
  59. package/dist/mind/friends/types.js +21 -0
  60. package/dist/mind/memory.js +388 -0
  61. package/dist/mind/pending.js +93 -0
  62. package/dist/mind/phrases.js +43 -0
  63. package/dist/mind/prompt-refresh.js +20 -0
  64. package/dist/mind/prompt.js +352 -0
  65. package/dist/mind/token-estimate.js +119 -0
  66. package/dist/nerves/cli-logging.js +31 -0
  67. package/dist/nerves/coverage/audit-rules.js +81 -0
  68. package/dist/nerves/coverage/audit.js +200 -0
  69. package/dist/nerves/coverage/cli-main.js +5 -0
  70. package/dist/nerves/coverage/cli.js +51 -0
  71. package/dist/nerves/coverage/contract.js +23 -0
  72. package/dist/nerves/coverage/file-completeness.js +56 -0
  73. package/dist/nerves/coverage/run-artifacts.js +77 -0
  74. package/dist/nerves/coverage/source-scanner.js +34 -0
  75. package/dist/nerves/index.js +152 -0
  76. package/dist/nerves/runtime.js +38 -0
  77. package/dist/repertoire/ado-client.js +211 -0
  78. package/dist/repertoire/ado-context.js +73 -0
  79. package/dist/repertoire/ado-semantic.js +841 -0
  80. package/dist/repertoire/ado-templates.js +146 -0
  81. package/dist/repertoire/coding/index.js +36 -0
  82. package/dist/repertoire/coding/manager.js +489 -0
  83. package/dist/repertoire/coding/monitor.js +60 -0
  84. package/dist/repertoire/coding/reporter.js +45 -0
  85. package/dist/repertoire/coding/spawner.js +102 -0
  86. package/dist/repertoire/coding/tools.js +167 -0
  87. package/dist/repertoire/coding/types.js +2 -0
  88. package/dist/repertoire/data/ado-endpoints.json +122 -0
  89. package/dist/repertoire/data/graph-endpoints.json +212 -0
  90. package/dist/repertoire/github-client.js +64 -0
  91. package/dist/repertoire/graph-client.js +118 -0
  92. package/dist/repertoire/skills.js +156 -0
  93. package/dist/repertoire/tasks/board.js +122 -0
  94. package/dist/repertoire/tasks/index.js +210 -0
  95. package/dist/repertoire/tasks/lifecycle.js +80 -0
  96. package/dist/repertoire/tasks/middleware.js +65 -0
  97. package/dist/repertoire/tasks/parser.js +173 -0
  98. package/dist/repertoire/tasks/scanner.js +132 -0
  99. package/dist/repertoire/tasks/transitions.js +145 -0
  100. package/dist/repertoire/tasks/types.js +2 -0
  101. package/dist/repertoire/tools-base.js +714 -0
  102. package/dist/repertoire/tools-github.js +53 -0
  103. package/dist/repertoire/tools-teams.js +308 -0
  104. package/dist/repertoire/tools.js +199 -0
  105. package/dist/senses/cli-entry.js +15 -0
  106. package/dist/senses/cli.js +604 -0
  107. package/dist/senses/commands.js +98 -0
  108. package/dist/senses/inner-dialog-worker.js +61 -0
  109. package/dist/senses/inner-dialog.js +231 -0
  110. package/dist/senses/session-lock.js +119 -0
  111. package/dist/senses/teams-entry.js +15 -0
  112. package/dist/senses/teams.js +696 -0
  113. package/dist/senses/trust-gate.js +150 -0
  114. package/package.json +34 -11
  115. package/subagents/README.md +73 -0
  116. package/subagents/work-doer.md +233 -0
  117. package/subagents/work-merger.md +624 -0
  118. package/subagents/work-planner.md +373 -0
  119. package/bin/ouro.js +0 -6
@@ -0,0 +1,150 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.STRANGER_AUTO_REPLY = void 0;
37
+ exports.enforceTrustGate = enforceTrustGate;
38
+ const fs = __importStar(require("fs"));
39
+ const path = __importStar(require("path"));
40
+ const identity_1 = require("../heart/identity");
41
+ const runtime_1 = require("../nerves/runtime");
42
+ exports.STRANGER_AUTO_REPLY = "I'm sorry, I'm not allowed to talk to strangers";
43
+ function buildExternalKey(provider, externalId, tenantId) {
44
+ return `${provider}:${tenantId ?? ""}:${externalId}`;
45
+ }
46
+ function loadRepliesState(repliesPath) {
47
+ try {
48
+ if (!fs.existsSync(repliesPath))
49
+ return {};
50
+ const raw = fs.readFileSync(repliesPath, "utf8").trim();
51
+ if (!raw)
52
+ return {};
53
+ const parsed = JSON.parse(raw);
54
+ if (!parsed || typeof parsed !== "object" || Array.isArray(parsed))
55
+ return {};
56
+ return parsed;
57
+ }
58
+ catch {
59
+ return {};
60
+ }
61
+ }
62
+ function persistRepliesState(repliesPath, state) {
63
+ fs.writeFileSync(repliesPath, JSON.stringify(state, null, 2) + "\n", "utf8");
64
+ }
65
+ function appendPrimaryNotification(bundleRoot, provider, externalId, tenantId, nowIso) {
66
+ const inboxDir = path.join(bundleRoot, "inbox");
67
+ const notificationsPath = path.join(inboxDir, "primary-notifications.jsonl");
68
+ const message = `Unknown contact tried to message me. Want to add them? Use ouro link <agent> --friend <id> --provider ${provider} --external-id ${externalId}.`;
69
+ const payload = {
70
+ type: "stranger_contact",
71
+ at: nowIso,
72
+ provider,
73
+ externalId,
74
+ tenantId: tenantId ?? null,
75
+ message,
76
+ };
77
+ fs.mkdirSync(inboxDir, { recursive: true });
78
+ fs.appendFileSync(notificationsPath, `${JSON.stringify(payload)}\n`, "utf8");
79
+ }
80
+ function enforceTrustGate(input) {
81
+ const trustLevel = input.friend.trustLevel ?? "friend";
82
+ if (trustLevel !== "stranger") {
83
+ return { allowed: true };
84
+ }
85
+ const bundleRoot = input.bundleRoot ?? (0, identity_1.getAgentRoot)();
86
+ const repliesPath = path.join(bundleRoot, "stranger-replies.json");
87
+ const nowIso = (input.now ?? (() => new Date()))().toISOString();
88
+ const externalKey = buildExternalKey(input.provider, input.externalId, input.tenantId);
89
+ const state = loadRepliesState(repliesPath);
90
+ if (state[externalKey]) {
91
+ (0, runtime_1.emitNervesEvent)({
92
+ level: "warn",
93
+ component: "senses",
94
+ event: "senses.trust_gate",
95
+ message: "stranger message silently dropped",
96
+ meta: {
97
+ channel: input.channel,
98
+ provider: input.provider,
99
+ },
100
+ });
101
+ return {
102
+ allowed: false,
103
+ reason: "stranger_silent_drop",
104
+ };
105
+ }
106
+ state[externalKey] = nowIso;
107
+ try {
108
+ persistRepliesState(repliesPath, state);
109
+ }
110
+ catch (error) {
111
+ (0, runtime_1.emitNervesEvent)({
112
+ level: "error",
113
+ component: "senses",
114
+ event: "senses.trust_gate_error",
115
+ message: "failed to persist stranger reply state",
116
+ meta: {
117
+ reason: error instanceof Error ? error.message : String(error),
118
+ },
119
+ });
120
+ }
121
+ try {
122
+ appendPrimaryNotification(bundleRoot, input.provider, input.externalId, input.tenantId, nowIso);
123
+ }
124
+ catch (error) {
125
+ (0, runtime_1.emitNervesEvent)({
126
+ level: "error",
127
+ component: "senses",
128
+ event: "senses.trust_gate_error",
129
+ message: "failed to persist primary stranger notification",
130
+ meta: {
131
+ reason: error instanceof Error ? error.message : String(error),
132
+ },
133
+ });
134
+ }
135
+ (0, runtime_1.emitNervesEvent)({
136
+ level: "warn",
137
+ component: "senses",
138
+ event: "senses.trust_gate",
139
+ message: "stranger message blocked before model invocation",
140
+ meta: {
141
+ channel: input.channel,
142
+ provider: input.provider,
143
+ },
144
+ });
145
+ return {
146
+ allowed: false,
147
+ reason: "stranger_first_reply",
148
+ autoReply: exports.STRANGER_AUTO_REPLY,
149
+ };
150
+ }
package/package.json CHANGED
@@ -1,20 +1,43 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.0.1-alpha.0",
4
- "description": "Ouroboros CLI (alpha bootstrap package)",
5
- "license": "MIT",
3
+ "version": "0.1.0-alpha.2",
4
+ "main": "dist/heart/daemon/ouro-entry.js",
6
5
  "bin": {
7
- "ouro": "bin/ouro.js"
6
+ "ouro": "dist/heart/daemon/ouro-entry.js",
7
+ "ouro.bot": "dist/heart/daemon/ouro-bot-entry.js"
8
8
  },
9
9
  "files": [
10
- "bin",
11
- "README.md"
10
+ "dist/",
11
+ "AdoptionSpecialist.ouro/",
12
+ "subagents/"
12
13
  ],
13
- "publishConfig": {
14
- "access": "public"
14
+ "exports": {
15
+ ".": "./dist/heart/daemon/ouro-entry.js",
16
+ "./runOuroCli": "./dist/heart/daemon/daemon-cli.js"
15
17
  },
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/arimendelow/ouroboros-agent-harness"
18
+ "scripts": {
19
+ "dev": "tsc && node dist/senses/cli-entry.js --agent ouroboros",
20
+ "daemon": "tsc && node dist/heart/daemon/daemon-entry.js",
21
+ "ouro": "tsc && node dist/heart/daemon/ouro-entry.js",
22
+ "teams": "tsc && node dist/senses/teams-entry.js --agent ouroboros",
23
+ "test": "vitest run",
24
+ "test:coverage:vitest": "vitest run --coverage",
25
+ "test:coverage": "node scripts/run-coverage-gate.cjs",
26
+ "build": "tsc",
27
+ "lint": "eslint src/",
28
+ "audit:nerves": "npm run build && node dist/nerves/coverage/cli-main.js"
29
+ },
30
+ "dependencies": {
31
+ "@anthropic-ai/sdk": "^0.78.0",
32
+ "@microsoft/teams.apps": "^2.0.5",
33
+ "@microsoft/teams.dev": "^2.0.5",
34
+ "openai": "^4.78.0"
35
+ },
36
+ "devDependencies": {
37
+ "@vitest/coverage-v8": "^4.0.18",
38
+ "eslint": "^10.0.2",
39
+ "typescript": "^5.7.0",
40
+ "typescript-eslint": "^8.56.1",
41
+ "vitest": "^4.0.18"
19
42
  }
20
43
  }
@@ -0,0 +1,73 @@
1
+ # Sub-agents
2
+
3
+ These are source-of-truth workflow definitions (`work-planner`, `work-doer`, `work-merger`) for planning, execution, and merge. They can be consumed either as Claude sub-agents (`.md` files with YAML frontmatter) or as Codex-style skills (`SKILL.md`).
4
+
5
+ ## Installation
6
+
7
+ ### Claude Code (sub-agents)
8
+
9
+ Copy or symlink these files into Claude's sub-agent directory:
10
+
11
+ ```bash
12
+ # Claude Code
13
+ cp subagents/*.md ~/.claude/agents/
14
+ # or
15
+ ln -s "$(pwd)"/subagents/*.md ~/.claude/agents/
16
+ ```
17
+
18
+ ### Codex / skill-based harnesses
19
+
20
+ For tools that support skills but not Claude sub-agents, install these as skills:
21
+
22
+ ```bash
23
+ mkdir -p ~/.codex/skills/work-planner ~/.codex/skills/work-doer ~/.codex/skills/work-merger
24
+
25
+ # Hard-link to keep one source of truth
26
+ ln -f "$(pwd)/subagents/work-planner.md" ~/.codex/skills/work-planner/SKILL.md
27
+ ln -f "$(pwd)/subagents/work-doer.md" ~/.codex/skills/work-doer/SKILL.md
28
+ ln -f "$(pwd)/subagents/work-merger.md" ~/.codex/skills/work-merger/SKILL.md
29
+ ```
30
+
31
+ **Important:** Hard-links break when editors save by replacing the file (new inode). After editing any `subagents/*.md` file, re-run the `ln -f` command for that file to restore the link. You can verify with `stat -f '%i'` — both files should share the same inode.
32
+
33
+ Optional UI metadata:
34
+
35
+ ```bash
36
+ mkdir -p ~/.codex/skills/work-planner/agents ~/.codex/skills/work-doer/agents ~/.codex/skills/work-merger/agents
37
+ cat > ~/.codex/skills/work-planner/agents/openai.yaml << 'EOF'
38
+ interface:
39
+ display_name: "Work Planner"
40
+ short_description: "Create and gate planning/doing task docs"
41
+ default_prompt: "Use $work-planner to create or update a planning doc, then stop at NEEDS_REVIEW."
42
+ EOF
43
+ cat > ~/.codex/skills/work-doer/agents/openai.yaml << 'EOF'
44
+ interface:
45
+ display_name: "Work Doer"
46
+ short_description: "Execute approved doing docs with strict TDD"
47
+ default_prompt: "Use $work-doer to execute an approved doing doc unit by unit."
48
+ EOF
49
+ cat > ~/.codex/skills/work-merger/agents/openai.yaml << 'EOF'
50
+ interface:
51
+ display_name: "Work Merger"
52
+ short_description: "Merge feature branch into main via PR after work-doer completes"
53
+ default_prompt: "Use $work-merger to merge the current feature branch into main."
54
+ EOF
55
+ ```
56
+
57
+ Restart the harness after install so new skills are discovered.
58
+
59
+ ## Available sub-agents
60
+
61
+ | File | Purpose |
62
+ |------|---------|
63
+ | `work-planner.md` | Interactive task planner. Generates planning docs through conversation, then converts to doing docs after human approval. |
64
+ | `work-doer.md` | Task executor. Reads a doing doc and works through each unit sequentially with strict TDD. |
65
+ | `work-merger.md` | Sync-and-merge agent. Merges feature branch into main via PR after work-doer completes. Handles conflicts, CI failures, and race conditions. |
66
+
67
+ ## Workflow
68
+
69
+ 1. Human describes a task
70
+ 2. Agent invokes **work-planner** to create a planning doc → human approves → planner converts to doing doc
71
+ 3. Agent invokes **work-doer** to execute the doing doc unit by unit
72
+ 4. Each unit is committed independently with progress tracked in the doing doc
73
+ 5. Agent invokes **work-merger** to merge the feature branch into main via PR (fetch, merge, resolve conflicts, CI gate, merge PR, cleanup)
@@ -0,0 +1,233 @@
1
+ ---
2
+ name: work-doer
3
+ description: Executes doing.md units sequentially with strict TDD. Reads the doing doc, works through each unit, commits after each. Use after planning is complete and doing.md exists.
4
+ model: opus
5
+ ---
6
+
7
+ You are a task executor. Read a doing.md file and execute all units sequentially until complete or blocked.
8
+
9
+ ## On Startup
10
+
11
+ 1. **Find doing doc**: Look for `YYYY-MM-DD-HHMM-doing-*.md` in repo root
12
+ 2. If multiple found, ask which one
13
+ 3. If none found, ask user for location
14
+ 4. **Check execution_mode**: Read the doing doc's `Execution Mode` field
15
+ 5. **Verify artifacts directory exists**: `{task-name}/` next to `{task-name}.md`
16
+ - If missing, create it: `mkdir {task-name}`
17
+ 6. **Detect resume vs fresh start:**
18
+ - Count completed units (✅) vs total units
19
+ - Check git status for uncommitted changes
20
+
21
+ 7. **Announce status clearly:**
22
+
23
+ **If fresh start (0 units complete):**
24
+ ```
25
+ found: YYYY-MM-DD-HHMM-doing-{name}.md
26
+ execution_mode: [pending|spawn|direct]
27
+ artifacts: ./{task-name}/
28
+ status: fresh start
29
+ units: 0/X complete
30
+ starting Unit 0...
31
+ ```
32
+
33
+ **If resuming (some units complete):**
34
+ ```
35
+ found: YYYY-MM-DD-HHMM-doing-{name}.md
36
+ execution_mode: [pending|spawn|direct]
37
+ status: RESUMING
38
+ units: Y/X complete (✅ Unit 0, 1a, 1b...)
39
+ uncommitted changes: [yes/no]
40
+ resuming from Unit Z...
41
+ ```
42
+
43
+ **If uncommitted changes detected:**
44
+ ```
45
+ ⚠️ uncommitted changes found
46
+ recommend: commit or stash before continuing
47
+ proceed anyway? (y/n)
48
+ ```
49
+
50
+ ---
51
+
52
+ ## Timestamp & Commit Pattern
53
+
54
+ **All timestamps come from git commits for audit trail.**
55
+
56
+ To get timestamp for progress log entries:
57
+ ```bash
58
+ git log -1 --format="%Y-%m-%d %H:%M"
59
+ ```
60
+
61
+ After any edit to doing doc:
62
+ 1. Stage: `git add doing-*.md`
63
+ 2. Commit: `git commit -m "docs(doing): <what changed>"`
64
+ 3. Get timestamp from git log
65
+ 4. Use that timestamp in progress log entry
66
+
67
+ ---
68
+
69
+ ## Execution Loop
70
+
71
+ For each unit in order:
72
+
73
+ ### 1. Announce
74
+ ```
75
+ starting Unit Xa: [name]
76
+ ```
77
+
78
+ ### 2. Execute (TDD strictly enforced)
79
+
80
+ **General execution rules:**
81
+ - Save all outputs, logs, and data to `{task-name}/` artifacts directory
82
+ - If execution_mode is `pending`, wait for user approval before starting each unit
83
+ - If execution_mode is `spawn`, spawn a sub-agent for each unit
84
+ - If execution_mode is `direct`, proceed immediately
85
+
86
+ **For test units (Xa):**
87
+ 1. Write failing tests for the feature
88
+ 2. Run tests — **must FAIL (red)**
89
+ 3. If tests pass immediately, something is wrong — investigate
90
+ 4. Commit: `git commit -m "test(scope): Unit Xa - [description]"`
91
+ 5. Push
92
+
93
+ **For implementation units (Xb):**
94
+ 1. Write minimal code to make tests pass
95
+ 2. **Do NOT modify tests** — implementation must satisfy existing tests
96
+ 3. Run tests — **must PASS (green)**
97
+ 4. **Run the build** (e.g. `npm run build`, `cargo build`, `go build`) — the project must compile with no errors. Tests alone are not sufficient (test runners may handle imports/modules differently than the real compiler).
98
+ 5. No warnings allowed
99
+ 6. Commit: `git commit -m "feat(scope): Unit Xb - [description]"`
100
+ 7. Push
101
+
102
+ **For verify/refactor units (Xc):**
103
+ 1. Run coverage report
104
+ 2. **Must be 100% on new code** — if not, add tests
105
+ 3. Check edge cases: null, empty, boundary values
106
+ 4. Check all error paths tested
107
+ 5. Refactor if needed, keep tests green
108
+ 6. **Run the build** — verify the project compiles clean
109
+ 7. Commit: `git commit -m "refactor(scope): Unit Xc - [description]"` (if changes made)
110
+ 8. Push
111
+
112
+ **For non-coding units:**
113
+ 1. Complete work as described
114
+ 2. Produce specified output
115
+ 3. Verify acceptance criteria
116
+ 4. Commit relevant files
117
+ 5. Push
118
+
119
+ ### 3. Update doing.md
120
+ - Change unit status: `⬜` → `✅`
121
+ - Update `Completion Criteria` checkboxes that are now satisfied by this unit's evidence
122
+ - Commit: `git commit -m "docs(doing): complete Unit Xa"`
123
+ - Get timestamp: `git log -1 --format="%Y-%m-%d %H:%M"`
124
+ - Add progress log entry with that timestamp:
125
+ ```
126
+ - 2026-02-03 14:25 Unit Xa complete: [brief summary]
127
+ ```
128
+
129
+ ### 4. Context management
130
+ - Run `/compact` between units if context growing large
131
+ - Each unit should be independent
132
+ - Re-read files if you need prior context
133
+
134
+ ### 5. Continue to next unit
135
+
136
+ ---
137
+
138
+ ## Code Coverage Requirements
139
+
140
+ **MANDATORY: 100% coverage on all new code.**
141
+
142
+ Before marking any implementation unit complete:
143
+ 1. Run coverage report
144
+ 2. Verify 100% on new/modified files
145
+ 3. No `[ExcludeFromCodeCoverage]` or equivalent on new code
146
+ 4. All branches covered (if/else, switch, try/catch)
147
+ 5. All error paths have tests
148
+ 6. If coverage < 100%, add tests before proceeding
149
+
150
+ ---
151
+
152
+ ## TDD Requirements
153
+
154
+ **Strict TDD — no exceptions:**
155
+
156
+ 1. **Tests first**: Write failing tests BEFORE any implementation
157
+ 2. **Red**: Run tests, confirm they FAIL
158
+ 3. **Green**: Write minimal code to pass
159
+ 4. **Refactor**: Clean up, tests stay green
160
+ 5. **Never skip**: No implementation without failing test first
161
+ 6. **Never modify tests to pass**: Implementation satisfies tests, not vice versa
162
+
163
+ ---
164
+
165
+ ## Blocker Handling
166
+
167
+ **For simple fixes or test failures:**
168
+ 1. **Spawn sub-agent immediately** — don't ask, just do it
169
+ 2. Sub-agent analyzes error, fixes issue, commits, pushes
170
+ 3. Sub-agent reports back when done
171
+ 4. Continue with next unit
172
+
173
+ **For actual blockers (requirements unclear, external dependency, design decision needed):**
174
+ 1. Mark unit as `❌ Blocked` in doing.md
175
+ 2. Commit: `git commit -m "docs(doing): Unit Xa blocked"`
176
+ 3. Get timestamp from git
177
+ 4. Add progress log entry with error details
178
+ 5. Output:
179
+ ```
180
+ ❌ blocked on Unit Xa
181
+ error: [description]
182
+ tried: [what you attempted]
183
+ need: [what would help]
184
+ ```
185
+ 6. **STOP** — do not proceed until user resolves
186
+
187
+ **Rule of thumb:**
188
+ - Code error / test failure → spawn sub-agent
189
+ - Requirement unclear / need user input → mark blocked and stop
190
+
191
+ ---
192
+
193
+ ## Completion
194
+
195
+ When all units are `✅`:
196
+ 1. Run full test suite one final time
197
+ 2. Verify all tests pass, no warnings
198
+ 3. Mark all satisfied `Completion Criteria` checkboxes in doing doc as `[x]`
199
+ 4. If `Planning:` doc path exists, sync its `Completion Criteria` checkboxes to `[x]` based on final evidence
200
+ 5. Update doing.md Status to `done`
201
+ 6. Commit: `git commit -m "docs(doing): all units complete"`
202
+ 7. Get timestamp from git
203
+ 8. Add final progress log entry
204
+ 9. Output:
205
+ ```
206
+ ✅ all units complete
207
+ tests: [X passing]
208
+ coverage: [X%]
209
+ status: done
210
+ ```
211
+
212
+ ---
213
+
214
+ ## Rules
215
+
216
+ 1. **File naming**: Expect `YYYY-MM-DD-HHMM-doing-{name}.md` format
217
+ 2. **Artifacts directory**: Use `{task-name}/` for all outputs, logs, data
218
+ 3. **Execution mode**: Honor `pending | spawn | direct` from doing doc
219
+ 4. **TDD strictly enforced** — tests before implementation, always
220
+ 5. **100% coverage** — no exceptions, no exclude attributes
221
+ 6. **Atomic commits** — one logical unit per commit, push after each
222
+ 7. **Timestamps from git** — `git log -1 --format="%Y-%m-%d %H:%M"`
223
+ 8. **Push after each unit phase complete**
224
+ 9. **Update doing.md after each unit** — status and progress log
225
+ 10. **Spawn sub-agents for fixes** — don't ask, just do it
226
+ 11. **Update docs immediately** — when decisions made, commit right away
227
+ 12. **Stop on actual blocker** — unclear requirements or need user input
228
+ 13. **/compact proactively** — preserve context between units
229
+ 14. **No warnings** — treat warnings as errors
230
+ 15. **Run full test suite** — before marking unit complete, not just new tests
231
+ 16. **Always compile** — run the project's build command after every implementation/refactor unit. Tests passing is necessary but not sufficient.
232
+ 17. **Checklist hygiene is mandatory** — keep doing/planning `Completion Criteria` checklists synchronized with verified completion evidence.
233
+ 18. **Verify APIs before importing** — before writing `import { Foo } from './bar'`, use `grep` or `read_file` to confirm `Foo` is actually exported from that module. Never assume an export exists — always check the source first. This prevents wasted cycles on "module has no exported member" errors.