oh-my-customcode 0.35.1 → 0.35.3
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/package.json
CHANGED
|
@@ -165,10 +165,10 @@ Use `context: fork` for skills that orchestrate multi-agent workflows. Cap at **
|
|
|
165
165
|
| Multi-agent coordination patterns | Single-agent reference skills |
|
|
166
166
|
| Task decomposition/planning | External tool integrations |
|
|
167
167
|
|
|
168
|
-
Current skills with `context: fork` (
|
|
168
|
+
Current skills with `context: fork` (8/10 cap):
|
|
169
169
|
- secretary-routing, dev-lead-routing, de-lead-routing, qa-lead-routing
|
|
170
170
|
- dag-orchestration, task-decomposition, worker-reviewer-pipeline
|
|
171
|
-
- pipeline-guards
|
|
171
|
+
- pipeline-guards
|
|
172
172
|
|
|
173
173
|
## Naming
|
|
174
174
|
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
The main conversation is the **sole orchestrator**. It uses routing skills to delegate tasks to subagents via the Agent tool (formerly Task tool). Subagents CANNOT spawn other subagents.
|
|
8
8
|
|
|
9
|
+
**Agent Teams Exception**: Agent Teams members are peers, not hierarchical subagents. Teams members CAN spawn sub-agents via the Agent tool to execute complex workflows (e.g., research teams, verification teams). This enables Teams-compatible skills like `/research` and `/deep-plan` to run inside Team members. The Teams member acts as a local orchestrator for its own sub-tasks.
|
|
10
|
+
|
|
9
11
|
**The orchestrator MUST NEVER directly write, edit, or create files. ALL file modifications MUST be delegated to appropriate subagents.**
|
|
10
12
|
|
|
11
13
|
## Self-Check (Before File Modification)
|
|
@@ -157,7 +157,7 @@ User signals session end
|
|
|
157
157
|
3. Return formatted summary to orchestrator
|
|
158
158
|
→ Orchestrator performs MCP saves directly:
|
|
159
159
|
1. claude-mem save (if available via ToolSearch)
|
|
160
|
-
|
|
160
|
+
(episodic-memory auto-indexes after session — no action needed)
|
|
161
161
|
→ Orchestrator confirms to user
|
|
162
162
|
```
|
|
163
163
|
|
|
@@ -170,7 +170,7 @@ MCP tools (claude-mem, episodic-memory) are **orchestrator-scoped** and not inhe
|
|
|
170
170
|
| Session summary collection | sys-memory-keeper | Domain expertise in memory formatting |
|
|
171
171
|
| Native auto-memory (MEMORY.md) | sys-memory-keeper | Has Write access to memory directory |
|
|
172
172
|
| claude-mem MCP save | Orchestrator | MCP tools only available at orchestrator level |
|
|
173
|
-
| episodic-memory
|
|
173
|
+
| episodic-memory | Automatic | Conversations are auto-indexed after session ends — no manual action needed |
|
|
174
174
|
|
|
175
175
|
### Dual-System Save
|
|
176
176
|
|
|
@@ -178,7 +178,7 @@ MCP tools (claude-mem, episodic-memory) are **orchestrator-scoped** and not inhe
|
|
|
178
178
|
|--------|-------|------|--------|----------|
|
|
179
179
|
| Native auto-memory | sys-memory-keeper | Write | Update MEMORY.md with session learnings | Yes |
|
|
180
180
|
| claude-mem | Orchestrator | `mcp__plugin_claude-mem_mcp-search__save_memory` | Save session summary with project, tasks, decisions | No (best-effort) |
|
|
181
|
-
| episodic-memory |
|
|
181
|
+
| episodic-memory | Automatic | (auto-indexed) | No action needed — conversations are indexed automatically after session ends | N/A |
|
|
182
182
|
|
|
183
183
|
### Session-End Self-Check (MANDATORY)
|
|
184
184
|
|
|
@@ -194,12 +194,10 @@ MCP tools (claude-mem, episodic-memory) are **orchestrator-scoped** and not inhe
|
|
|
194
194
|
║ YES → Continue (even if it failed) ║
|
|
195
195
|
║ NO → ToolSearch + save now ║
|
|
196
196
|
║ ║
|
|
197
|
-
║
|
|
198
|
-
║
|
|
199
|
-
║ NO → ToolSearch + verify now ← THIS IS THE COMMONLY ║
|
|
200
|
-
║ SKIPPED STEP. DO NOT SKIP IT. ║
|
|
197
|
+
║ Note: episodic-memory auto-indexes conversations after session ║
|
|
198
|
+
║ ends. No manual action needed — do NOT search as "verification" ║
|
|
201
199
|
║ ║
|
|
202
|
-
║
|
|
200
|
+
║ BOTH steps must be completed before confirming to user. ║
|
|
203
201
|
║ "Attempted" means called the tool — failure is OK, skipping ║
|
|
204
202
|
║ is NOT. ║
|
|
205
203
|
╚══════════════════════════════════════════════════════════════════╝
|
|
@@ -209,5 +207,4 @@ MCP tools (claude-mem, episodic-memory) are **orchestrator-scoped** and not inhe
|
|
|
209
207
|
|
|
210
208
|
- MCP saves are **non-blocking**: memory failure MUST NOT prevent session from ending
|
|
211
209
|
- If claude-mem unavailable: skip, log warning
|
|
212
|
-
-
|
|
213
|
-
- If both unavailable: warn user, proceed with session end
|
|
210
|
+
- episodic-memory: no action needed (auto-indexed after session)
|
package/templates/manifest.json
CHANGED