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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toga-ai",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "TOGA Technology Team Claude Knowledge System — shared AI coding harness with skills, knowledge base CLI, and project installer for Claude Code.",
5
5
  "keywords": [
6
6
  "claude",
@@ -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
- Use `AUTHOR_USERNAME` for `owners` in every doc you write: `owners: ["<AUTHOR_USERNAME>"]`.
90
- When updating an existing doc that already lists owners, **add** `AUTHOR_USERNAME` if it is
91
- not already present (do not replace the existing owners). If an existing doc has an empty
92
- or missing `owners`, fill it with `AUTHOR_USERNAME`.
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