@lifeaitools/rdc-skills 0.24.24 → 0.24.25

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rdc",
3
- "version": "0.24.24",
3
+ "version": "0.24.25",
4
4
  "description": "RDC typed-agent dispatch skill suite for Claude Code — plan, build, review, overnight unattended builds with work-item tracking and TDD enforcement.",
5
5
  "author": {
6
6
  "name": "LIFEAI",
package/README.md CHANGED
@@ -286,31 +286,35 @@ Boundaries:
286
286
 
287
287
  ```
288
288
  skills/
289
+ brochure/SKILL.md (print-quality PDF rendering)
289
290
  build/SKILL.md (dispatch agents in waves — mandatory validator gate)
290
- plan/SKILL.md (create architecture + tasks)
291
- preplan/SKILL.md (research before planning)
292
- review/SKILL.md (quality gate: tests, types, docs)
293
- overnight/SKILL.md (unattended multi-epic supervisor)
294
- fixit/SKILL.md (quick-fix bypass)
295
- status/SKILL.md (project dashboard)
296
- report/SKILL.md (nightly report)
291
+ channel-formatter/SKILL.md (channel-native formatting and content packs)
292
+ co-develop/SKILL.md (peer-aware Claude/Codex co-development)
297
293
  collab/SKILL.md (bidirectional claude.ai ↔ Claude Code relay)
294
+ convert/SKILL.md (Office/Markdown conversion)
295
+ deploy/SKILL.md (Coolify ops: deploy, new, diagnose, audit)
296
+ design/SKILL.md (RDC/Studio design, Palette Library, Rampa CLI)
297
+ fixit/SKILL.md (quick-fix bypass)
298
+ fs-mcp/SKILL.md (File System MCP bridge guidance)
298
299
  handoff/SKILL.md (planning → work items)
300
+ help/SKILL.md (manifest-driven skill index)
301
+ housekeeping/SKILL.md (weekly maintenance audit)
302
+ lifeai-brochure-author/SKILL.md (brochure JSX authoring)
303
+ overnight/SKILL.md (unattended multi-epic supervisor)
304
+ plan/SKILL.md (create architecture + tasks)
305
+ preplan/SKILL.md (research before planning)
299
306
  prototype/SKILL.md (build JSX prototype)
300
- workitems/SKILL.md (work item management)
301
- design/SKILL.md (RDC/Studio design, Palette Library, Rampa CLI)
302
- help/SKILL.md (skill index — shows current version)
303
- deploy/SKILL.md (Coolify ops: deploy, new, diagnose, audit)
304
- release/SKILL.md (atomic package/app release)
305
- self-test/SKILL.md (skill suite health check)
306
- watch/SKILL.md (session log watcher)
307
- channel-formatter/SKILL.md (channel-native formatting and content packs)
308
- convert/SKILL.md (Office/Markdown conversion)
309
- brochure/SKILL.md (print-quality PDF rendering)
310
307
  rdc-brochurify/SKILL.md (Brochurify orchestration)
311
- lifeai-brochure-author/SKILL.md (brochure JSX authoring)
312
308
  rdc-extract-verifier-rules/SKILL.md (verifier rule extraction)
309
+ release/SKILL.md (atomic package/app release)
310
+ report/SKILL.md (nightly report)
311
+ review/SKILL.md (quality gate: tests, types, docs)
313
312
  rpms-filemap/SKILL.md (canonical RPMS file map)
313
+ self-test/SKILL.md (skill suite health check)
314
+ status/SKILL.md (project dashboard)
315
+ terminal-config/SKILL.md (Windows Terminal and hidden-launch policy)
316
+ watch/SKILL.md (session log watcher)
317
+ workitems/SKILL.md (work item management)
314
318
 
315
319
  guides/agents/ (agent-only playbooks — dispatched by rdc:build, not user-invocable)
316
320
  frontend.md (React, UI, Tailwind)
package/git-sha.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "sha": "337ec305ad032632e314baec4d0d7ddcccca6b8c"
2
+ "sha": "3adce37239675bd6c9d69b585053ff8bf3ee8137"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifeaitools/rdc-skills",
3
- "version": "0.24.24",
3
+ "version": "0.24.25",
4
4
  "description": "RDC typed-agent dispatch skill suite for Claude Code - plan, build, review, overnight builds",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import assert from 'node:assert/strict';
3
- import { readFileSync } from 'node:fs';
3
+ import { existsSync, readdirSync, readFileSync, statSync } from 'node:fs';
4
4
  import { dirname, join, resolve } from 'node:path';
5
5
  import { fileURLToPath } from 'node:url';
6
6
 
@@ -43,4 +43,15 @@ assert.match(docs.commandHelp, /manifest-driven/i, 'command help should be manif
43
43
  assert.doesNotMatch(docs.commandHelp, /Print the full usage menu below verbatim/, 'command help must not use stale static menu wording');
44
44
  assert.doesNotMatch(docs.commandHelp, /get\/<service>/, 'command help must use current clauth /v/<service> wording');
45
45
 
46
+ const skillDirs = readdirSync(join(root, 'skills'))
47
+ .filter((name) => {
48
+ const dir = join(root, 'skills', name);
49
+ return statSync(dir).isDirectory() && existsSync(join(dir, 'SKILL.md'));
50
+ })
51
+ .sort();
52
+ const readmeSkillDirs = [...docs.readme.matchAll(/^\s{2}([A-Za-z0-9_-]+)\/SKILL\.md/gm)]
53
+ .map((match) => match[1])
54
+ .sort();
55
+ assert.deepEqual(readmeSkillDirs, skillDirs, 'README File Structure must list every skill directory exactly once');
56
+
46
57
  console.log('help surface tests — PASS');