@lifeaitools/rdc-skills 0.35.8 → 0.35.9

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,60 +0,0 @@
1
- ---
2
-
3
- description: rdc:release (repo, [version]) - [--patch, --minor, --major, --dry-run] — bump, tag, publish and verify a package
4
- ---
5
-
6
- # rdc:release — Generic Release
7
-
8
- > **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
9
- > Checklist-only output. No raw git/npm/CI dumps.
10
- > One checklist upfront, updated in place, shown again at end with 1-line verdict.
11
-
12
- ## Checklist
13
-
14
- ```
15
- rdc:release: <repo> vX.Y.Z -> vA.B.C
16
- [ ] Source path resolved
17
- [ ] Release metadata read
18
- [ ] Working tree clean or user-approved dirty scope identified
19
- [ ] Current version detected
20
- [ ] New version computed
21
- [ ] Dry-run gate handled
22
- [ ] Version files updated
23
- [ ] Tests/self-test passed
24
- [ ] Commit created
25
- [ ] Tag created
26
- [ ] Branch and tag pushed
27
- [ ] CI/publish status verified
28
- [ ] Registry/package/deploy target shows vA.B.C, if applicable
29
- [ ] Local install/update executed, if applicable
30
- [ ] Installed/runtime version verified
31
- [ ] Smoke test passed
32
- ✅ rdc:release <repo>: vA.B.C live and verified
33
- ```
34
-
35
- ## Rules
36
-
37
- - Do not release without explicit user authorization.
38
- - Prefer repo-local release instructions in `.rdc/release.json`, README, package scripts, or CI workflows.
39
- - Never force push or bypass hooks.
40
- - Never declare success without verifying the installed or deployed version.
41
-
42
- For a `package`-class target that already resolves through `rdc-harness`
43
- (a real monorepo subtree, not a standalone repo like this one), its
44
- `packages/deploy/src/runners/registry-release.mjs` runner already proves the
45
- "Tests/self-test passed" through "Local install/update executed" steps
46
- safely — real `npm pack`, isolated-prefix install (never the real global
47
- store), real verify, and `--live` explicitly gates the actual publish. Where
48
- applicable, `node C:/Dev/rdc-harness/bin/rdc-harness.mjs deploy <slug>
49
- [--live]` can supply those checklist rows' evidence directly instead of
50
- hand-rolling the same pack/install/verify cycle. This does not replace
51
- version bump/tag/push — the harness CLI does neither.
52
-
53
- ## RDC Skills Package
54
-
55
- After publishing this package to npm, a clean-box install should use:
56
-
57
- ```bash
58
- npm install -g @lifeaitools/rdc-skills@latest
59
- rdc-skills-install --profile core
60
- ```
@@ -1,15 +0,0 @@
1
- ---
2
- name: review
3
- description: rdc:review () - [--unattended] — post-build gate over tsc, tests, docs and code review
4
- ---
5
-
6
- # review
7
-
8
- Use Skill tool with skill: "review", passing `--unattended` through if given.
9
-
10
- > This file previously carried a full duplicate of the procedure now owned by
11
- > `skills/review/SKILL.md`. The two drifted — this copy was missing the
12
- > mandatory code-review gate (step 8b) and the `engineering-behavior.md` read
13
- > that the other had. One home for the content closes that class of bug
14
- > permanently rather than requiring the next editor to remember to update
15
- > both.
@@ -1,85 +0,0 @@
1
- ---
2
- name: status
3
- description: rdc:status () — snapshot open epics, health, blockers and next action
4
- ---
5
-
6
- > **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
7
- > Checklist-only output. No tool-call narration. No raw MCP/JSON/log dumps.
8
- > One checklist upfront, updated in place, shown again at end with a 1-line verdict.
9
-
10
- > If dispatching subagents or running as a subagent: read `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md` first (fallback: `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md`).
11
-
12
-
13
- # rdc:status — Project Dashboard
14
-
15
- ## When to Use
16
- - Start of any session
17
- - Project lead asks "what's the status", "where are we", "what's open"
18
- - Before deciding what to work on next
19
-
20
- ## Procedure
21
-
22
- 1. **Open epics:**
23
- ```sql
24
- SELECT get_open_epics();
25
- ```
26
-
27
- 2. **Work item counts by status:**
28
- ```sql
29
- SELECT status, count(*) FROM work_items
30
- WHERE status != 'archived'
31
- GROUP BY status ORDER BY status;
32
- ```
33
-
34
- 3. **Items by label/project (top 10 labels):**
35
- ```sql
36
- SELECT unnest(labels) as label, count(*),
37
- count(*) FILTER (WHERE status = 'done') as done,
38
- count(*) FILTER (WHERE status = 'todo') as todo,
39
- count(*) FILTER (WHERE status = 'in_progress') as wip
40
- FROM work_items
41
- GROUP BY label ORDER BY count DESC LIMIT 10;
42
- ```
43
-
44
- 4. **Recent activity (last 48 hours):**
45
- ```sql
46
- SELECT title, status, updated_at
47
- FROM work_items
48
- WHERE updated_at > now() - interval '48 hours'
49
- ORDER BY updated_at DESC LIMIT 15;
50
- ```
51
-
52
- 5. **Git status:**
53
- ```bash
54
- git log --oneline -10
55
- git status
56
- git branch -v
57
- ```
58
-
59
- 6. **Infrastructure health** (if MCP available):
60
- - Get infrastructure overview or diagnose issues
61
- - Report any apps with failed builds or down containers
62
-
63
- 7. **Present as a compact dashboard:**
64
- ```
65
- ## Open Epics (N)
66
- <table>
67
-
68
- ## Work Items: X done | Y todo | Z in_progress
69
-
70
- ## Recent (48h)
71
- <list>
72
-
73
- ## Deployments
74
- <green/red/yellow status>
75
-
76
- ## Recommended Next
77
- <highest priority unstarted epic>
78
- ```
79
-
80
- ## Rules
81
- - Keep output concise — this is a glance, not a deep dive
82
- - Always end with a recommendation for what to work on next
83
- - After the Recommended Next section, suggest which guide file from `.rdc/guides/` (fallback: `.rdc/guides/`) the recommended work would need
84
- - Use database MCP for queries (not raw curl)
85
- - If infrastructure MCP is unavailable, skip deployment status and note it