@lifeaitools/rdc-skills 0.9.22 → 0.9.23

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.9.22",
3
+ "version": "0.9.23",
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
@@ -176,7 +176,7 @@ python3 -c "import json; print(json.load(open('package.json'))['version'])"
176
176
  /rdc:help
177
177
  ```
178
178
 
179
- Current version: **v0.9.22**
179
+ Current version: **v0.9.23**
180
180
 
181
181
  ## Quick Start
182
182
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifeaitools/rdc-skills",
3
- "version": "0.9.22",
3
+ "version": "0.9.23",
4
4
  "description": "RDC typed-agent dispatch skill suite for Claude Code — plan, build, review, overnight builds",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -19,7 +19,7 @@
19
19
  "type": "plugin",
20
20
  "skills": "skills/",
21
21
  "guides": "guides/",
22
- "version": "0.9.22",
22
+ "version": "0.9.23",
23
23
  "commands": "commands/"
24
24
  },
25
25
  "scripts": {
@@ -71,7 +71,7 @@ Project docs to read for Studio work:
71
71
  3. **Find the source of truth before proposing changes.**
72
72
  - Tokens: Studio APIs, resolver files, and Supabase token tables.
73
73
  - Palette Library: Studio palette APIs and theme/palette model.
74
- - Live editor: local editor routes and clauth relay routes.
74
+ - Live editor: RDC Native Local Debug only — `/editor/local/*`, `/api/editor/local-debug`, `/studio/debug/*`, `/studio/claude/*`, and `scripts/studio-debug-poll.mjs`.
75
75
  - Components: `@regen/ui`, Studio component registry, and existing local components.
76
76
 
77
77
  4. **Use Rampa only as proposal tooling.**
@@ -132,6 +132,7 @@ Each run includes character count, word count, approximate token count, referenc
132
132
 
133
133
  - Do not edit installed Impeccable skills.
134
134
  - Do not create another skill named `impeccable`.
135
+ - Do not use Impeccable Live as Studio's live-edit execution path.
135
136
  - Do not persist Rampa output directly to production without Studio token mapping.
136
137
  - Do not fork or ship Palette Designer until its license is verified.
137
138
  - Do not use Studio's deprecated `/api/editor/render` route.
@@ -46,6 +46,25 @@ Clauth relay route families:
46
46
  - `/studio/debug/*`
47
47
  - `/studio/claude/*`
48
48
 
49
+ ## Native Local Debug Model
50
+
51
+ Studio live editing must use the RDC-owned local debug system, not Impeccable Live:
52
+
53
+ 1. Studio starts a local session with `POST /studio/debug/start`.
54
+ 2. Studio embeds the returned local `devUrl` with debug query params.
55
+ 3. `/api/editor/local-debug` injects Studio's own `local-debug-browser.js` picker.
56
+ 4. Browser/user events go to `/studio/debug/:sessionId/events`.
57
+ 5. Claude Code polls `/studio/claude/:sessionId/poll` with `scripts/studio-debug-poll.mjs`.
58
+ 6. Claude edits source files directly and replies to `/studio/claude/:sessionId/reply`.
59
+ 7. HMR updates the iframe.
60
+
61
+ The disposable proof target is:
62
+
63
+ - `/editor/local/test`
64
+ - `apps/studio/src/app/editor/local-test-target/page.tsx`
65
+
66
+ Direct edits must make exactly one source edit unless impossible. Variant edits should return alternatives without editing unless explicitly instructed to apply one. Reference replacement requires an explicit reference. Notes must not edit source.
67
+
49
68
  ## Token APIs
50
69
 
51
70
  - `GET /api/public/tokens/[slug]` returns legacy public token payload and CSS variables.