@lifeaitools/rdc-skills 0.24.16 → 0.24.17
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 +1 -1
- package/README.md +10 -1
- package/commands/help.md +6 -1
- package/git-sha.json +1 -1
- package/package.json +1 -1
- package/skills/help/SKILL.md +7 -1
- package/tests/help-surface.test.mjs +2 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rdc",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.17",
|
|
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
|
@@ -108,13 +108,22 @@ curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
|
108
108
|
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"rdc_skill_list","arguments":{}}}'
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
+
Search by natural-language intent:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
115
|
+
-H 'Content-Type: application/json' \
|
|
116
|
+
-H 'Accept: application/json, text/event-stream' \
|
|
117
|
+
-d '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"rdc_skill_search","arguments":{"query":"turn this article into social posts"}}}'
|
|
118
|
+
```
|
|
119
|
+
|
|
111
120
|
Fetch a skill body for a specific caller surface:
|
|
112
121
|
|
|
113
122
|
```bash
|
|
114
123
|
curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
115
124
|
-H 'Content-Type: application/json' \
|
|
116
125
|
-H 'Accept: application/json, text/event-stream' \
|
|
117
|
-
-d '{"jsonrpc":"2.0","id":
|
|
126
|
+
-d '{"jsonrpc":"2.0","id":5,"method":"tools/call","params":{"name":"rdc_skill_get","arguments":{"name":"build","variant":"cli"}}}'
|
|
118
127
|
```
|
|
119
128
|
|
|
120
129
|
Use `variant:"cli"` for Claude Code/Codex/local terminal instructions. Use
|
package/commands/help.md
CHANGED
|
@@ -59,7 +59,12 @@ curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
|
59
59
|
curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
60
60
|
-H 'Content-Type: application/json' \
|
|
61
61
|
-H 'Accept: application/json, text/event-stream' \
|
|
62
|
-
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"
|
|
62
|
+
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"rdc_skill_search","arguments":{"query":"turn this article into social posts"}}}'
|
|
63
|
+
|
|
64
|
+
curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
65
|
+
-H 'Content-Type: application/json' \
|
|
66
|
+
-H 'Accept: application/json, text/event-stream' \
|
|
67
|
+
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"rdc_skill_get","arguments":{"name":"build","variant":"cli"}}}'
|
|
63
68
|
```
|
|
64
69
|
|
|
65
70
|
## Hard Rules
|
package/git-sha.json
CHANGED
package/package.json
CHANGED
package/skills/help/SKILL.md
CHANGED
|
@@ -101,11 +101,17 @@ RDC SKILLS — manifest: .claude-plugin/plugin.json @ v{version}
|
|
|
101
101
|
-H 'Accept: application/json, text/event-stream' \
|
|
102
102
|
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"rdc_skill_list","arguments":{}}}'
|
|
103
103
|
|
|
104
|
+
Search by intent:
|
|
105
|
+
curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
106
|
+
-H 'Content-Type: application/json' \
|
|
107
|
+
-H 'Accept: application/json, text/event-stream' \
|
|
108
|
+
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"rdc_skill_search","arguments":{"query":"turn this article into social posts"}}}'
|
|
109
|
+
|
|
104
110
|
Fetch a skill:
|
|
105
111
|
curl -s -X POST https://rdc-skills.regendevcorp.com/mcp \
|
|
106
112
|
-H 'Content-Type: application/json' \
|
|
107
113
|
-H 'Accept: application/json, text/event-stream' \
|
|
108
|
-
-d '{"jsonrpc":"2.0","id":
|
|
114
|
+
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"rdc_skill_get","arguments":{"name":"build","variant":"cli"}}}'
|
|
109
115
|
|
|
110
116
|
## Hard rules
|
|
111
117
|
|
|
@@ -21,7 +21,9 @@ for (const [name, text] of Object.entries(docs)) {
|
|
|
21
21
|
assert.match(text, /https:\/\/rdc-skills\.regendevcorp\.com\/mcp/, `${name} must expose production MCP endpoint`);
|
|
22
22
|
assert.match(text, /Accept: application\/json, text\/event-stream/, `${name} must show Streamable HTTP Accept header`);
|
|
23
23
|
assert.match(text, /rdc_skill_list/, `${name} must mention rdc_skill_list`);
|
|
24
|
+
assert.match(text, /rdc_skill_search/, `${name} must mention rdc_skill_search`);
|
|
24
25
|
assert.match(text, /rdc_skill_get/, `${name} must mention rdc_skill_get`);
|
|
26
|
+
assert.match(text, /turn this article into social posts/, `${name} must include a natural-language search example`);
|
|
25
27
|
assert.doesNotMatch(text, /https:\/\/rdc-skills\.dev\.regendevcorp\.com\/mcp/, `${name} must not point callers at dev MCP`);
|
|
26
28
|
}
|
|
27
29
|
|