oh-my-customcode 0.159.0 → 0.160.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
|
@@ -23,6 +23,7 @@ Available when `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` or TeamCreate/SendMessag
|
|
|
23
23
|
| Dynamic agent creation + usage | **Agent Teams** | Create → test → iterate cycle |
|
|
24
24
|
| Multi-issue release batch | **Agent Teams** | Shared task tracking, coordinated release |
|
|
25
25
|
| Large plan / multi-domain prompt (>5000 tokens, 3+ areas) | **Agent Teams** | Domain-split parallel writing + review loop avoids single-agent timeout |
|
|
26
|
+
| Mechanical disjoint-file refactoring (bulk delete + reference cleanup) | Agent Tool | Pure parallel edits with no peer coordination or review loop; Teams member-stall risk outweighs benefit — use standalone parallel Agents (R009) |
|
|
26
27
|
|
|
27
28
|
**When Agent Teams is enabled and criteria are met, usage is required.**
|
|
28
29
|
|
|
@@ -313,3 +314,27 @@ Agent Teams 멤버는 long-running 작업 중 진행 상태를 TaskUpdate 로
|
|
|
313
314
|
- 차단 사유를 SendMessage 로만 보내고 task description 업데이트 누락 → TaskList 만 보는 멤버는 사유를 모름
|
|
314
315
|
|
|
315
316
|
Reference issue: #1087.
|
|
317
|
+
|
|
318
|
+
## Member Completion Verification (deterministic ground-truth)
|
|
319
|
+
|
|
320
|
+
Agent Teams member completion MUST be verified by deterministic ground-truth — NOT by SendMessage reports or TaskList status alone. Members may edit files without updating task status (task stays `pending`) or go idle without executing at all.
|
|
321
|
+
|
|
322
|
+
**Verification sources (in order of reliability):**
|
|
323
|
+
|
|
324
|
+
| Source | Reliability | Examples |
|
|
325
|
+
|--------|-------------|---------|
|
|
326
|
+
| `git status` / `git diff` | High — ground truth | Check that expected files changed |
|
|
327
|
+
| `grep` / file existence | High — deterministic | Verify expected content written |
|
|
328
|
+
| Validation scripts | High — deterministic | `validate-docs`, linters, test runs |
|
|
329
|
+
| TaskList status | Low — member may not update | Use as a signal only |
|
|
330
|
+
| SendMessage report | Low — member may stall before sending | Use as a signal only |
|
|
331
|
+
|
|
332
|
+
Cross-reference: R020 ("actual outcome ≠ attempt" — verifying that a command ran is not the same as verifying it succeeded).
|
|
333
|
+
|
|
334
|
+
**Stall handling**: When a member shows no task progress within ~2 minutes despite spawn + owner assignment + SendMessage coordination, reassign the work to a standalone Agent (R009) rather than continuing to nudge the stalled member. Stalled Teams members waste tokens on idle polling and delay the overall workflow.
|
|
335
|
+
|
|
336
|
+
Observed instance: v0.159.0 release (session 105) — members assigned to disjoint-file cleanup tasks went idle without executing; deterministic git-diff check exposed the gap; work was reassigned to standalone parallel Agents. References: #1261, #1262.
|
|
337
|
+
|
|
338
|
+
## Member Prompt Size Cap
|
|
339
|
+
|
|
340
|
+
Keep per-member delegation prompts under ~5000 tokens and within a single domain. Oversized or multi-domain prompts risk malformed-parsing truncation in the CC platform (see R009 giant-prompt heuristic and `feedback_agent_malformed_parsing.md`). Large multi-file delegations should be decomposed and split across multiple members or standalone Agents.
|
package/templates/manifest.json
CHANGED