@ulysses-ai/create-workspace 0.13.0-beta.2 → 0.14.0-beta.3

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 (33) hide show
  1. package/README.md +15 -3
  2. package/package.json +1 -1
  3. package/template/.claude/hooks/_bash-output-advisory.test.mjs +88 -0
  4. package/template/.claude/hooks/bash-output-advisory.mjs +77 -0
  5. package/template/.claude/hooks/version-freshness-check.mjs +30 -0
  6. package/template/.claude/lib/freshness.mjs +75 -0
  7. package/template/.claude/lib/freshness.test.mjs +175 -0
  8. package/template/.claude/lib/registry-check.mjs +106 -0
  9. package/template/.claude/lib/registry-check.test.mjs +130 -0
  10. package/template/.claude/rules/memory-guidance.md +47 -0
  11. package/template/.claude/rules/task-list-mirroring.md +69 -0
  12. package/template/.claude/rules/token-economics.md.skip +23 -8
  13. package/template/.claude/rules/workspace-structure.md +2 -0
  14. package/template/.claude/scripts/build-shared-context-index.mjs +212 -0
  15. package/template/.claude/scripts/build-shared-context-index.test.mjs +318 -0
  16. package/template/.claude/scripts/migrate-claude-md-freshness-include.mjs +30 -0
  17. package/template/.claude/scripts/migrate-claude-md-freshness-include.test.mjs +54 -0
  18. package/template/.claude/scripts/sync-tasks.mjs +234 -0
  19. package/template/.claude/scripts/sync-tasks.test.mjs +350 -0
  20. package/template/.claude/settings.json +20 -9
  21. package/template/.claude/skills/braindump/SKILL.md +15 -0
  22. package/template/.claude/skills/build-docs-site/SKILL.md +1 -1
  23. package/template/.claude/skills/build-docs-site/checklists/pitfalls.md +4 -4
  24. package/template/.claude/skills/complete-work/SKILL.md +47 -55
  25. package/template/.claude/skills/handoff/SKILL.md +15 -0
  26. package/template/.claude/skills/maintenance/SKILL.md +49 -7
  27. package/template/.claude/skills/pause-work/SKILL.md +25 -4
  28. package/template/.claude/skills/release/SKILL.md +59 -43
  29. package/template/.claude/skills/start-work/SKILL.md +34 -2
  30. package/template/.claude/skills/workspace-update/SKILL.md +16 -0
  31. package/template/CLAUDE.md.tmpl +1 -0
  32. package/template/_gitignore +2 -3
  33. package/template/workspace.json.tmpl +1 -0
@@ -11,6 +11,7 @@ This is a claude-workspace. All conventions are defined in .claude/rules/.
11
11
 
12
12
  ## Workspace Config
13
13
  @workspace.json
14
+ @local-only-template-freshness.md
14
15
 
15
16
  ## Team Knowledge (always loaded)
16
17
  @shared-context/locked/
@@ -16,9 +16,8 @@ workspace-scratchpad/
16
16
  .claude/settings.local.json
17
17
  .claude/.active-session.json
18
18
 
19
- # Local-only convention (rules, context)
20
- .claude/rules/local-only-*
21
- shared-context/**/local-only-*
19
+ # Local-only convention — machine-local state, any depth
20
+ local-only-*
22
21
 
23
22
  # IDE
24
23
  .idea/
@@ -2,6 +2,7 @@
2
2
  "workspace": {
3
3
  "name": "{{project-name}}",
4
4
  "templateVersion": "0.0.0",
5
+ "versionCheck": { "ambient": true },
5
6
  "scratchpadDir": "workspace-scratchpad",
6
7
  "workSessionsDir": "work-sessions",
7
8
  "sharedContextDir": "shared-context",