prjct-cli 1.45.5 → 1.45.6

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 (136) hide show
  1. package/CHANGELOG.md +23 -4
  2. package/dist/bin/prjct-core.mjs +124 -124
  3. package/dist/cli/jira.mjs +1 -1
  4. package/dist/cli/linear.mjs +1 -1
  5. package/dist/templates.json +1 -1
  6. package/package.json +2 -1
  7. package/templates/agentic/agent-routing.md +45 -0
  8. package/templates/agentic/agents/uxui.md +63 -0
  9. package/templates/agentic/checklist-routing.md +98 -0
  10. package/templates/agentic/orchestrator.md +68 -0
  11. package/templates/agentic/task-fragmentation.md +89 -0
  12. package/templates/agents/AGENTS.md +67 -0
  13. package/templates/analysis/analyze.md +84 -0
  14. package/templates/analysis/patterns.md +60 -0
  15. package/templates/antigravity/SKILL.md +39 -0
  16. package/templates/architect/discovery.md +67 -0
  17. package/templates/architect/phases.md +59 -0
  18. package/templates/baseline/anti-patterns/nextjs.json +18 -0
  19. package/templates/baseline/anti-patterns/react.json +18 -0
  20. package/templates/baseline/anti-patterns/typescript.json +18 -0
  21. package/templates/baseline/patterns/nextjs.json +18 -0
  22. package/templates/baseline/patterns/react.json +18 -0
  23. package/templates/baseline/patterns/typescript.json +18 -0
  24. package/templates/checklists/architecture.md +28 -0
  25. package/templates/checklists/code-quality.md +28 -0
  26. package/templates/checklists/data.md +33 -0
  27. package/templates/checklists/documentation.md +33 -0
  28. package/templates/checklists/infrastructure.md +33 -0
  29. package/templates/checklists/performance.md +33 -0
  30. package/templates/checklists/security.md +33 -0
  31. package/templates/checklists/testing.md +33 -0
  32. package/templates/checklists/ux-ui.md +37 -0
  33. package/templates/codex/SKILL.md +36 -0
  34. package/templates/commands/analyze.md +11 -0
  35. package/templates/commands/auth.md +15 -0
  36. package/templates/commands/bug.md +28 -0
  37. package/templates/commands/cleanup.md +11 -0
  38. package/templates/commands/dash.md +16 -0
  39. package/templates/commands/design.md +11 -0
  40. package/templates/commands/done.md +33 -0
  41. package/templates/commands/enrich.md +20 -0
  42. package/templates/commands/git.md +17 -0
  43. package/templates/commands/history.md +13 -0
  44. package/templates/commands/idea.md +13 -0
  45. package/templates/commands/impact.md +13 -0
  46. package/templates/commands/init.md +11 -0
  47. package/templates/commands/jira.md +88 -0
  48. package/templates/commands/learnings.md +11 -0
  49. package/templates/commands/linear.md +82 -0
  50. package/templates/commands/merge.md +25 -0
  51. package/templates/commands/next.md +12 -0
  52. package/templates/commands/p.md +62 -0
  53. package/templates/commands/p.toml +37 -0
  54. package/templates/commands/pause.md +16 -0
  55. package/templates/commands/plan.md +13 -0
  56. package/templates/commands/prd.md +21 -0
  57. package/templates/commands/resume.md +12 -0
  58. package/templates/commands/review.md +20 -0
  59. package/templates/commands/serve.md +11 -0
  60. package/templates/commands/sessions.md +13 -0
  61. package/templates/commands/setup.md +11 -0
  62. package/templates/commands/ship.md +46 -0
  63. package/templates/commands/skill.md +13 -0
  64. package/templates/commands/spec.md +20 -0
  65. package/templates/commands/status.md +11 -0
  66. package/templates/commands/sync.md +23 -0
  67. package/templates/commands/task.md +52 -0
  68. package/templates/commands/test.md +22 -0
  69. package/templates/commands/update.md +11 -0
  70. package/templates/commands/verify.md +11 -0
  71. package/templates/commands/workflow.md +69 -0
  72. package/templates/config/skill-mappings.json +82 -0
  73. package/templates/context/dashboard.md +251 -0
  74. package/templates/context/roadmap.md +221 -0
  75. package/templates/cursor/commands/bug.md +8 -0
  76. package/templates/cursor/commands/done.md +4 -0
  77. package/templates/cursor/commands/pause.md +6 -0
  78. package/templates/cursor/commands/resume.md +4 -0
  79. package/templates/cursor/commands/ship.md +8 -0
  80. package/templates/cursor/commands/sync.md +4 -0
  81. package/templates/cursor/commands/task.md +8 -0
  82. package/templates/cursor/p.md +29 -0
  83. package/templates/cursor/router.mdc +28 -0
  84. package/templates/design/api.md +95 -0
  85. package/templates/design/architecture.md +77 -0
  86. package/templates/design/component.md +89 -0
  87. package/templates/design/database.md +78 -0
  88. package/templates/design/flow.md +94 -0
  89. package/templates/global/ANTIGRAVITY.md +17 -0
  90. package/templates/global/CLAUDE.md +20 -0
  91. package/templates/global/CURSOR.mdc +20 -0
  92. package/templates/global/GEMINI.md +17 -0
  93. package/templates/global/STORAGE-SPEC.md +328 -0
  94. package/templates/global/WINDSURF.md +22 -0
  95. package/templates/global/modules/CLAUDE-commands.md +1 -0
  96. package/templates/global/modules/CLAUDE-core.md +16 -0
  97. package/templates/global/modules/CLAUDE-git.md +1 -0
  98. package/templates/global/modules/CLAUDE-intelligence.md +1 -0
  99. package/templates/global/modules/CLAUDE-storage.md +1 -0
  100. package/templates/global/modules/module-config.json +12 -0
  101. package/templates/mcp-config.json +29 -0
  102. package/templates/permissions/default.jsonc +60 -0
  103. package/templates/permissions/permissive.jsonc +49 -0
  104. package/templates/permissions/strict.jsonc +58 -0
  105. package/templates/planning-methodology.md +195 -0
  106. package/templates/skills/code-review.md +47 -0
  107. package/templates/skills/debug.md +61 -0
  108. package/templates/skills/refactor.md +47 -0
  109. package/templates/subagents/agent-base.md +21 -0
  110. package/templates/subagents/domain/backend.md +109 -0
  111. package/templates/subagents/domain/database.md +121 -0
  112. package/templates/subagents/domain/devops.md +152 -0
  113. package/templates/subagents/domain/frontend.md +103 -0
  114. package/templates/subagents/domain/testing.md +169 -0
  115. package/templates/subagents/pm-expert.md +366 -0
  116. package/templates/subagents/workflow/chief-architect.md +653 -0
  117. package/templates/subagents/workflow/prjct-planner.md +120 -0
  118. package/templates/subagents/workflow/prjct-shipper.md +175 -0
  119. package/templates/subagents/workflow/prjct-workflow.md +82 -0
  120. package/templates/tools/bash.txt +22 -0
  121. package/templates/tools/edit.txt +18 -0
  122. package/templates/tools/glob.txt +19 -0
  123. package/templates/tools/grep.txt +21 -0
  124. package/templates/tools/read.txt +14 -0
  125. package/templates/tools/task.txt +20 -0
  126. package/templates/tools/webfetch.txt +16 -0
  127. package/templates/tools/websearch.txt +18 -0
  128. package/templates/tools/write.txt +17 -0
  129. package/templates/windsurf/router.md +28 -0
  130. package/templates/windsurf/workflows/bug.md +8 -0
  131. package/templates/windsurf/workflows/done.md +4 -0
  132. package/templates/windsurf/workflows/pause.md +4 -0
  133. package/templates/windsurf/workflows/resume.md +4 -0
  134. package/templates/windsurf/workflows/ship.md +8 -0
  135. package/templates/windsurf/workflows/sync.md +4 -0
  136. package/templates/windsurf/workflows/task.md +8 -0
