@lifeaitools/rdc-skills 0.9.25 → 0.9.26
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/package.json +2 -2
- package/skills/fixit/SKILL.md +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lifeaitools/rdc-skills",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.26",
|
|
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
|
+
"version": "0.9.26",
|
|
23
23
|
"commands": "commands/"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
package/skills/fixit/SKILL.md
CHANGED
|
@@ -93,7 +93,7 @@ Submit implementation report first, then mark done:
|
|
|
93
93
|
|
|
94
94
|
```sql
|
|
95
95
|
SELECT submit_implementation_report('<id>'::uuid,
|
|
96
|
-
'{"tldr":"<one sentence>","assumptions":[],"deviations":[],"uncertainty":[],"detail":"<what was fixed>","flags":[]}'::jsonb
|
|
96
|
+
'{"tldr":"<one sentence>","assumptions":[],"deviations":[],"uncertainty":[],"detail":"<what was fixed>","flags":[],"transactional":false,"memory_records":[]}'::jsonb
|
|
97
97
|
);
|
|
98
98
|
|
|
99
99
|
SELECT update_work_item_status('<id>'::uuid, 'done',
|
|
@@ -101,6 +101,11 @@ SELECT update_work_item_status('<id>'::uuid, 'done',
|
|
|
101
101
|
);
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
+
If the fix touched a transactional flow, API boundary, or package contract, set `"transactional": true` and populate `memory_records` (see `agent-bootstrap.md`), then run:
|
|
105
|
+
```bash
|
|
106
|
+
node scripts/work-item-memory.mjs <work-item-id>
|
|
107
|
+
```
|
|
108
|
+
|
|
104
109
|
```bash
|
|
105
110
|
rm {USER_HOME}/.claude/fixit.marker
|
|
106
111
|
```
|