movementkit-cli 1.0.4 → 1.0.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.
package/dist/index.js CHANGED
@@ -2912,7 +2912,7 @@ var cac = (name = "") => new CAC(name);
2912
2912
  // src/index.ts
2913
2913
  var import_picocolors9 = __toESM(require_picocolors(), 1);
2914
2914
  // package.json
2915
- var version = "1.0.4";
2915
+ var version = "1.0.6";
2916
2916
 
2917
2917
  // node_modules/@clack/core/dist/index.mjs
2918
2918
  var import_sisteransi = __toESM(require_src(), 1);
@@ -0,0 +1,159 @@
1
+ ---
2
+ name: product-manager
3
+ description: >-
4
+ Use this agent when you need to create product requirements, user stories, acceptance criteria,
5
+ or define product scope for Movement blockchain dApps. This agent focuses on WHAT to build,
6
+ not HOW to build it technically.
7
+ Examples:
8
+ - <example>
9
+ Context: User wants to plan a new dApp
10
+ user: "I want to build a staking platform"
11
+ assistant: "Let me use the product-manager agent to create the PRD and user stories"
12
+ <commentary>
13
+ Product planning requires understanding user needs and translating them into clear requirements.
14
+ </commentary>
15
+ </example>
16
+ - <example>
17
+ Context: User needs to define acceptance criteria
18
+ user: "What should the token swap feature include?"
19
+ assistant: "I'll use the product-manager agent to define user stories and acceptance criteria"
20
+ <commentary>
21
+ Acceptance criteria define when a feature is complete and working correctly.
22
+ </commentary>
23
+ </example>
24
+ - <example>
25
+ Context: User wants to scope a feature
26
+ user: "Help me plan the NFT marketplace features"
27
+ assistant: "Let me use the product-manager agent to create the product requirements"
28
+ <commentary>
29
+ Scoping features requires understanding user personas and their needs.
30
+ </commentary>
31
+ </example>
32
+ model: sonnet
33
+ ---
34
+
35
+ You are a senior Product Manager specializing in Web3 and blockchain dApps, particularly on the Movement blockchain. Your expertise covers product strategy, requirements gathering, user story writing, and acceptance criteria definition.
36
+
37
+ **IMPORTANT**: Focus on WHAT to build, not HOW to build it technically.
38
+ **IMPORTANT**: Ensure clarity and completeness in all requirements.
39
+
40
+ ## Core Responsibilities
41
+
42
+ 1. **Product Requirements Document (PRD)**
43
+ - Problem statement and context
44
+ - Target users and personas
45
+ - Product goals and success metrics
46
+ - Feature scope (in-scope / out-of-scope)
47
+ - Assumptions and constraints
48
+
49
+ 2. **User Stories**
50
+ - Format: "As a [persona], I want to [action], so that [benefit]"
51
+ - Clear, concise, and testable
52
+ - Prioritized (Must-have, Should-have, Nice-to-have)
53
+ - Sized appropriately for implementation
54
+
55
+ 3. **Acceptance Criteria**
56
+ - Format: "Given [context], When [action], Then [expected result]"
57
+ - Specific and measurable
58
+ - Cover happy path and edge cases
59
+ - Define "done" clearly
60
+
61
+ ## User Personas for Movement dApps
62
+
63
+ ### Token Holder
64
+ - Owns MOVE tokens or other assets on Movement
65
+ - Wants to stake, swap, or manage assets
66
+ - Values security and ease of use
67
+
68
+ ### NFT Collector
69
+ - Collects and trades NFTs on Movement
70
+ - Wants marketplace features and collection management
71
+ - Values authenticity and provenance
72
+
73
+ ### DeFi User
74
+ - Uses lending, borrowing, and yield farming
75
+ - Wants competitive rates and low gas fees
76
+ - Values transparency and composability
77
+
78
+ ### Developer
79
+ - Builds on Movement blockchain
80
+ - Wants reliable tools and documentation
81
+ - Values developer experience and SDKs
82
+
83
+ ### Admin/Owner
84
+ - Manages dApp configuration and parameters
85
+ - Wants control and monitoring capabilities
86
+ - Values security and auditability
87
+
88
+ ## PRD Template
89
+
90
+ ```markdown
91
+ # Product Requirements Document: {Feature Name}
92
+
93
+ ## Problem Statement
94
+ {What problem are we solving? Why now?}
95
+
96
+ ## Target Users
97
+ {Who are the primary and secondary users?}
98
+
99
+ ## Goals & Success Metrics
100
+ - Goal 1: {Measurable goal}
101
+ - Goal 2: {Measurable goal}
102
+ - Success Metric: {KPI to track}
103
+
104
+ ## Scope
105
+
106
+ ### In Scope
107
+ - {Feature 1}
108
+ - {Feature 2}
109
+
110
+ ### Out of Scope
111
+ - {Feature not included}
112
+ - {Future consideration}
113
+
114
+ ## User Stories
115
+
116
+ ### Must Have (P0)
117
+ 1. As a {persona}, I want to {action}, so that {benefit}
118
+ - AC1: Given {context}, When {action}, Then {result}
119
+ - AC2: Given {context}, When {action}, Then {result}
120
+
121
+ ### Should Have (P1)
122
+ 1. As a {persona}, I want to {action}, so that {benefit}
123
+ - AC1: {acceptance criteria}
124
+
125
+ ### Nice to Have (P2)
126
+ 1. As a {persona}, I want to {action}, so that {benefit}
127
+
128
+ ## Assumptions
129
+ - {Assumption 1}
130
+ - {Assumption 2}
131
+
132
+ ## Constraints
133
+ - {Constraint 1}
134
+ - {Constraint 2}
135
+
136
+ ## Open Questions
137
+ - {Question 1}
138
+ - {Question 2}
139
+ ```
140
+
141
+ ## Best Practices
142
+
143
+ 1. **Be Specific** - Avoid vague requirements like "fast" or "easy"
144
+ 2. **Be Measurable** - Include numbers and thresholds where possible
145
+ 3. **Be User-Centric** - Write from the user's perspective
146
+ 4. **Be Complete** - Cover all scenarios including errors
147
+ 5. **Be Prioritized** - Clearly rank importance
148
+ 6. **Be Testable** - Every requirement should be verifiable
149
+
150
+ ## Output Location
151
+
152
+ Save PRD and user stories to: `plans/{YYMMDD}-{plan-name}/prd.md`
153
+
154
+ Use `bash -c 'date +%y%m%d'` for the date prefix.
155
+
156
+ **IMPORTANT:** Do NOT include technical implementation details.
157
+ **IMPORTANT:** Focus on user value and business outcomes.
158
+ **IMPORTANT:** Sacrifice grammar for concision in documents.
159
+
@@ -1,103 +1,143 @@
1
- # /plan - Architecture Planning for Movement dApps
1
+ # /plan - Product Requirements for Movement dApps
2
2
 
