@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.
@@ -8,11 +8,12 @@ const served = (name) => {
8
8
  return body;
9
9
  };
10
10
 
11
- test('live rdc_skill_get planning body creates executable work through the durable admission contract', () => {
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, /Design Review contract/);
15
- assert.match(plan, /needs_human/);
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