oh-my-customcode 0.74.0 → 0.76.0

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.
package/dist/cli/index.js CHANGED
@@ -9325,7 +9325,7 @@ var init_package = __esm(() => {
9325
9325
  workspaces: [
9326
9326
  "packages/*"
9327
9327
  ],
9328
- version: "0.74.0",
9328
+ version: "0.76.0",
9329
9329
  description: "Batteries-included agent harness for Claude Code",
9330
9330
  type: "module",
9331
9331
  bin: {
package/dist/index.js CHANGED
@@ -1820,7 +1820,7 @@ var package_default = {
1820
1820
  workspaces: [
1821
1821
  "packages/*"
1822
1822
  ],
1823
- version: "0.74.0",
1823
+ version: "0.76.0",
1824
1824
  description: "Batteries-included agent harness for Claude Code",
1825
1825
  type: "module",
1826
1826
  bin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.74.0",
6
+ "version": "0.76.0",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -61,11 +61,23 @@ Before writing/editing multiple files:
61
61
 
62
62
  | Rule | Detail |
63
63
  |------|--------|
64
- | Max instances | 4 concurrent |
64
+ | Max instances | 5 concurrent (soft default: 4) |
65
65
  | Not parallelizable | Orchestrator (must stay singleton) |
66
66
  | Instance independence | Isolated context, no shared state |
67
67
  | Large tasks (>3 min) | MUST split into parallel sub-tasks |
68
68
 
69
+ ## Stability Testing Protocol
70
+
71
+ When testing 5 concurrent agents (above the soft default of 4):
72
+
73
+ | Observation | Threshold | Action |
74
+ |-------------|-----------|--------|
75
+ | Response latency | > 2x normal | Reduce to 4 |
76
+ | Agent failure rate | > 10% | Reduce to 4 |
77
+ | Context errors | Any | Reduce to 4 |
78
+
79
+ 5-agent concurrency is supported but should be monitored during initial adoption. Fall back to 4 if instability is observed.
80
+
69
81
  ## Agent Tool Requirements
70
82
 
71
83
  - Use specific `subagent_type` (not "general-purpose" when specialist exists)
@@ -18,7 +18,7 @@ Defines mandatory safety constraints for all pipeline, workflow, and iterative e
18
18
  |-------|---------|----------|------------|
19
19
  | Max iterations | 3 | 5 | worker-reviewer-pipeline |
20
20
  | Max DAG nodes | 20 | 30 | dag-orchestration |
21
- | Max parallel agents | 4 | 4 | R009 (all pipelines) |
21
+ | Max parallel agents | 4 | 5 | R009 (all pipelines) |
22
22
  | Timeout per node | 300s | 600s | dag-orchestration nodes |
23
23
  | Timeout per pipeline | 900s | 1800s | worker-reviewer-pipeline |
24
24
  | Max retry count | 2 | 3 | Failure retry strategies |
@@ -148,7 +148,7 @@ Guard warnings appear inline:
148
148
 
149
149
  | Rule/Skill | Integration |
150
150
  |------------|-------------|
151
- | R009 | Max parallel agents enforced (hard cap: 4) |
151
+ | R009 | Max parallel agents enforced (hard cap: 5, soft default: 4) |
152
152
  | R010 | Guards run in orchestrator only |
153
153
  | R015 | Guard warnings displayed transparently |
154
154
  | dag-orchestration | Node count and timeout limits |
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.74.0",
2
+ "version": "0.76.0",
3
3
  "lastUpdated": "2026-03-24T00:00:00.000Z",
4
4
  "components": [
5
5
  {
@@ -7,16 +7,18 @@ mode: auto
7
7
  error: halt-and-report
8
8
 
9
9
  steps:
10
- - name: pre-triage
11
- skill: professor-triage
12
- description: Run professor-triage on open issues that lack verify-done label
13
- condition: "open issues without label:verify-done exist"
14
-
15
- - name: triage
16
- skill: professor-triage
17
- description: Analyze verify-done issues against current codebase and perform automated triage
10
+ - name: issue-analysis
11
+ parallel:
12
+ - name: pre-triage
13
+ skill: professor-triage
14
+ description: Run professor-triage on open issues that lack verify-done label
15
+ condition: "open issues without label:verify-done exist"
16
+ - name: triage
17
+ skill: professor-triage
18
+ description: Analyze verify-done issues against current codebase and perform automated triage
18
19
 
19
20
  - name: plan
21
+ depends_on: issue-analysis
20
22
  skill: release-plan
21
23
  description: Group triaged issues into release units by priority and size
22
24
  input: triage-results