openwriter 0.35.0 → 0.35.2

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.
Files changed (31) hide show
  1. package/dist/plugins/authors-voice/package.json +24 -23
  2. package/dist/plugins/authors-voice/skill/LICENSE +21 -0
  3. package/dist/plugins/authors-voice/skill/README.md +126 -0
  4. package/dist/plugins/authors-voice/skill/SKILL.md +151 -0
  5. package/dist/plugins/authors-voice/skill/catalog/ai-tells.md +144 -0
  6. package/dist/plugins/authors-voice/skill/catalog/anchor-prompt.md +189 -0
  7. package/dist/plugins/authors-voice/skill/catalog/author-hints.md +119 -0
  8. package/dist/plugins/authors-voice/skill/catalog/fingerprints.md +175 -0
  9. package/dist/plugins/authors-voice/skill/catalog/hurdle.md +76 -0
  10. package/dist/plugins/authors-voice/skill/catalog/post-write-audit.md +105 -0
  11. package/dist/plugins/authors-voice/skill/docs/analysis.md +31 -0
  12. package/dist/plugins/authors-voice/skill/docs/anchor-iteration.md +176 -0
  13. package/dist/plugins/authors-voice/skill/docs/api/import.md +78 -0
  14. package/dist/plugins/authors-voice/skill/docs/api/protocol.md +140 -0
  15. package/dist/plugins/authors-voice/skill/docs/api/setup.md +37 -0
  16. package/dist/plugins/authors-voice/skill/docs/api/tools.md +102 -0
  17. package/dist/plugins/authors-voice/skill/docs/api/troubleshooting.md +7 -0
  18. package/dist/plugins/authors-voice/skill/docs/apply-protocol-deep.md +191 -0
  19. package/dist/plugins/authors-voice/skill/docs/context-hygiene.md +33 -0
  20. package/dist/plugins/authors-voice/skill/docs/setup.md +74 -0
  21. package/dist/plugins/authors-voice/skill/docs/tiers.md +13 -0
  22. package/dist/plugins/authors-voice/skill/package.json +35 -0
  23. package/dist/plugins/authors-voice/skill/prompts/skeleton.md +29 -0
  24. package/dist/plugins/authors-voice/skill/voice/README.md +51 -0
  25. package/dist/plugins/authors-voice/skill/voice/corpus/.gitkeep +0 -0
  26. package/dist/plugins/github/dist/blog-tools.js +2 -2
  27. package/package.json +1 -1
  28. package/skill/SKILL.md +18 -6
  29. package/skill/agents/openwriter-enrichment-minion.md +4 -4
  30. package/skill/agents/openwriter-sort-minion.md +5 -5
  31. package/skill/docs/enrichment.md +3 -3
@@ -132,16 +132,16 @@ see them — they're on disk. Brevity matters.
132
132
 
133
133
  ## Worked example
134
134
 
135
- Input: dirty doc titled "Sexual Dimorphism — Master Reference", body
136
- covering the T-gate mechanism, tournament-vs-pairbonding contrast, contest
137
- mosaic theory, dimorphic trait inventory.
135
+ Input: dirty doc titled "Sleep Pressure — Master Reference", body
136
+ covering the adenosine mechanism, caffeine-vs-sleep-debt contrast, the
137
+ two-process model, circadian trait inventory.
138
138
 
139
139
  Output:
140
140
 
141
141
  ```json
142
142
  {
143
143
  "docId": "b88ede9b",
144
- "logline": "T-gate mechanism, dimorphic trait inventory, and the contest-vs-pairbonding selection contrast."
144
+ "logline": "Adenosine mechanism, circadian trait inventory, and the caffeine-vs-sleep-debt contrast."
145
145
  }
146
146
  ```
147
147
 
@@ -166,19 +166,19 @@ matters.
166
166
 
167
167
  ## Worked example
168
168
 
169
- Pending: doc "CalorieBot is the easiest way to track calories" (unfiled).
170
- Workspaces: `paybot-350b05a1.json` (logline: "PayBot product docs +
169
+ Pending: doc "RecipeBox is the easiest way to plan your meals" (unfiled).
170
+ Workspaces: `recipebox-350b05a1.json` (logline: "RecipeBox product docs +
171
171
  marketing"), `book-fatherhood.json` (logline: "Fatherhood book chapters").
172
172
 
173
173
  Read the body → it's product marketing copy for a calorie-tracking app.
174
- Best match: `paybot-350b05a1.json`, container "Marketing" (purpose: "landing
174
+ Best match: `recipebox-350b05a1.json`, container "Marketing" (purpose: "landing
175
175
  + launch copy").
176
176
 
177
177
  ```
178
- move_item({ type: "doc", workspaceFile: "paybot-350b05a1.json", itemId: "bb4f6c46", targetContainerId: "<marketing-container-id>" })
178
+ move_item({ type: "doc", workspaceFile: "recipebox-350b05a1.json", itemId: "bb4f6c46", targetContainerId: "<marketing-container-id>" })
179
179
  mark_sorted({ docs: [{ docId: "bb4f6c46" }] })
180
180
  ```
181
181
 
182
- Report: `Filed 1 doc: "CalorieBot is the easiest way…" → PayBot / Marketing.`
182
+ Report: `Filed 1 doc: "RecipeBox is the easiest way…" → RecipeBox / Marketing.`
183
183
 
184
184
  Run the procedure. File the docs. Return the summary. Exit.
@@ -68,9 +68,9 @@ Example prompt for one chunk (v0.19.0 — logline-only):
68
68
  ```
69
69
  Enrich these specific openwriter docs:
70
70
 
71
- - a1b2c3d4 — Frame Holding Master Reference
72
- - e5f6a7b8 — Tournament Male
73
- - 9z8y7x6w — Contest Mosaic Theory
71
+ - a1b2c3d4 — Onboarding Email Sequence
72
+ - e5f6a7b8 — Why We Sleep — Ch 2 Notes
73
+ - 9z8y7x6w — Product Launch Checklist
74
74
  - 1q2w3e4r — Ch 3 — Beats
75
75
  - 5t6y7u8i — Ch 4 — Draft
76
76