@lifeaitools/rdc-skills 0.35.10 → 0.35.13
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/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/package.json +1 -1
- 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
|
@@ -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
|
|