prjct-cli 0.25.2 → 0.27.0
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 +214 -0
- package/CLAUDE.md +109 -110
- package/core/infrastructure/command-installer.ts +27 -0
- package/package.json +1 -1
- package/templates/agentic/agents/uxui.md +8 -0
- package/templates/agentic/skill-integration.md +311 -0
- package/templates/agentic/subagent-generation.md +28 -12
- package/templates/commands/bug.md +72 -17
- package/templates/commands/done.md +158 -8
- package/templates/commands/git.md +21 -5
- package/templates/commands/merge.md +202 -0
- package/templates/commands/p.md +32 -0
- package/templates/commands/pause.md +40 -7
- package/templates/commands/resume.md +113 -33
- package/templates/commands/review.md +276 -0
- package/templates/commands/ship.md +193 -17
- package/templates/commands/sync.md +442 -47
- package/templates/commands/task.md +168 -542
- package/templates/commands/test.md +75 -3
- package/templates/commands/verify.md +204 -0
- package/templates/config/skill-mappings.json +87 -0
- package/templates/global/CLAUDE.md +193 -36
- package/templates/global/docs/commands.md +29 -31
- package/templates/subagents/domain/backend.md +1 -0
- package/templates/subagents/domain/devops.md +1 -0
- package/templates/subagents/domain/frontend.md +1 -0
- package/templates/subagents/domain/testing.md +1 -0
- package/templates/subagents/workflow/prjct-planner.md +1 -0
- package/templates/subagents/workflow/prjct-shipper.md +1 -0
|
@@ -2,44 +2,42 @@
|
|
|
2
2
|
|
|
3
3
|
## Command Table
|
|
4
4
|
|
|
5
|
-
|
|
|
5
|
+
| Trigger | Purpose | Arguments |
|
|
6
6
|
|---------|---------|-----------|
|
|
7
|
-
|
|
|
8
|
-
|
|
|
9
|
-
|
|
|
10
|
-
|
|
|
11
|
-
|
|
|
12
|
-
|
|
|
13
|
-
|
|
|
14
|
-
|
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
| `/p:resume` | Resume paused task | - |
|
|
18
|
-
| `/p:bug [desc]` | Report bug | desc: string |
|
|
7
|
+
| `p. sync` | Analyze project, generate agents | - |
|
|
8
|
+
| `p. task [desc] [estimate]` | Start/show current task | desc: string, estimate: "2h", "30m" |
|
|
9
|
+
| `p. done` | Complete current task | - |
|
|
10
|
+
| `p. ship [feature]` | Ship with quality checks | feature: string |
|
|
11
|
+
| `p. next` | Show priority queue | - |
|
|
12
|
+
| `p. idea [text]` | Quick idea capture | text: string |
|
|
13
|
+
| `p. dash` | Project dashboard | - |
|
|
14
|
+
| `p. pause [reason]` | Pause current task | reason: string |
|
|
15
|
+
| `p. resume` | Resume paused task | - |
|
|
16
|
+
| `p. bug [desc]` | Report bug | desc: string |
|
|
19
17
|
|
|
20
18
|
## Recommended Workflow
|
|
21
19
|
|
|
22
20
|
```
|
|
23
|
-
1.
|
|
24
|
-
2.
|
|
25
|
-
3.
|
|
21
|
+
1. p. sync → Analyze project, generate agents
|
|
22
|
+
2. p. idea → Capture what to build
|
|
23
|
+
3. p. task → Start working on task
|
|
26
24
|
4. [code...] → Do the actual work
|
|
27
|
-
5.
|
|
28
|
-
6.
|
|
25
|
+
5. p. done → Mark task complete
|
|
26
|
+
6. p. ship → Ship and celebrate
|
|
29
27
|
```
|
|
30
28
|
|
|
31
29
|
## Command Examples
|
|
32
30
|
|
|
33
31
|
### Starting Work
|
|
34
32
|
```
|
|
35
|
-
|
|
33
|
+
p. task implement user authentication 2h
|
|
36
34
|
```
|
|
37
35
|
- Sets current task
|
|
38
36
|
- Optional estimate for tracking accuracy
|
|
39
37
|
|
|
40
38
|
### Completing Work
|
|
41
39
|
```
|
|
42
|
-
|
|
40
|
+
p. done
|
|
43
41
|
```
|
|
44
42
|
- Calculates duration
|
|
45
43
|
- Logs metrics (files changed, commits)
|
|
@@ -47,7 +45,7 @@
|
|
|
47
45
|
|
|
48
46
|
### Shipping
|
|
49
47
|
```
|
|
50
|
-
|
|
48
|
+
p. ship user authentication
|
|
51
49
|
```
|
|
52
50
|
- Runs lint/tests (optional)
|
|
53
51
|
- Bumps version
|
|
@@ -56,24 +54,24 @@
|
|
|
56
54
|
|
|
57
55
|
### Quick Capture
|
|
58
56
|
```
|
|
59
|
-
|
|
57
|
+
p. idea add dark mode support
|
|
60
58
|
```
|
|
61
59
|
- Saves to ideas backlog
|
|
62
60
|
- Doesn't interrupt current work
|
|
63
61
|
|
|
64
|
-
##
|
|
62
|
+
## How It Works
|
|
65
63
|
|
|
66
|
-
Start message with `p.`
|
|
64
|
+
Start your message with `p.` followed by the command:
|
|
67
65
|
|
|
68
66
|
```
|
|
69
|
-
p.
|
|
70
|
-
→
|
|
67
|
+
p. task login form
|
|
68
|
+
→ Starts task "login form"
|
|
71
69
|
|
|
72
|
-
p. done
|
|
73
|
-
→
|
|
70
|
+
p. done
|
|
71
|
+
→ Completes current task
|
|
74
72
|
|
|
75
|
-
p. ship authentication
|
|
76
|
-
→
|
|
73
|
+
p. ship authentication
|
|
74
|
+
→ Ships "authentication" feature
|
|
77
75
|
```
|
|
78
76
|
|
|
79
77
|
## Command Output Format
|
|
@@ -94,5 +92,5 @@ Example:
|
|
|
94
92
|
|
|
95
93
|
Files: 5 | +120/-30 | Commits: 3
|
|
96
94
|
|
|
97
|
-
Next:
|
|
95
|
+
Next: p. ship or p. task
|
|
98
96
|
```
|
|
@@ -3,6 +3,7 @@ name: backend
|
|
|
3
3
|
description: Backend specialist for Node.js, Go, Python, REST APIs, and GraphQL. Use PROACTIVELY when user works on APIs, servers, or backend logic.
|
|
4
4
|
tools: Read, Write, Bash, Glob, Grep
|
|
5
5
|
model: sonnet
|
|
6
|
+
skills: [javascript-typescript]
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
You are a backend specialist agent for this project.
|
|
@@ -3,6 +3,7 @@ name: devops
|
|
|
3
3
|
description: DevOps specialist for Docker, Kubernetes, CI/CD, and GitHub Actions. Use PROACTIVELY when user works on deployment, containers, or pipelines.
|
|
4
4
|
tools: Read, Bash, Glob
|
|
5
5
|
model: sonnet
|
|
6
|
+
skills: [developer-kit]
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
You are a DevOps specialist agent for this project.
|
|
@@ -3,6 +3,7 @@ name: frontend
|
|
|
3
3
|
description: Frontend specialist for React, Vue, Angular, Svelte, CSS, and UI work. Use PROACTIVELY when user works on components, styling, or UI features.
|
|
4
4
|
tools: Read, Write, Glob, Grep
|
|
5
5
|
model: sonnet
|
|
6
|
+
skills: [frontend-design]
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
You are a frontend specialist agent for this project.
|
|
@@ -3,6 +3,7 @@ name: testing
|
|
|
3
3
|
description: Testing specialist for Bun test, Jest, Pytest, and testing libraries. Use PROACTIVELY when user works on tests, coverage, or test infrastructure.
|
|
4
4
|
tools: Read, Write, Bash
|
|
5
5
|
model: sonnet
|
|
6
|
+
skills: [developer-kit]
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
You are a testing specialist agent for this project.
|
|
@@ -3,6 +3,7 @@ name: prjct-planner
|
|
|
3
3
|
description: Planning agent for /p:feature, /p:idea, /p:spec, /p:bug tasks. Use PROACTIVELY when user discusses features, ideas, specs, or bugs.
|
|
4
4
|
tools: Read, Write, Glob, Grep
|
|
5
5
|
model: sonnet
|
|
6
|
+
skills: [feature-dev]
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
You are the prjct planning agent, specializing in feature planning and task breakdown.
|
|
@@ -3,6 +3,7 @@ name: prjct-shipper
|
|
|
3
3
|
description: Shipping agent for /p:ship tasks. Use PROACTIVELY when user wants to commit, push, deploy, or ship features.
|
|
4
4
|
tools: Read, Write, Bash, Glob
|
|
5
5
|
model: sonnet
|
|
6
|
+
skills: [code-review]
|
|
6
7
|
---
|
|
7
8
|
|
|
8
9
|
You are the prjct shipper agent, specializing in shipping features safely.
|