package/CHANGELOG.md CHANGED
@@ -1,17 +1,36 @@
1
1
  # Changelog
2
2
 
3
- ## [1.45.5] - 2026-02-17
3
+ ## [1.45.6] - 2026-02-17
4
4
 
5
5
  ### Bug Fixes
6
6
 
7
- - provider cache crash, MCP tool access, legacy cleanup (#215)
7
+ - multi-provider MCP setup + OAuth status fix (v1.45.9) (#216)
8
+
9
+
10
+ ## [1.45.11] - 2026-02-16
8
11
 
12
+ ### Added
13
+ - fix: include templates/ in npm package files — templates missing from published package
14
+
15
+ ## [1.45.10] - 2026-02-16
16
+
17
+ ### Added
18
+ - fix: include templates/ in npm package files — templates missing from published package
19
+
20
+ ## [1.45.9] - 2026-02-16
21
+
22
+ ### Added
23
+ - multi-provider MCP setup + OAuth status fix
9
24
 
10
25
  ## [1.45.8] - 2026-02-16
11
26
 
12
- ### Bug Fixes
27
+ ### Added
28
+ - fix provider cache crash and MCP tool access
29
+
30
+ ## [1.45.7] - 2026-02-16
13
31
 
14
- - Provider cache crash on missing codex key; router allowed-tools: ["*"] for MCP access; legacy p/ dir cleanup
32
+ ### Added
33
+ - fix provider cache crash and MCP tool access
15
34
 
16
35
  ## [1.45.6] - 2026-02-17
17
36