toga-ai 1.0.39 → 1.0.40
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 +1 -1
- package/skills/capture/SKILL.md +10 -4
package/package.json
CHANGED
package/skills/capture/SKILL.md
CHANGED
|
@@ -86,10 +86,16 @@ every doc in this capture — call the result `AUTHOR_USERNAME`:
|
|
|
86
86
|
3. **Persist it** to Claude memory as a `user` memory named `author-username` (and add its
|
|
87
87
|
`MEMORY.md` pointer) so future captures never ask again.
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
89
|
+
`owners` is a **list of everyone who has worked on the doc — it may hold several names**,
|
|
90
|
+
not just one. Always include `AUTHOR_USERNAME`, and treat the field as cumulative:
|
|
91
|
+
|
|
92
|
+
- **New doc:** start `owners` with `["<AUTHOR_USERNAME>"]`.
|
|
93
|
+
- **Existing doc:** **union** — keep all existing owners and add `AUTHOR_USERNAME` if not
|
|
94
|
+
already present. Never replace or drop an existing owner.
|
|
95
|
+
- **Co-authors:** if more than one person worked on this feature (e.g. pairing, or a handoff
|
|
96
|
+
this session), ask "Anyone else who should be listed as an owner? (usernames, comma-separated,
|
|
97
|
+
same first-initial+last-name convention)" and add each — deduplicated, lowercase — to the list.
|
|
98
|
+
- Never leave `owners` empty.
|
|
93
99
|
|
|
94
100
|
## Step 2 — Determine framework / repo / project (ask if unknown)
|
|
95
101
|
|