howone 0.2.0 → 0.2.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 (34) hide show
  1. package/bin/index.mjs +1 -1
  2. package/package.json +1 -1
  3. package/templates/vite/.howone/skills/howone/01-architect/01-app-generation.md +19 -16
  4. package/templates/vite/.howone/skills/howone/03-ai-capabilities/01-ai-capability-architecture.md +14 -24
  5. package/templates/vite/.howone/skills/howone/03-ai-capabilities/02-workflow-contract-rules.md +0 -107
  6. package/templates/vite/.howone/skills/howone/03-ai-capabilities/03-service-capability-catalog.md +26 -101
  7. package/templates/vite/.howone/skills/howone/03-ai-capabilities/04-workflow-operations.md +23 -17
  8. package/templates/vite/.howone/skills/howone/03-ai-capabilities/05-ai-feature-playbooks.md +1 -66
  9. package/templates/vite/.howone/skills/howone/SKILL.md +5 -4
  10. package/templates/vite/.howone/skills/design-taste-frontend/SKILL.md +0 -1206
  11. package/templates/vite/.howone/skills/web-clone/LICENSE +0 -21
  12. package/templates/vite/.howone/skills/web-clone/README.md +0 -179
  13. package/templates/vite/.howone/skills/web-clone/SKILL.md +0 -243
  14. package/templates/vite/.howone/skills/web-clone/references/assessment.md +0 -77
  15. package/templates/vite/.howone/skills/web-clone/references/complex-playbooks.md +0 -46
  16. package/templates/vite/.howone/skills/web-clone/references/deliverables.md +0 -144
  17. package/templates/vite/.howone/skills/web-clone/references/design-dna.md +0 -125
  18. package/templates/vite/.howone/skills/web-clone/references/effect-extraction.md +0 -73
  19. package/templates/vite/.howone/skills/web-clone/references/marbles-case.md +0 -31
  20. package/templates/vite/.howone/skills/web-clone/references/reverse-engineering.md +0 -34
  21. package/templates/vite/.howone/skills/web-clone/references/static-mirror.md +0 -72
  22. package/templates/vite/.howone/skills/web-clone/scripts/asset-harvest.mjs +0 -101
  23. package/templates/vite/.howone/skills/web-clone/scripts/audit-clone.mjs +0 -151
  24. package/templates/vite/.howone/skills/web-clone/scripts/compare-recon.mjs +0 -265
  25. package/templates/vite/.howone/skills/web-clone/scripts/dna-scaffold.mjs +0 -214
  26. package/templates/vite/.howone/skills/web-clone/scripts/init-clone.mjs +0 -136
  27. package/templates/vite/.howone/skills/web-clone/scripts/interaction-probe.mjs +0 -314
  28. package/templates/vite/.howone/skills/web-clone/scripts/lib/playwright-loader.mjs +0 -39
  29. package/templates/vite/.howone/skills/web-clone/scripts/mirror-site.mjs +0 -121
  30. package/templates/vite/.howone/skills/web-clone/scripts/network-capture.mjs +0 -127
  31. package/templates/vite/.howone/skills/web-clone/scripts/recon-site.mjs +0 -235
  32. package/templates/vite/.howone/skills/web-clone/scripts/route-crawl.mjs +0 -228
  33. package/templates/vite/.howone/skills/web-clone/scripts/sourcemap-hunt.mjs +0 -112
  34. package/templates/vite/.howone/skills/web-clone/scripts/visual-diff.mjs +0 -161
@@ -138,30 +138,6 @@ Rules:
138
138
  - output descriptions must specify language;
139
139
  - if user asks for latest/current, this workflow must retrieve data internally.
140
140
 
141
- ## Playbook: RSS Digest
142
-
143
- Use when the user provides or asks for a specific RSS feed URL and wants feed items, summaries, or
144
- a digest.
145
-
146
- Inputs:
147
-
148
- - `rss_url`;
149
- - optional `item_limit`;
150
- - optional `language`;
151
- - optional `summary_instruction`.
152
-
153
- Outputs:
154
-
155
- - `items` with title, URL, published date, and optional summary;
156
- - optional `digest` when the product needs a synthesized overview.
157
-
158
- Rules:
159
-
160
- - use RSS feed fetching only for explicit RSS URLs;
161
- - use web search/crawling for general latest news without an RSS URL;
162
- - do not treat RSS as arbitrary third-party API integration;
163
- - if users need saved feed history, persist items or digests through entities.
164
-
165
141
  ## Playbook: Stock Analysis
166
142
 
167
143
  Use for historical price analysis.
@@ -245,7 +221,7 @@ Output:
245
221
  Rules:
246
222
 
247
223
  - single speaker per call;
248
- - dialogue should generate multiple clips and concatenate audio files;
224
+ - dialogue should generate multiple clips and merge;
249
225
  - persist audio URL through entity if user needs library/history.
250
226
 
251
227
  ## Playbook: Video Generator
