@lifeaitools/rdc-skills 0.9.20 → 0.9.21
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/README.md +1 -1
- package/guides/verify.md +11 -0
- package/package.json +2 -2
- package/scripts/self-test.mjs +3 -3
- package/skills/deploy/SKILL.md +1 -1
- package/skills/help/SKILL.md +4 -0
- package/skills/release/SKILL.md +2 -2
package/README.md
CHANGED
package/guides/verify.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Verify Guide
|
|
2
|
+
|
|
3
|
+
Compatibility shim for skill references that point to `guides/verify.md`.
|
|
4
|
+
|
|
5
|
+
The active verification playbook lives at:
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
guides/agents/verify.md
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Use that file for evidence-before-claims verification, scoped type checks, scoped tests, route probes, and final acceptance reporting.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lifeaitools/rdc-skills",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.21",
|
|
4
4
|
"description": "RDC typed-agent dispatch skill suite for Claude Code — plan, build, review, overnight builds",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"type": "plugin",
|
|
20
20
|
"skills": "skills/",
|
|
21
21
|
"guides": "guides/",
|
|
22
|
-
"version": "0.9.
|
|
22
|
+
"version": "0.9.21",
|
|
23
23
|
"commands": "commands/"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
package/scripts/self-test.mjs
CHANGED
|
@@ -474,7 +474,7 @@ function auditDuplicates(results) {
|
|
|
474
474
|
const stem = skillBase.startsWith("rdc-") ? skillBase.slice(4) : skillBase;
|
|
475
475
|
if (agentBases.has(stem)) {
|
|
476
476
|
findings.push({
|
|
477
|
-
level: "
|
|
477
|
+
level: "info",
|
|
478
478
|
code: "skill-guide-name-overlap",
|
|
479
479
|
message: `skills/${skillBase}/SKILL.md overlaps guides/agents/${stem}.md; allowed when a user-facing skill delegates to an agent guide`,
|
|
480
480
|
});
|
|
@@ -531,9 +531,9 @@ function auditOrphanHooks(results) {
|
|
|
531
531
|
for (const hf of hookFiles) {
|
|
532
532
|
if (!referenced.has(hf)) {
|
|
533
533
|
findings.push({
|
|
534
|
-
level: "
|
|
534
|
+
level: "info",
|
|
535
535
|
code: "orphan-hook",
|
|
536
|
-
message: `hooks/${hf} exists but is not referenced by any skill`,
|
|
536
|
+
message: `hooks/${hf} exists but is not referenced by any skill; plugin hooks may still be convention-discovered or wired by settings`,
|
|
537
537
|
});
|
|
538
538
|
}
|
|
539
539
|
}
|
package/skills/deploy/SKILL.md
CHANGED
|
@@ -138,7 +138,7 @@ Severity rules:
|
|
|
138
138
|
## References
|
|
139
139
|
|
|
140
140
|
- Type-specific checklists + DNS tree + gate commands: `docs/runbooks/coolify-deploy-checklist.md`
|
|
141
|
-
- Rules / registry RPCs / hard limits: `.claude/
|
|
141
|
+
- Rules / registry RPCs / hard limits: `.claude/context/coolify-deployment.md`
|
|
142
142
|
- MCP server: `@masonator/coolify-mcp` (38 tools)
|
|
143
143
|
- Infrastructure constants:
|
|
144
144
|
```
|
package/skills/help/SKILL.md
CHANGED
|
@@ -4,6 +4,10 @@ description: >-
|
|
|
4
4
|
Usage `rdc:help` or `rdc` — selection menu of all rdc:* skills with their full argument syntax. Use when unsure which command to invoke or what args it takes.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
> **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
|
|
8
|
+
> Checklist-only output. No tool-call narration. No raw MCP/JSON/log dumps.
|
|
9
|
+
> One checklist upfront, updated in place, shown again at end with a 1-line verdict.
|
|
10
|
+
|
|
7
11
|
# rdc:help — Command Reference
|
|
8
12
|
|
|
9
13
|
> **⚠️ HARD OUTPUT RULE:** Your ENTIRE response MUST be the block below, copied verbatim.
|
package/skills/release/SKILL.md
CHANGED
|
@@ -337,7 +337,7 @@ Show full checklist with `[!]` markers even on failure.
|
|
|
337
337
|
|
|
338
338
|
## Related
|
|
339
339
|
|
|
340
|
-
- `.claude/
|
|
341
|
-
- `.claude/
|
|
340
|
+
- `.claude/context/clauth.md` — clauth release source of truth
|
|
341
|
+
- `.claude/context/coolify-deployment.md` — Coolify watch_paths, deploy rules
|
|
342
342
|
- `memory/feedback_version_bump_must_tag.md` — never bump without tagging
|
|
343
343
|
- `memory/feedback_use_rdc_release.md` — "promote/deploy to main" always triggers this skill
|