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.
- package/dist/plugins/authors-voice/package.json +24 -23
- package/dist/plugins/authors-voice/skill/LICENSE +21 -0
- package/dist/plugins/authors-voice/skill/README.md +126 -0
- package/dist/plugins/authors-voice/skill/SKILL.md +151 -0
- package/dist/plugins/authors-voice/skill/catalog/ai-tells.md +144 -0
- package/dist/plugins/authors-voice/skill/catalog/anchor-prompt.md +189 -0
- package/dist/plugins/authors-voice/skill/catalog/author-hints.md +119 -0
- package/dist/plugins/authors-voice/skill/catalog/fingerprints.md +175 -0
- package/dist/plugins/authors-voice/skill/catalog/hurdle.md +76 -0
- package/dist/plugins/authors-voice/skill/catalog/post-write-audit.md +105 -0
- package/dist/plugins/authors-voice/skill/docs/analysis.md +31 -0
- package/dist/plugins/authors-voice/skill/docs/anchor-iteration.md +176 -0
- package/dist/plugins/authors-voice/skill/docs/api/import.md +78 -0
- package/dist/plugins/authors-voice/skill/docs/api/protocol.md +140 -0
- package/dist/plugins/authors-voice/skill/docs/api/setup.md +37 -0
- package/dist/plugins/authors-voice/skill/docs/api/tools.md +102 -0
- package/dist/plugins/authors-voice/skill/docs/api/troubleshooting.md +7 -0
- package/dist/plugins/authors-voice/skill/docs/apply-protocol-deep.md +191 -0
- package/dist/plugins/authors-voice/skill/docs/context-hygiene.md +33 -0
- package/dist/plugins/authors-voice/skill/docs/setup.md +74 -0
- package/dist/plugins/authors-voice/skill/docs/tiers.md +13 -0
- package/dist/plugins/authors-voice/skill/package.json +35 -0
- package/dist/plugins/authors-voice/skill/prompts/skeleton.md +29 -0
- package/dist/plugins/authors-voice/skill/voice/README.md +51 -0
- package/dist/plugins/authors-voice/skill/voice/corpus/.gitkeep +0 -0
- package/dist/plugins/github/dist/blog-tools.js +2 -2
- package/package.json +1 -1
- package/skill/SKILL.md +18 -6
- package/skill/agents/openwriter-enrichment-minion.md +4 -4
- package/skill/agents/openwriter-sort-minion.md +5 -5
- 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 "
|
|
136
|
-
covering the
|
|
137
|
-
|
|
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": "
|
|
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 "
|
|
170
|
-
Workspaces: `
|
|
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: `
|
|
174
|
+
Best match: `recipebox-350b05a1.json`, container "Marketing" (purpose: "landing
|
|
175
175
|
+ launch copy").
|
|
176
176
|
|
|
177
177
|
```
|
|
178
|
-
move_item({ type: "doc", workspaceFile: "
|
|
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: "
|
|
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.
|
package/skill/docs/enrichment.md
CHANGED
|
@@ -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 —
|
|
72
|
-
- e5f6a7b8 —
|
|
73
|
-
- 9z8y7x6w —
|
|
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
|
|