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.
- package/CHANGELOG.md +43 -0
- package/README.md +63 -618
- package/bin/prjct.ts +116 -17
- package/core/cli/start.ts +387 -0
- package/core/commands/analysis.ts +58 -32
- package/core/commands/command-data.ts +11 -50
- package/core/commands/commands.ts +18 -21
- package/core/commands/context.ts +238 -0
- package/core/commands/register.ts +7 -5
- package/core/commands/setup.ts +1 -17
- package/core/index.ts +103 -39
- package/core/infrastructure/ai-provider.ts +312 -0
- package/core/infrastructure/command-installer.ts +49 -5
- package/core/infrastructure/editors-config.ts +20 -6
- package/core/infrastructure/setup.ts +227 -62
- package/core/services/index.ts +2 -0
- package/core/services/skill-service.ts +52 -16
- package/core/services/sync-service.ts +1080 -0
- package/core/types/commands.ts +0 -12
- package/core/types/index.ts +12 -1
- package/core/types/provider.ts +110 -0
- package/core/utils/branding.ts +20 -3
- package/dist/bin/prjct.mjs +1053 -1426
- package/dist/core/infrastructure/command-installer.js +33 -2
- package/dist/core/infrastructure/editors-config.js +13 -3
- package/dist/core/infrastructure/setup.js +293 -73
- package/package.json +10 -16
- package/scripts/postinstall.js +17 -119
- package/templates/agentic/agent-routing.md +22 -88
- package/templates/agentic/agents/uxui.md +42 -197
- package/templates/agentic/context-filtering.md +14 -56
- package/templates/agentic/orchestrator.md +26 -302
- package/templates/agentic/skill-integration.md +37 -289
- package/templates/agentic/subagent-generation.md +31 -104
- package/templates/agentic/task-fragmentation.md +39 -273
- package/templates/agents/AGENTS.md +33 -181
- package/templates/commands/bug.md +22 -520
- package/templates/commands/dash.md +26 -161
- package/templates/commands/done.md +19 -250
- package/templates/commands/enrich.md +21 -732
- package/templates/commands/idea.md +18 -160
- package/templates/commands/init.md +20 -209
- package/templates/commands/merge.md +21 -185
- package/templates/commands/next.md +21 -103
- package/templates/commands/p.md +1 -1
- package/templates/commands/p.toml +37 -0
- package/templates/commands/pause.md +21 -272
- package/templates/commands/resume.md +18 -411
- package/templates/commands/setup.md +0 -1
- package/templates/commands/ship.md +30 -627
- package/templates/commands/sync.md +11 -1448
- package/templates/commands/task.md +17 -439
- package/templates/commands/test.md +30 -259
- package/templates/global/CLAUDE.md +33 -1
- package/templates/global/GEMINI.md +265 -0
- package/templates/global/STORAGE-SPEC.md +256 -0
- package/templates/global/docs/agents.md +88 -0
- package/templates/global/docs/architecture.md +103 -0
- package/templates/global/docs/commands.md +96 -0
- package/templates/global/docs/validation.md +95 -0
- package/CLAUDE.md +0 -211
- package/packages/shared/package.json +0 -29
- package/packages/shared/src/index.ts +0 -10
- package/packages/shared/src/schemas.ts +0 -124
- package/packages/shared/src/types.ts +0 -187
- package/packages/shared/src/unified.ts +0 -174
- package/packages/shared/src/utils.ts +0 -148
- 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
|