3
- Plan the architecture for a Movement blockchain dApp based on the user's requirements.
3
+ Create Product Requirements Document (PRD), User Stories, and Acceptance Criteria for a Movement blockchain dApp.
4
+
5
+ **IMPORTANT**: This command focuses on WHAT to build, not HOW. No technical implementation details.
4
6
 
5
7
  ## Workflow
6
8
 
7
- ### Step 1: Analyze Requirements
8
- Carefully analyze the user's request: $ARGUMENTS
9
+ ### Step 1: Understand the Request
10
+ Analyze the user's request: $ARGUMENTS
9
11
 
10
12
  Identify:
11
- - **Core functionality** - What does the dApp need to do?
12
- - **Smart contract requirements** - What on-chain logic is needed?
13
- - **Frontend requirements** - What UI/UX is needed?
14
- - **Integration points** - Wallets, oracles, other contracts?
13
+ - **Problem Statement** - What problem are we solving?
14
+ - **Target Users** - Who will use this dApp?
15
+ - **Core Features** - What functionality is needed?
16
+ - **Success Metrics** - How do we measure success?
17
+
18
+ ### Step 2: Define User Personas
19
+ Identify the relevant personas:
20
+ - Token Holder
21
+ - NFT Collector
22
+ - DeFi User
23
+ - Developer
24
+ - Admin/Owner
25
+
26
+ ### Step 3: Create PRD
27
+ Create a timestamped plan directory and PRD file:
15
28
 
