@lifeaitools/rdc-skills 0.35.20 → 0.35.21
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.35.
|
|
3
|
+
"version": "0.35.21",
|
|
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/bin/rdc-skills-mcp.mjs
CHANGED
|
@@ -40,6 +40,7 @@ import fs from 'node:fs';
|
|
|
40
40
|
import path from 'node:path';
|
|
41
41
|
import { fileURLToPath } from 'node:url';
|
|
42
42
|
import { execFileSync } from 'node:child_process';
|
|
43
|
+
import { buildHealthPayload } from '@lifeaitools/clauth-surface-sdk';
|
|
43
44
|
|
|
44
45
|
import {
|
|
45
46
|
listSkills,
|
|
@@ -305,7 +306,12 @@ function startHttp() {
|
|
|
305
306
|
} catch {
|
|
306
307
|
skills = 0;
|
|
307
308
|
}
|
|
308
|
-
res.json({
|
|
309
|
+
res.json({
|
|
310
|
+
...buildHealthPayload({ service: 'rdc-skills-mcp', version: pkgVersion(), commands: ['start', 'stop', 'restart'] }),
|
|
311
|
+
status: 'ok',
|
|
312
|
+
git_sha: GIT_SHA,
|
|
313
|
+
skills,
|
|
314
|
+
});
|
|
309
315
|
});
|
|
310
316
|
|
|
311
317
|
// Block OAuth discovery so connectors skip OAuth and connect direct — /mcp is open.
|
package/clauth-plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lifeaitools/rdc-skills",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.21",
|
|
4
4
|
"description": "RDC typed-agent dispatch skill suite for Claude Code - plan, build, review, overnight builds",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"prepack": "node scripts/prepack.mjs"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
+
"@lifeaitools/clauth-surface-sdk": "^0.1.0",
|
|
61
62
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
62
63
|
"express": "^5.0.0",
|
|
63
64
|
"tree-sitter-wasms": "^0.1.13",
|