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.
@@ -2,44 +2,42 @@
2
2
 
3
3
  ## Command Table
4
4
 
5
- | Command | Purpose | Arguments |
5
+ | Trigger | Purpose | Arguments |
6
6
  |---------|---------|-----------|
7
- | `/p:sync` | Analyze project, generate agents | - |
8
- | `/p:now [task] [estimate]` | Start/show current task | task: 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:feature [desc]` | Add feature to roadmap | desc: string |
13
- | `/p:idea [text]` | Quick idea capture | text: string |
14
- | `/p:recap` | Project overview | - |
15
- | `/p:progress [period]` | Show metrics | period: "week", "month" |
16
- | `/p:pause [reason]` | Pause current task | reason: string |
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. /p:sync → Analyze project, generate agents
24
- 2. /p:feature Plan what to build
25
- 3. /p:now → Start working on task
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. /p:done → Mark task complete
28
- 6. /p:ship → Ship and celebrate
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
- /p:now "implement user authentication" 2h
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
- /p:done
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
- /p:ship "user authentication"
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
- /p:idea "add dark mode support"
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
- ## Natural Language Trigger
62
+ ## How It Works
65
63
 
66
- Start message with `p.` for natural language:
64
+ Start your message with `p.` followed by the command:
67
65
 
68
66
  ```
69
- p. start working on login form
70
- Executes /p:now "login form"
67
+ p. task login form
68
+ Starts task "login form"
71
69
 
72
- p. done with this
73
- Executes /p:done
70
+ p. done
71
+ Completes current task
74
72
 
75
- p. ship authentication feature
76
- Executes /p:ship "authentication"
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: /p:ship or /p:now
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.