oh-my-customcode 0.75.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
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -61,11 +61,23 @@ Before writing/editing multiple files:
|
|
|
61
61
|
|
|
62
62
|
| Rule | Detail |
|
|
63
63
|
|------|--------|
|
|
64
|
-
| Max instances |
|
|
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 |
|
|
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 |
|
package/templates/manifest.json
CHANGED