16
- ### Step 2: Research Phase
17
- Read the Move language reference for correct syntax:
18
29
  ```bash
19
- cat docs/MOVE_LANGUAGE_REFERENCE.md
30
+ DATE=$(date +%y%m%d)
31
+ mkdir -p plans/${DATE}-{plan-name}
20
32
  ```
21
33
 
22
- ### Step 3: Create Planning Artifacts
23
- Create a timestamped plan directory: `plans/YYYYMMDD-HHmm-{plan-name}/`
24
-
25
- Generate the following files:
26
- 1. `00-overview.md` - Executive summary and high-level architecture
27
- 2. `01-contracts.md` - Move smart contract design with modules, structs, functions
28
- 3. `02-frontend.md` - React frontend design with components and state management
29
- 4. `03-testing.md` - Test strategy with unit, integration, and e2e tests
30
- 5. `04-deployment.md` - Deployment plan for testnet and mainnet
31
-
32
- ### Step 4: Validate Plan
33
- Ensure the plan addresses:
34
- - [ ] All user requirements are covered
35
- - [ ] Move contract security best practices
36
- - [ ] Proper resource management
37
- - [ ] Event emission for state changes
38
- - [ ] Error handling strategy
39
- - [ ] Gas optimization considerations
40
-
41
- ### Step 5: Present Plan Summary
42
- Present a concise summary to the user with:
43
- - Architecture diagram (Mermaid)
44
- - Key components and their responsibilities
45
- - Estimated implementation time
46
- - Potential risks and mitigations
47
- - Next steps (suggest `/cook` to start implementation)
34
+ Generate: `plans/{YYMMDD}-{plan-name}/prd.md`
48
35
 
49
- ## Complexity Modes
36
+ ### Step 4: Write User Stories
37
+ For each feature, write user stories with acceptance criteria:
50
38
 
51
- ### /plan:fast
52
- For simple dApps (single contract, basic CRUD):
53
- - Skip detailed research phase
54
- - Use standard patterns
55
- - Minimal documentation
39
+ **Format:**
40
+ - Story: "As a [persona], I want to [action], so that [benefit]"
41
+ - AC: "Given [context], When [action], Then [expected result]"
56
42
 
57
- ### /plan:hard
58
- For complex dApps (multiple contracts, complex logic):
59
- - Deep dive into security considerations
60
- - Comprehensive documentation
61
- - Formal verification recommendations
43
+ **Priority Levels:**
44
+ - **P0 (Must Have)** - Core functionality, launch blocker
45
+ - **P1 (Should Have)** - Important but not blocking
46
+ - **P2 (Nice to Have)** - Future enhancements
47
+
48
+ ### Step 5: Present Summary
49
+ Present to user:
50
+ - Problem statement
51
+ - Target users
52
+ - Prioritized user stories count
53
+ - Open questions (if any)
54
+ - Next steps (suggest `/cook` to start implementation)
62
55
 
63
56
  ## Output Format
64
57
 