@@ -269,46 +245,6 @@ Rules:
269
245
  - for longer output, compose multiple clips and concatenate;
270
246
  - first-frame image helps consistency.
271
247
 
272
- ## Playbook: Video Frame Utility
273
-
274
- Use when the product needs a first frame and last frame from a video URL.
275
-
276
- Inputs:
277
-
278
- - `source_video_url`.
279
-
280
- Outputs:
281
-
282
- - `first_frame_image_url`;
283
- - `last_frame_image_url`.
284
-
285
- Rules:
286
-
287
- - use this only for first/last-frame extraction;
288
- - do not promise arbitrary frame-by-frame analysis or video editing;
289
- - persist extracted image URLs through entities if the app needs history.
290
-
291
- ## Playbook: File Creator / Modifier
292
-
293
- Use when the product needs to create or modify a supported file: text, PDF, DOCX, PPTX, or XLSX.
294
-
295
- Inputs:
296
-
297
- - `file_type`: txt, md, pdf, docx, pptx, or xlsx;
298
- - `content_or_instruction`;
299
- - optional `source_file_url` for modification.
300
-
301
- Output:
302
-
303
- - `file_url`.
304
-
305
- Rules:
306
-
307
- - create/modify supported file types only;
308
- - app uploads source files first and passes URLs;
309
- - do not use generated files as a database;
310
- - persist file URLs through entities if users need history, folders, sharing, or review.
311
-
312
248
  ## RAG Playbook
313
249
 
314
250
  Use only when app needs question answering over user/project documents.
@@ -334,7 +270,6 @@ Rules:
334
270
  - Verify capability exists in `03-service-capability-catalog.md`.
335
271
  - Use URL inputs for files/media.
336
272
  - Keep outputs minimal and product-facing.
337
- - Do not design streaming/realtime AI output.
338
273
  - Decide persistence separately.
339
274
  - Generate SDK bindings only after manifest sync and external workflow submit.
340
275
  - Use app-owned UI for progress/errors.
@@ -17,7 +17,7 @@ Load only the track needed for the user's request. Do not read SDK files while d
17
17
 
18
18
  Use this skill before work when any condition is true:
19
19
 
20
- - You need to decide whether HowOne can satisfy the user's request, whether it is app-owned, or whether the request needs clarification before handoff.
20
+ - You need to decide whether HowOne can satisfy the user's request, whether an explicit user-owned integration is outside platform contracts, or whether the request needs clarification before handoff.
21
21
  - The user asks for persisted app data, backend schema, entity fields, access, indexes, public pages, private history, or Mongo-backed records.
22
22
  - The user asks for HowOne AI behavior, capability contracts, workflow generation/update/status, or `external-ai`.
23
23
  - The work reads or writes `.howone/database/*`, `.howone/ai/*`, `src/lib/sdk.ts`, or app code using `@howone/sdk` / `howone.*`.
@@ -37,7 +37,7 @@ Classify the request before tool writes:
37
37
  | Add/change HowOne AI behavior | AI | `ai-capability-design`, `sync_ai_artifacts`, `external-ai-capability`, `03-ai-capabilities/*` |
38
38
  | Call HowOne from generated app code | SDK | `src/lib/sdk.ts`, synced manifests, `04-app-sdk/*` |
39
39
  | UI only, no HowOne data or AI | None | edit app code only |
40
- | User-owned external services | App-owned | integrate in app code/config; do not fake platform contracts |
40
+ | Explicit user-owned integrations | App-owned | only when the user explicitly asks to connect something outside HowOne; do not reclassify ordinary AI/data/auth app requests |
41
41
 
42
42
  If multiple tracks apply, process them in dependency order:
43
43
 
@@ -72,7 +72,8 @@ get_current_schema -> apply_schema_patch -> sync_schema_artifacts -> read .howon
72
72
  AI contract:
73
73
 
74
74
  ```text
75
- get_current_ai_capabilities -> apply_capability_patch -> sync_ai_artifacts -> external-ai-capability -> read .howone/ai/manifest.json
75
+ get_current_ai_capabilities -> apply_capability_patch -> sync_ai_artifacts -> external-ai-capability
76
+ -> wait for terminal result -> sync_ai_artifacts -> read .howone/ai/manifest.json
76
77
  ```
77
78
 
78
79
  No contract dry-run step. Normal generation applies one well-formed patch directly. For destructive,
@@ -144,5 +145,5 @@ read synced manifests -> update src/lib/sdk.ts -> implement UI/server code using
144
145
  - Backend and AI design references must not include SDK implementation work.
145
146
  - SDK references must not invent backend or AI contracts; they consume synced manifests.
146
147
  - AI workflows must not perform database CRUD; persistence is app code through entities.
147
- - User-owned infrastructure is app code, not a platform gap.
148
+ - Explicit user-owned integrations are app code, not a platform gap.
148
149
  - Platform gap means missing HowOne contract/tool/catalog support, not an unsupported technology name.