pmpt-cli 1.14.11 → 1.14.12

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/README.md CHANGED
@@ -104,6 +104,7 @@ The generated prompt is **automatically copied to your clipboard**. Just paste i
104
104
  | `pmpt export` | Export project as `.pmpt` file |
105
105
  | `pmpt import <file>` | Import from `.pmpt` file |
106
106
  | `pmpt recover` | Recover damaged pmpt.md via AI-generated prompt |
107
+ | `pmpt mcp-setup` | Auto-configure MCP server for your AI tool |
107
108
  | `pmpt -v` | Show current CLI version |
108
109
 
109
110
  ### Platform
@@ -113,8 +114,9 @@ The generated prompt is **automatically copied to your clipboard**. Just paste i
113
114
  | `pmpt login` | Authenticate via GitHub (one-time) |
114
115
  | `pmpt publish` | Publish your project (requires quality score ≥ 40) |
115
116
  | `pmpt update` | Quick re-publish: update content without changing metadata |
116
- | `pmpt edit` | Edit published project metadata (description, tags, category) |
117
+ | `pmpt edit` | Edit published project metadata (description, tags, category, visibility, related projects, product URL) |
117
118
  | `pmpt unpublish` | Remove a published project from pmptwiki |
119
+ | `pmpt graduate` | Graduate a project — archive with badge, move to Hall of Fame |
118
120
  | `pmpt clone <slug>` | Clone and reproduce someone's project |
119
121
  | `pmpt explore` | Open pmptwiki.com/explore in your browser |
120
122
 
@@ -133,7 +135,7 @@ pmpt includes a built-in [MCP](https://modelcontextprotocol.io) server so AI too
133
135
  `pmpt-mcp` is included when you install pmpt — no separate installation needed.
134
136
 
135
137
  ```bash
136
- npm install -g pmpt # pmpt + pmpt-mcp both installed
138
+ npm install -g pmpt-cli # pmpt + pmpt-mcp both installed
137
139
  ```
138
140
 
139
141
  #### Automatic Setup (Recommended)
@@ -164,11 +166,18 @@ Add to your `.mcp.json` (or IDE MCP config):
164
166
 
165
167
  | Tool | Description |
166
168
  |------|-------------|
167
- | `pmpt_save` | Save a snapshot after completing features, fixes, or milestones |
169
+ | `pmpt_plan_questions` | Get planning questions to ask the user conversationally |
170
+ | `pmpt_plan` | Submit answers to generate AI prompt and project docs |
171
+ | `pmpt_save` | Save a snapshot with detailed summary |
172
+ | `pmpt_update_doc` | Check off features, add progress notes, backfill summaries |
173
+ | `pmpt_log_decision` | Record architectural/technical decisions with reasoning |
174
+ | `pmpt_read_context` | Read full project context (plan, docs, history, quality) |
168
175
  | `pmpt_status` | Check tracked files, snapshot count, and quality score |
169
176
  | `pmpt_history` | View version history with git commit info |
170
177
  | `pmpt_diff` | Compare two versions, or a version against working copy |
178
+ | `pmpt_edit_plan` | Edit plan fields — regenerates plan.md and pmpt.ai.md |
171
179
  | `pmpt_quality` | Check quality score and publish readiness |
180
+ | `pmpt_publish` | Publish project to pmptwiki.com |
172
181
 
173
182
  All tools accept an optional `projectPath` parameter (defaults to cwd).
174
183
 
@@ -51,24 +51,27 @@ export async function cmdEdit() {
51
51
  { value: 'other', label: 'Other' },
52
52
  ].find((o) => o.value === project.category)?.label ?? project.category ?? 'Other';
53
53
  p.note([
54
+ project.graduated ? '🎓 Graduated — only Product URL can be updated.' : null,
54
55
  `Description: ${project.description || '(none)'}`,
55
56
  `Tags: ${project.tags?.length ? project.tags.join(', ') : '(none)'}`,
56
57
  `Category: ${categoryLabel}`,
57
58
  project.productUrl ? `Product: ${project.productUrl}` : 'Product: (none)',
58
59
  `Visibility: ${project.unlisted ? 'Unlisted' : 'Listed'}`,
59
60
  `Related: ${project.related?.length ? project.related.join(', ') : '(none)'}`,
60
- ].join('\n'), 'Current Settings');
61
+ ].filter(Boolean).join('\n'), 'Current Settings');
61
62
  // Pick fields to edit
62
63
  const fields = await p.multiselect({
63
64
  message: 'What do you want to edit?',
64
- options: [
65
- { value: 'description', label: 'Description' },
66
- { value: 'tags', label: 'Tags' },
67
- { value: 'category', label: 'Category' },
68
- { value: 'productUrl', label: 'Product Link' },
69
- { value: 'unlisted', label: 'Visibility (listed/unlisted)' },
70
- { value: 'related', label: 'Related Projects' },
71
- ],
65
+ options: project.graduated
66
+ ? [{ value: 'productUrl', label: 'Product Link' }]
67
+ : [
68
+ { value: 'description', label: 'Description' },
69
+ { value: 'tags', label: 'Tags' },
70
+ { value: 'category', label: 'Category' },
71
+ { value: 'productUrl', label: 'Product Link' },
72
+ { value: 'unlisted', label: 'Visibility (listed/unlisted)' },
73
+ { value: 'related', label: 'Related Projects' },
74
+ ],
72
75
  });
73
76
  if (p.isCancel(fields)) {
74
77
  p.cancel('Cancelled');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmpt-cli",
3
- "version": "1.14.11",
3
+ "version": "1.14.12",
4
4
  "description": "Record and share your AI-driven product development journey",
5
5
  "type": "module",
6
6
  "bin": {