prjct-cli 0.35.3 → 0.36.1

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 (68) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/README.md +63 -618
  3. package/bin/prjct.ts +116 -17
  4. package/core/cli/start.ts +387 -0
  5. package/core/commands/analysis.ts +58 -32
  6. package/core/commands/command-data.ts +11 -50
  7. package/core/commands/commands.ts +18 -21
  8. package/core/commands/context.ts +238 -0
  9. package/core/commands/register.ts +7 -5
  10. package/core/commands/setup.ts +1 -17
  11. package/core/index.ts +103 -39
  12. package/core/infrastructure/ai-provider.ts +312 -0
  13. package/core/infrastructure/command-installer.ts +49 -5
  14. package/core/infrastructure/editors-config.ts +20 -6
  15. package/core/infrastructure/setup.ts +227 -62
  16. package/core/services/index.ts +2 -0
  17. package/core/services/skill-service.ts +52 -16
  18. package/core/services/sync-service.ts +1080 -0
  19. package/core/types/commands.ts +0 -12
  20. package/core/types/index.ts +12 -1
  21. package/core/types/provider.ts +110 -0
  22. package/core/utils/branding.ts +20 -3
  23. package/dist/bin/prjct.mjs +1053 -1426
  24. package/dist/core/infrastructure/command-installer.js +33 -2
  25. package/dist/core/infrastructure/editors-config.js +13 -3
  26. package/dist/core/infrastructure/setup.js +293 -73
  27. package/package.json +10 -16
  28. package/scripts/postinstall.js +17 -119
  29. package/templates/agentic/agent-routing.md +22 -88
  30. package/templates/agentic/agents/uxui.md +42 -197
  31. package/templates/agentic/context-filtering.md +14 -56
  32. package/templates/agentic/orchestrator.md +26 -302
  33. package/templates/agentic/skill-integration.md +37 -289
  34. package/templates/agentic/subagent-generation.md +31 -104
  35. package/templates/agentic/task-fragmentation.md +39 -273
  36. package/templates/agents/AGENTS.md +33 -181
  37. package/templates/commands/bug.md +22 -520
  38. package/templates/commands/dash.md +26 -161
  39. package/templates/commands/done.md +19 -250
  40. package/templates/commands/enrich.md +21 -732
  41. package/templates/commands/idea.md +18 -160
  42. package/templates/commands/init.md +20 -209
  43. package/templates/commands/merge.md +21 -185
  44. package/templates/commands/next.md +21 -103
  45. package/templates/commands/p.md +1 -1
  46. package/templates/commands/p.toml +37 -0
  47. package/templates/commands/pause.md +21 -272
  48. package/templates/commands/resume.md +18 -411
  49. package/templates/commands/setup.md +0 -1
  50. package/templates/commands/ship.md +30 -627
  51. package/templates/commands/sync.md +11 -1448
  52. package/templates/commands/task.md +17 -439
  53. package/templates/commands/test.md +30 -259
  54. package/templates/global/CLAUDE.md +33 -1
  55. package/templates/global/GEMINI.md +265 -0
  56. package/templates/global/STORAGE-SPEC.md +256 -0
  57. package/templates/global/docs/agents.md +88 -0
  58. package/templates/global/docs/architecture.md +103 -0
  59. package/templates/global/docs/commands.md +96 -0
  60. package/templates/global/docs/validation.md +95 -0
  61. package/CLAUDE.md +0 -211
  62. package/packages/shared/package.json +0 -29
  63. package/packages/shared/src/index.ts +0 -10
  64. package/packages/shared/src/schemas.ts +0 -124
  65. package/packages/shared/src/types.ts +0 -187
  66. package/packages/shared/src/unified.ts +0 -174
  67. package/packages/shared/src/utils.ts +0 -148
  68. package/packages/shared/tsconfig.json +0 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.36.1] - 2026-01-23
4
+
5
+ ### Docs: Minimal README
6
+
7
+ Rewrote README from 645 lines to 100 lines. Clean, minimal, multi-platform focused.
8
+
9
+ ---
10
+
11
+ ## [0.36.0] - 2026-01-23
12
+
13
+ ### Feature: Dual Platform Support - Claude + Gemini (PRJ-62)
14
+
15
+ prjct now works with **both Claude Code and Gemini CLI** simultaneously. Use prjct with whichever AI coding agent you prefer.
16
+
17
+ **New Branding:**
18
+ - Tagline: "Context layer for AI agents"
19
+ - Works with Claude Code, Gemini CLI, and more
20
+
21
+ **Dual Provider Support:**
22
+ - Auto-detect installed providers (Claude, Gemini, or both)
23
+ - `prjct start` - Interactive setup for provider configuration
24
+ - Install routers to both `~/.claude/commands/p.md` and `~/.gemini/commands/p.toml`
25
+ - Shared storage format for cross-agent compatibility
26
+
27
+ **New Files:**
28
+ - `templates/global/GEMINI.md` - Gemini CLI global instructions
29
+ - `templates/commands/p.toml` - Gemini CLI router
30
+ - `templates/global/STORAGE-SPEC.md` - Canonical storage specification
31
+ - `core/infrastructure/ai-provider.ts` - Multi-provider detection
32
+ - `core/cli/start.ts` - Beautiful interactive setup UI
33
+
34
+ **Improved CLI:**
35
+ - `prjct --version` - Shows provider status with versions
36
+ - `prjct --help` - Actually useful help with quick start guide
37
+ - `prjct start` - Gorgeous ASCII art welcome screen
38
+
39
+ **Storage Compatibility:**
40
+ - Cross-agent JSON formatting rules
41
+ - Identical storage output from Claude and Gemini
42
+ - Ready for future remote sync to prjct.app
43
+
44
+ ---
45
+
3
46
  ## [0.35.2] - 2026-01-17
4
47
 
5
48
  ### Fix: CLI Workflow Now Uses CommandExecutor