planflow-plugin 0.1.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/LICENSE +21 -0
- package/README.md +93 -0
- package/bin/cli.js +169 -0
- package/bin/postinstall.js +87 -0
- package/commands/pfActivity/SKILL.md +725 -0
- package/commands/pfAssign/SKILL.md +623 -0
- package/commands/pfCloudLink/SKILL.md +192 -0
- package/commands/pfCloudList/SKILL.md +222 -0
- package/commands/pfCloudNew/SKILL.md +187 -0
- package/commands/pfCloudUnlink/SKILL.md +152 -0
- package/commands/pfComment/SKILL.md +227 -0
- package/commands/pfComments/SKILL.md +159 -0
- package/commands/pfConnectionStatus/SKILL.md +433 -0
- package/commands/pfDiscord/SKILL.md +740 -0
- package/commands/pfGithubBranch/SKILL.md +672 -0
- package/commands/pfGithubIssue/SKILL.md +963 -0
- package/commands/pfGithubLink/SKILL.md +859 -0
- package/commands/pfGithubPr/SKILL.md +1335 -0
- package/commands/pfGithubUnlink/SKILL.md +401 -0
- package/commands/pfLive/SKILL.md +185 -0
- package/commands/pfLogin/SKILL.md +249 -0
- package/commands/pfLogout/SKILL.md +155 -0
- package/commands/pfMyTasks/SKILL.md +198 -0
- package/commands/pfNotificationSettings/SKILL.md +619 -0
- package/commands/pfNotifications/SKILL.md +420 -0
- package/commands/pfNotificationsClear/SKILL.md +421 -0
- package/commands/pfReact/SKILL.md +232 -0
- package/commands/pfSlack/SKILL.md +659 -0
- package/commands/pfSyncPull/SKILL.md +210 -0
- package/commands/pfSyncPush/SKILL.md +299 -0
- package/commands/pfSyncStatus/SKILL.md +212 -0
- package/commands/pfTeamInvite/SKILL.md +161 -0
- package/commands/pfTeamList/SKILL.md +253 -0
- package/commands/pfTeamRemove/SKILL.md +115 -0
- package/commands/pfTeamRole/SKILL.md +160 -0
- package/commands/pfTestWebhooks/SKILL.md +722 -0
- package/commands/pfUnassign/SKILL.md +134 -0
- package/commands/pfWhoami/SKILL.md +258 -0
- package/commands/pfWorkload/SKILL.md +219 -0
- package/commands/planExportCsv/SKILL.md +106 -0
- package/commands/planExportGithub/SKILL.md +222 -0
- package/commands/planExportJson/SKILL.md +159 -0
- package/commands/planExportSummary/SKILL.md +158 -0
- package/commands/planNew/SKILL.md +641 -0
- package/commands/planNext/SKILL.md +1200 -0
- package/commands/planSettingsAutoSync/SKILL.md +199 -0
- package/commands/planSettingsLanguage/SKILL.md +201 -0
- package/commands/planSettingsReset/SKILL.md +237 -0
- package/commands/planSettingsShow/SKILL.md +482 -0
- package/commands/planSpec/SKILL.md +929 -0
- package/commands/planUpdate/SKILL.md +2518 -0
- package/commands/team/SKILL.md +740 -0
- package/locales/en.json +1499 -0
- package/locales/ka.json +1499 -0
- package/package.json +48 -0
- package/templates/PROJECT_PLAN.template.md +157 -0
- package/templates/backend-api.template.md +562 -0
- package/templates/frontend-spa.template.md +610 -0
- package/templates/fullstack.template.md +397 -0
- package/templates/ka/backend-api.template.md +562 -0
- package/templates/ka/frontend-spa.template.md +610 -0
- package/templates/ka/fullstack.template.md +397 -0
- package/templates/sections/architecture.md +21 -0
- package/templates/sections/overview.md +15 -0
- package/templates/sections/tasks.md +22 -0
- package/templates/sections/tech-stack.md +19 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "planflow-plugin",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "PlanFlow CLI plugin for Claude Code - slash commands for project planning",
|
|
5
|
+
"author": "PlanFlow <hello@planflow.tools>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"planflow-plugin": "./bin/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin",
|
|
13
|
+
"commands",
|
|
14
|
+
"locales",
|
|
15
|
+
"templates",
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"postinstall": "node bin/postinstall.js"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"claude",
|
|
24
|
+
"claude-code",
|
|
25
|
+
"planflow",
|
|
26
|
+
"project-management",
|
|
27
|
+
"planning",
|
|
28
|
+
"cli",
|
|
29
|
+
"plugin",
|
|
30
|
+
"skills"
|
|
31
|
+
],
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/planflow-tools/planflow.git",
|
|
35
|
+
"directory": "packages/plugin"
|
|
36
|
+
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/planflow-tools/planflow/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://planflow.tools",
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18.0.0"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# {{PROJECT_NAME}} - Project Plan
|
|
2
|
+
|
|
3
|
+
*Generated: {{CREATED_DATE}}*
|
|
4
|
+
*Last Updated: {{LAST_UPDATED}}*
|
|
5
|
+
|
|
6
|
+
## Overview
|
|
7
|
+
|
|
8
|
+
**Project Name**: {{PROJECT_NAME}}
|
|
9
|
+
|
|
10
|
+
**Description**: {{DESCRIPTION}}
|
|
11
|
+
|
|
12
|
+
**Target Users**: {{TARGET_USERS}}
|
|
13
|
+
|
|
14
|
+
**Project Type**: {{PROJECT_TYPE}}
|
|
15
|
+
|
|
16
|
+
**Status**: {{STATUS}} ({{PROGRESS_PERCENT}}% complete)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Problem Statement
|
|
21
|
+
|
|
22
|
+
**Current Pain Points:**
|
|
23
|
+
{{PAIN_POINTS}}
|
|
24
|
+
|
|
25
|
+
**Solution:**
|
|
26
|
+
{{SOLUTION}}
|
|
27
|
+
|
|
28
|
+
**Key Features:**
|
|
29
|
+
{{KEY_FEATURES}}
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Architecture
|
|
34
|
+
|
|
35
|
+
### System Overview
|
|
36
|
+
|
|
37
|
+
```mermaid
|
|
38
|
+
{{ARCHITECTURE_DIAGRAM}}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Key Components
|
|
42
|
+
|
|
43
|
+
{{COMPONENTS_LIST}}
|
|
44
|
+
|
|
45
|
+
### Data Flow
|
|
46
|
+
|
|
47
|
+
```mermaid
|
|
48
|
+
{{DATA_FLOW_DIAGRAM}}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Design Decisions
|
|
52
|
+
|
|
53
|
+
{{DESIGN_DECISIONS}}
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Tech Stack
|
|
58
|
+
|
|
59
|
+
### Frontend
|
|
60
|
+
{{FRONTEND_STACK}}
|
|
61
|
+
|
|
62
|
+
### Backend
|
|
63
|
+
{{BACKEND_STACK}}
|
|
64
|
+
|
|
65
|
+
### Database
|
|
66
|
+
{{DATABASE_STACK}}
|
|
67
|
+
|
|
68
|
+
### DevOps & Infrastructure
|
|
69
|
+
{{DEVOPS_STACK}}
|
|
70
|
+
|
|
71
|
+
### Development Tools
|
|
72
|
+
{{DEV_TOOLS}}
|
|
73
|
+
|
|
74
|
+
### Testing
|
|
75
|
+
{{TESTING_STACK}}
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Project Structure
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
{{PROJECT_STRUCTURE}}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Tasks & Implementation Plan
|
|
88
|
+
|
|
89
|
+
{{PHASES}}
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Progress Tracking
|
|
94
|
+
|
|
95
|
+
### Overall Status
|
|
96
|
+
**Total Tasks**: {{TOTAL_TASKS}}
|
|
97
|
+
**Completed**: {{COMPLETED_TASKS}} {{PROGRESS_BAR}} ({{PROGRESS_PERCENT}}%)
|
|
98
|
+
**In Progress**: {{IN_PROGRESS_TASKS}}
|
|
99
|
+
**Blocked**: {{BLOCKED_TASKS}}
|
|
100
|
+
|
|
101
|
+
### Phase Progress
|
|
102
|
+
{{PHASE_PROGRESS}}
|
|
103
|
+
|
|
104
|
+
### Current Focus
|
|
105
|
+
{{CURRENT_FOCUS}}
|
|
106
|
+
|
|
107
|
+
### Estimated Timeline
|
|
108
|
+
{{TIMELINE_ESTIMATES}}
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Success Criteria
|
|
113
|
+
|
|
114
|
+
### Minimum Viable Product (MVP)
|
|
115
|
+
{{MVP_CRITERIA}}
|
|
116
|
+
|
|
117
|
+
### Nice to Have (Future Versions)
|
|
118
|
+
{{NICE_TO_HAVE}}
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Technical Decisions & Notes
|
|
123
|
+
|
|
124
|
+
{{TECHNICAL_NOTES}}
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Resources & References
|
|
129
|
+
|
|
130
|
+
### Documentation
|
|
131
|
+
{{DOCUMENTATION_LINKS}}
|
|
132
|
+
|
|
133
|
+
### Tools & Libraries
|
|
134
|
+
{{TOOLS_LIBRARIES}}
|
|
135
|
+
|
|
136
|
+
### Inspiration
|
|
137
|
+
{{INSPIRATION}}
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## Risk Management
|
|
142
|
+
|
|
143
|
+
### Potential Risks
|
|
144
|
+
{{RISKS}}
|
|
145
|
+
|
|
146
|
+
### Mitigation Strategies
|
|
147
|
+
{{MITIGATION}}
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## Future Enhancements
|
|
152
|
+
|
|
153
|
+
{{FUTURE_ENHANCEMENTS}}
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
*Generated by plan-plugin v{{PLUGIN_VERSION}}*
|