minutework 0.1.15 → 0.1.17

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 (43) hide show
  1. package/EXTERNAL_ALPHA.md +3 -1
  2. package/README.md +4 -2
  3. package/assets/claude-local/CLAUDE.md.template +60 -18
  4. package/assets/claude-local/skills/README.md +13 -7
  5. package/assets/claude-local/skills/{ai-capability-defaults.md → ai-capability-defaults/SKILL.md} +11 -2
  6. package/assets/claude-local/skills/{app-pack-authoring.md → app-pack-authoring/SKILL.md} +17 -0
  7. package/assets/claude-local/skills/{capability-gap-reporting.md → capability-gap-reporting/SKILL.md} +5 -0
  8. package/assets/claude-local/skills/{content-structure-and-sections.md → content-structure-and-sections/SKILL.md} +5 -0
  9. package/assets/claude-local/skills/contract-first-public-intake/SKILL.md +71 -0
  10. package/assets/claude-local/skills/{email-ingress-and-thread-routing.md → email-ingress-and-thread-routing/SKILL.md} +19 -5
  11. package/assets/claude-local/skills/{event-bus.md → event-bus/SKILL.md} +5 -0
  12. package/assets/claude-local/skills/{generated-workspace-architecture.md → generated-workspace-architecture/SKILL.md} +5 -0
  13. package/assets/claude-local/skills/{layering-and-import-modes.md → layering-and-import-modes/SKILL.md} +13 -1
  14. package/assets/claude-local/skills/{ontology-mapping.md → ontology-mapping/SKILL.md} +5 -0
  15. package/assets/claude-local/skills/openclaw-skill-importer/SKILL.md +23 -0
  16. package/assets/claude-local/skills/published-web-and-mw-core-site/SKILL.md +66 -0
  17. package/assets/claude-local/skills/{runtime-capability-inventory.md → runtime-capability-inventory/SKILL.md} +26 -0
  18. package/assets/claude-local/skills/schema-engine/SKILL.md +34 -0
  19. package/assets/claude-local/skills/{secrets-runtime-bridge.md → secrets-runtime-bridge/SKILL.md} +5 -0
  20. package/assets/claude-local/skills/{shadow-participation-and-guest-threads.md → shadow-participation-and-guest-threads/SKILL.md} +18 -4
  21. package/assets/claude-local/skills/{shell-architecture.md → shell-architecture/SKILL.md} +5 -0
  22. package/assets/claude-local/skills/{sidecar-generation.md → sidecar-generation/SKILL.md} +5 -0
  23. package/assets/claude-local/skills/workspace-guidance-refresh/SKILL.md +25 -0
  24. package/assets/templates/fastapi-sidecar/README.md +1 -1
  25. package/assets/templates/fastapi-sidecar/template.schema.json +4 -1
  26. package/assets/templates/fastapi-sidecar/tests/test_materialization.py +1 -1
  27. package/assets/templates/fastapi-sidecar/tests/test_template_contract.py +1 -0
  28. package/assets/templates/next-tenant-app/README.md +13 -2
  29. package/assets/templates/next-tenant-app/src/lib/content/adapter.server.test.ts +24 -0
  30. package/assets/templates/next-tenant-app/src/lib/content/contracts.ts +3 -2
  31. package/assets/templates/next-tenant-app/src/lib/content/release-manifest.test.ts +23 -0
  32. package/assets/templates/next-tenant-app/src/lib/content/release-manifest.ts +17 -0
  33. package/assets/templates/next-tenant-app/template.schema.json +4 -1
  34. package/assets/templates/next-tenant-app/tools/template/with-public-site-fixture.mjs +1 -1
  35. package/dist/init.js +0 -3
  36. package/dist/init.js.map +1 -1
  37. package/dist/sandbox.js +29 -3
  38. package/dist/sandbox.js.map +1 -1
  39. package/package.json +17 -16
  40. package/vendor/workspace-mcp/cli.js +0 -0
  41. package/assets/claude-local/skills/openclaw-skill-importer.md +0 -7
  42. package/assets/claude-local/skills/published-web-and-mw-core-site.md +0 -17
  43. package/assets/claude-local/skills/schema-engine.md +0 -12
@@ -1,17 +0,0 @@
1
- # Published Web And mw.core.site
2
-
3
- Use this skill when the request touches public-site delivery, published-web
4
- flows, or the default MinuteWork site model.
5
-
6
- - Treat `mw.core.site` as a runtime baseline capability that already exists.
7
- - `tenant-app` is the combined web starter for public routes plus the private
8
- `/app` workspace.
9
- - Author public content against runtime/CMS records, not a fixed in-repo site
10
- starter.
11
- - Use `published-web` and hosted public-release flows for anonymous delivery.
12
- - `MW_CONTENT_API_TOKEN`, `MW_PUBLIC_SITE_PROPERTY_KEY`, and
13
- `MW_PUBLIC_SITE_ENV` are the standard site env variables.
14
- - `MW_PUBLIC_SITE_ENV=preview` is for preview or draft-safe reads.
15
- - `MW_PUBLIC_SITE_ENV=live` is for publication-safe reads only.
16
- - Anonymous live traffic should prefer published snapshots instead of direct
17
- runtime reads on every request.
@@ -1,12 +0,0 @@
1
- # Schema Engine
2
-
3
- Use this skill when the request needs tenant-defined data structures.
4
-
5
- - Define tenant data in `schemas/schema.ts` or `schema.mw`, not ad hoc Django tables.
6
- - Prefer declarative schema changes before adding custom code surfaces.
7
- - Index only the fields that need query/filter behavior.
8
- - Treat runtime-backed content as the authoring source; publish safe snapshots for anonymous public delivery.
9
- - Treat `mw.core.site` as already present in the runtime baseline.
10
- - Keep `content_structure` open and ordered. Extend the baseline through
11
- adjacent schemas or extension packs instead of hard-coding a fixed page
12
- template into the schema layer.