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
@@ -2334,7 +2334,7 @@ var init_package = __esm(() => {
2334
2334
  workspaces: [
2335
2335
  "packages/*"
2336
2336
  ],
2337
- version: "0.159.0",
2337
+ version: "0.160.0",
2338
2338
  description: "Batteries-included agent harness for Claude Code",
2339
2339
  type: "module",
2340
2340
  bin: {
package/dist/index.js CHANGED
@@ -2031,7 +2031,7 @@ var package_default = {
2031
2031
  workspaces: [
2032
2032
  "packages/*"
2033
2033
  ],
2034
- version: "0.159.0",
2034
+ version: "0.160.0",
2035
2035
  description: "Batteries-included agent harness for Claude Code",
2036
2036
  type: "module",
2037
2037
  bin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.159.0",
6
+ "version": "0.160.0",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.159.0",
2
+ "version": "0.160.0",
3
3
  "lastUpdated": "2026-05-20T00:00:00.000Z",
4
4
  "omcustomMinClaudeCode": "2.1.121",
5
5
  "omcustomMinClaudeCodeReason": "Sensitive-path direct Write/Edit on .claude/** under bypassPermissions (R010 deprecation, #1101)",