@lifeaitools/rdc-skills 0.9.13 → 0.9.15
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 +2 -2
- package/skills/overnight/SKILL.md +3 -17
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lifeaitools/rdc-skills",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "RDC typed-agent dispatch skill suite for Claude Code
|
|
3
|
+
"version": "0.9.15",
|
|
4
|
+
"description": "RDC typed-agent dispatch skill suite for Claude Code — plan, build, review, overnight builds",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
7
7
|
"claude-code-plugin",
|
|
@@ -77,24 +77,10 @@ Log the epic queue at the start of `.rdc/reports/overnight-<YYYY-MM-DD>.md` (fal
|
|
|
77
77
|
|
|
78
78
|
## Phase 3 — Epic Loop
|
|
79
79
|
|
|
80
|
-
###
|
|
80
|
+
### Targeted vs. queue mode
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
If the queue contains multiple epics:
|
|
85
|
-
1. Work the **first (highest-priority) epic only** in this session
|
|
86
|
-
2. After it completes, dispatch a **new background `rdc:overnight` agent** for the remaining queue:
|
|
87
|
-
```
|
|
88
|
-
Agent({
|
|
89
|
-
prompt: "rdc:overnight --unattended",
|
|
90
|
-
run_in_background: true
|
|
91
|
-
})
|
|
92
|
-
```
|
|
93
|
-
3. Then exit this session
|
|
94
|
-
|
|
95
|
-
**Why this matters:** Handling multiple epics inline causes context bleed — the second epic's agents inherit the first epic's plan, files, and decisions. Each epic must start cold. A new overnight agent gets a fresh context with no knowledge of prior epics.
|
|
96
|
-
|
|
97
|
-
**The stop hook will not fire** after dispatching the next overnight agent, because the current session has done its job and can exit cleanly.
|
|
82
|
+
- **Targeted (`rdc:overnight <epic-id>`):** work that one epic only. When it completes, remove the sentinel and exit — do NOT poll for more epics.
|
|
83
|
+
- **Queue mode (`rdc:overnight` no args or `label=X`):** drain all matching epics sequentially.
|
|
98
84
|
|
|
99
85
|
For each epic in the queue, run this sequence:
|
|
100
86
|
|