@lifeaitools/rdc-skills 0.9.36 → 0.9.38
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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +27 -0
- package/commands/deploy.md +4 -4
- package/commands/design.md +1 -1
- package/commands/overnight.md +2 -2
- package/commands/release.md +29 -139
- package/commands/self-test.md +1 -1
- package/commands/watch.md +1 -1
- package/guides/agent-bootstrap.md +2 -2
- package/hooks/check-cwd.js +3 -3
- package/hooks/no-stop-open-epics.js +9 -7
- package/hooks/rdc-invocation-marker.js +17 -3
- package/hooks/rdc-output-contract-gate.js +9 -0
- package/hooks/require-work-item-on-commit.js +2 -1
- package/package.json +8 -3
- package/scripts/install-rdc-skills.js +6 -2
- package/scripts/self-test.mjs +36 -0
- package/scripts/test-rdc-hooks.mjs +145 -0
- package/skills/build/SKILL.md +2 -2
- package/skills/co-develop/SKILL.md +1 -1
- package/skills/deploy/SKILL.md +12 -12
- package/skills/design/SKILL.md +6 -6
- package/skills/fs-mcp/SKILL.md +2 -2
- package/skills/plan/SKILL.md +2 -2
- package/skills/release/SKILL.md +48 -302
- package/skills/self-test/SKILL.md +3 -3
- package/skills/terminal-config/SKILL.md +34 -189
- package/skills/watch/SKILL.md +1 -1
package/skills/watch/SKILL.md
CHANGED
|
@@ -23,7 +23,7 @@ description: "Usage `rdc:watch` — Open a live browser viewer tailing this sess
|
|
|
23
23
|
```bash
|
|
24
24
|
node ${CLAUDE_PLUGIN_ROOT}/scripts/watch-init.mjs
|
|
25
25
|
```
|
|
26
|
-
(If `CLAUDE_PLUGIN_ROOT` is not set, resolve the plugin path from your invocation context
|
|
26
|
+
(If `CLAUDE_PLUGIN_ROOT` is not set, resolve the plugin path from your invocation context or the installed plugin cache.)
|
|
27
27
|
|
|
28
28
|
2. **Parse the output.** The script prints `run_id`, `log_path`, `current`, `viewer`, and `open_hint`. Capture `log_path` and `viewer` for the rest of the session.
|
|
29
29
|
|