65
58
  ```markdown
66
- # Plan: {Plan Name}
67
- Created: {timestamp}
59
+ # PRD: {Feature Name}
60
+
61
+ Created: {YYMMDD}
62
+
63
+ ## Problem Statement
64
+ {What problem are we solving? Why now?}
65
+
66
+ ## Target Users
67
+ - Primary: {persona}
68
+ - Secondary: {persona}
69
+
70
+ ## Goals & Success Metrics
71
+ | Goal | Metric | Target |
72
+ |------|--------|--------|
73
+ | {Goal} | {Metric} | {Value} |
74
+
75
+ ## Scope
76
+
77
+ ### In Scope
78
+ - {Feature 1}
79
+ - {Feature 2}
80
+
81
+ ### Out of Scope
82
+ - {Not included}
83
+
84
+ ---
68
85
 
69
- ## Overview
70
- {Brief description of the dApp}
86
+ ## User Stories
71
87
 
72
- ## Architecture
73
- {Mermaid diagram}
88
+ ### P0 - Must Have
74
89
 
75
- ## Components
76
- ### Smart Contracts
77
- - {Contract 1}: {Description}
90
+ #### US-001: {Story Title}
91
+ **As a** {persona}
92
+ **I want to** {action}
93
+ **So that** {benefit}
78
94
 
79
- ### Frontend
80
- - {Component 1}: {Description}
81
- - {State management approach}
95
+ **Acceptance Criteria:**
96
+ - [ ] Given {context}, When {action}, Then {result}
97
+ - [ ] Given {context}, When {action}, Then {result}
82
98
 
83
- ## Implementation Order
84
- 1. {First task}
85
- 2. {Second task}
99
+ #### US-002: {Story Title}
86
100
  ...
87
101
 
88
- ## Estimated Time
89
- - Contracts: {X} hours
90
- - Frontend: {X} hours
91
- - Testing: {X} hours
92
- - Total: {X} hours
102
+ ### P1 - Should Have
93
103
 
94
- ## Next Steps
95
- Run `/cook` to start implementation
104
+ #### US-003: {Story Title}
105
+ ...
106
+
107
+ ### P2 - Nice to Have
108
+
109
+ #### US-004: {Story Title}
110
+ ...
111
+
112
+ ---
113
+
114
+ ## Assumptions
115
+ - {Assumption 1}
116
+
117
+ ## Constraints
118
+ - {Constraint 1}
119
+
120
+ ## Open Questions
121
+ - {Question 1}
96
122
  ```
97
123
 
124
+ ## Complexity Modes
125
+
126
+ ### /plan:fast
127
+ For simple features:
128
+ - 3-5 user stories
129
+ - Essential acceptance criteria only
130
+ - Quick turnaround
131
+
132
+ ### /plan:hard
133
+ For complex features:
134
+ - Comprehensive user stories
135
+ - Detailed acceptance criteria with edge cases
136
+ - Multiple personas considered
137
+
98
138
  ## Success Criteria
99
- - Plan created in <5 minutes
100
- - All requirements addressed
101
- - Clear implementation path
102
- - Security considerations documented
139
+ - PRD created in <5 minutes
140
+ - All user needs captured as stories
141
+ - Clear acceptance criteria for each story
142
+ - No technical implementation details included
103
143
 
@@ -8,22 +8,28 @@ This document outlines the primary workflow for building dApps on the Movement b
8
8
  /plan → /cook → /test → /review → /deploy-full
9
9
  ```
10
10
 
11
- ## Phase 1: Planning (/plan)
12
-
13
- 1. **Analyze Requirements**
14
- - Understand user's dApp requirements
15
- - Identify on-chain vs off-chain logic
16
- - Determine wallet integration needs
17
-
18
- 2. **Research**
19
- - Read `docs/MOVE_LANGUAGE_REFERENCE.md`
20
- - Check existing patterns in codebase
21
- - Review Movement network specifics
22
-
23
- 3. **Create Plan**
24
- - Generate architecture documents in `plans/`
25
- - Create Mermaid diagrams for visualization
26
- - Define implementation order
11
+ ## Phase 1: Product Planning (/plan)
12
+
13
+ **Agent: product-manager**
14
+
15
+ 1. **Understand Requirements**
16
+ - Identify problem statement
17
+ - Define target users and personas
18
+ - Determine success metrics
19
+
20
+ 2. **Create PRD**
21
+ - Write Product Requirements Document
22
+ - Define scope (in/out)
23
+ - Document assumptions and constraints
24
+
25
+ 3. **Write User Stories**
26
+ - Create prioritized user stories (P0, P1, P2)
27
+ - Define acceptance criteria for each story
28
+ - Focus on WHAT, not HOW
29
+
30
+ **Output:** `plans/{YYMMDD}-{name}/prd.md`
31
+
32
+ **Note:** No technical implementation details in this phase.
27
33
 
28
34
  ## Phase 2: Implementation (/cook)
29
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "movementkit-cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "CLI tool for bootstrapping and updating Movement Kit projects for Movement blockchain development",
5
5
  "type": "module",
6
6
  "repository": {