@lifeaitools/rdc-skills 0.35.9 → 0.35.12
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 +43 -1
- package/.github/workflows/self-test.yml +34 -34
- package/CHANGELOG.md +10 -0
- package/MANIFEST.md +224 -224
- package/README.md +1 -0
- package/clauth-plugin.json +1 -1
- package/commands/open.md +17 -0
- package/guides/agents/backend.md +102 -102
- package/guides/agents/content.md +94 -94
- package/guides/agents/cs2.md +56 -56
- package/guides/agents/data.md +86 -86
- package/guides/agents/design.md +77 -77
- package/guides/agents/frontend.md +91 -91
- package/guides/agents/infrastructure.md +81 -81
- package/guides/agents/setup.md +272 -272
- package/guides/agents/verify.md +119 -119
- package/guides/agents/viz.md +106 -106
- package/guides/orchestration-epic.md +17 -17
- package/lifeaitools-rdc-skills-0.35.12.tgz +0 -0
- package/package.json +1 -1
- package/scripts/install-rdc-skills.js +51 -21
- package/scripts/self-test.mjs +1459 -1459
- package/skills/behavior-audit/agents/openai.yaml +4 -4
- package/skills/build/SKILL.md +5 -5
- package/skills/open/SKILL.md +128 -0
- package/skills/overnight/SKILL.md +4 -4
- package/skills/plan/SKILL.md +8 -12
- package/skills/tests/onramp.test.json +101 -101
- package/skills/tests/rdc-env.test.json +12 -12
- package/skills/tests/rdc-new-model.test.json +12 -12
- package/skills/tests/rdc-refactor.test.json +29 -29
- package/skills/tests/rdc-regen-media.test.json +29 -29
- package/tests/completion-gate-supervisor-admission.test.mjs +4 -3
- package/tests/install-rdc-skills.test.mjs +22 -4
|
@@ -8,11 +8,12 @@ const served = (name) => {
|
|
|
8
8
|
return body;
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
-
test('live rdc_skill_get planning body
|
|
11
|
+
test('live rdc_skill_get planning body makes Design Review explicit opt-in', () => {
|
|
12
12
|
const plan = served('rdc:plan');
|
|
13
13
|
assert.match(plan, /upsert_admitted_work_item/);
|
|
14
|
-
assert.match(plan, /
|
|
15
|
-
assert.match(plan, /
|
|
14
|
+
assert.match(plan, /p_design_review := NULL/);
|
|
15
|
+
assert.match(plan, /Dave explicitly requests Design Review/);
|
|
16
|
+
assert.match(plan, /ordinary work reaches `rdc:review`/);
|
|
16
17
|
assert.doesNotMatch(plan, /One task per work package via `insert_work_item/);
|
|
17
18
|
});
|
|
18
19
|
|
|
@@ -60,15 +60,33 @@ assert.equal(
|
|
|
60
60
|
realSkillDirs.length,
|
|
61
61
|
`plugin.json skills_meta (${skillCount}) must match the actual skill directories on disk (${realSkillDirs.length}): ${realSkillDirs.join(', ')}`,
|
|
62
62
|
);
|
|
63
|
+
// The listing must report EVERY /rdc:* verb, and say which surface each comes
|
|
64
|
+
// from. It used to enumerate commands/ only, which was harmless while every verb
|
|
65
|
+
// shipped as both a command and a skill — and became actively misleading the
|
|
66
|
+
// moment the duplicates were removed (2026-08-29): the printed surface fell from
|
|
67
|
+
// 32 to 13 while the real surface was unchanged, because a skill provides the
|
|
68
|
+
// slash form on its own (verified live: commands/status.md deleted, rdc:status
|
|
69
|
+
// still resolved). A listing that under-reports by 43 verbs reads as "those
|
|
70
|
+
// commands are gone".
|
|
63
71
|
assert.match(
|
|
64
72
|
source,
|
|
65
|
-
/Available
|
|
66
|
-
'installer should
|
|
73
|
+
/Available \/rdc:\* verbs/,
|
|
74
|
+
'installer should list every /rdc:* verb, not only the command-backed ones',
|
|
67
75
|
);
|
|
68
76
|
assert.match(
|
|
69
77
|
source,
|
|
70
|
-
/
|
|
71
|
-
'installer should
|
|
78
|
+
/command, \$\{[^}]*\} skill/,
|
|
79
|
+
'installer should say how many verbs come from commands and how many from skills',
|
|
80
|
+
);
|
|
81
|
+
assert.match(
|
|
82
|
+
source,
|
|
83
|
+
/readdirSync\(skillDir, \{ withFileTypes: true \}\)/,
|
|
84
|
+
'installer should enumerate the real skill directories, not a manifest count that can drift from disk',
|
|
85
|
+
);
|
|
86
|
+
assert.match(
|
|
87
|
+
source,
|
|
88
|
+
/SKILL\.md'\)\)\) continue/,
|
|
89
|
+
'installer must skip a directory with no SKILL.md — tests/ is a fixture dir, not a skill',
|
|
72
90
|
);
|
|
73
91
|
assert.match(
|
|
74
92
|
source,
|