vaspera-pm 2.1.0 → 2.3.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 +42 -21
- package/README.md +26 -18
- package/dist/cli.js +4122 -473
- package/dist/cli.js.map +1 -1
- package/dist/server.js +1241 -149
- package/dist/server.js.map +1 -1
- package/package.json +4 -3
package/LICENSE
CHANGED
|
@@ -1,21 +1,42 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
VasperaPM Proprietary License
|
|
2
|
+
Copyright (c) 2024-2025 VasperaPM. All rights reserved.
|
|
3
|
+
|
|
4
|
+
TERMS AND CONDITIONS
|
|
5
|
+
|
|
6
|
+
1. GRANT OF LICENSE
|
|
7
|
+
Subject to the terms of this license, you are granted a limited,
|
|
8
|
+
non-exclusive, non-transferable license to:
|
|
9
|
+
|
|
10
|
+
a) View and study the source code for educational purposes
|
|
11
|
+
b) Use the software for your own internal business purposes
|
|
12
|
+
c) Modify the software for your own internal use
|
|
13
|
+
d) Contribute improvements back to the project
|
|
14
|
+
|
|
15
|
+
2. RESTRICTIONS
|
|
16
|
+
You may NOT:
|
|
17
|
+
|
|
18
|
+
a) Offer the software, or any derivative work, as a commercial
|
|
19
|
+
hosted service, SaaS product, or managed service
|
|
20
|
+
b) Redistribute the software or derivative works for commercial gain
|
|
21
|
+
c) Remove or alter any proprietary notices, labels, or marks
|
|
22
|
+
d) Use the software to compete directly with VasperaPM services
|
|
23
|
+
|
|
24
|
+
3. COMMERCIAL USE
|
|
25
|
+
Commercial hosted use requires a separate commercial license.
|
|
26
|
+
Contact: licensing@vasperapm.com
|
|
27
|
+
|
|
28
|
+
4. CONTRIBUTIONS
|
|
29
|
+
Any contributions you submit are licensed under these same terms
|
|
30
|
+
and you grant VasperaPM a perpetual, worldwide, royalty-free license
|
|
31
|
+
to use, modify, and distribute your contributions.
|
|
32
|
+
|
|
33
|
+
5. NO WARRANTY
|
|
34
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
35
|
+
EXPRESS OR IMPLIED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
|
36
|
+
ANY CLAIM, DAMAGES OR OTHER LIABILITY ARISING FROM THE SOFTWARE.
|
|
37
|
+
|
|
38
|
+
6. TERMINATION
|
|
39
|
+
This license terminates automatically if you violate any terms.
|
|
40
|
+
Upon termination, you must destroy all copies of the software.
|
|
41
|
+
|
|
42
|
+
For commercial licensing inquiries: licensing@vasperapm.com
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
**Transform your ideas into production-ready specs with AI**
|
|
21
21
|
|
|
22
22
|
[](https://www.npmjs.com/package/vaspera-pm)
|
|
23
|
-
[](LICENSE)
|
|
24
24
|
|
|
25
25
|
</div>
|
|
26
26
|
|
|
@@ -34,10 +34,10 @@ VasperaPM is an MCP (Model Context Protocol) server that brings AI-powered produ
|
|
|
34
34
|
|
|
35
35
|
- **Generate PRDs** - Create comprehensive Product Requirements Documents from context
|
|
36
36
|
- **Infer from Code** - Analyze existing codebases to generate documentation
|
|
37
|
-
- **
|
|
37
|
+
- **Verify Code** - Detect when code drifts from requirements
|
|
38
38
|
- **API Specs** - Auto-generate OpenAPI/Swagger specifications
|
|
39
39
|
- **Test Cases** - Create detailed test plans and acceptance criteria
|
|
40
|
-
- **PM Tool Sync** - Export to Jira, Linear, and
|
|
40
|
+
- **PM Tool Sync** - Export to Jira, Linear, GitHub, and Azure DevOps
|
|
41
41
|
|
|
42
42
|
---
|
|
43
43
|
|
|
@@ -80,17 +80,19 @@ npx vaspera-pm install
|
|
|
80
80
|
|
|
81
81
|
| Command | Description |
|
|
82
82
|
|---------|-------------|
|
|
83
|
+
| `vaspera-pm connect` | Link to VasperaPM account (browser OAuth flow) |
|
|
84
|
+
| `vaspera-pm install` | Configure MCP server for Claude Code |
|
|
83
85
|
| `vaspera-pm analyze <path>` | Full analysis: discover → analyze → verify → output |
|
|
84
86
|
| `vaspera-pm verify <path>` | Quick verification check (for CI/CD) |
|
|
87
|
+
| `vaspera-pm fix <path>` | Generate and apply fix suggestions for drift findings |
|
|
85
88
|
| `vaspera-pm discover <path>` | Discovery only (no AI, no API key needed) |
|
|
86
89
|
| `vaspera-pm init` | Initialize VasperaPM in a project |
|
|
87
|
-
| `vaspera-pm install` | Configure MCP server for Claude Code |
|
|
88
90
|
| `vaspera-pm serve` | Start the MCP server (used by Claude Code) |
|
|
89
91
|
| `vaspera-pm status` | Check your current configuration |
|
|
90
92
|
|
|
91
93
|
---
|
|
92
94
|
|
|
93
|
-
## Available Tools (
|
|
95
|
+
## Available Tools (30 Total)
|
|
94
96
|
|
|
95
97
|
Once installed, these tools are available in Claude Code:
|
|
96
98
|
|
|
@@ -123,6 +125,7 @@ Once installed, these tools are available in Claude Code:
|
|
|
123
125
|
| Tool | Description |
|
|
124
126
|
|------|-------------|
|
|
125
127
|
| `verify_docs_code` | Detect documentation vs code drift |
|
|
128
|
+
| `detect_contradictions` | Find conflicting requirements across sources |
|
|
126
129
|
| `analyze_git_freshness` | Find stale documentation |
|
|
127
130
|
| `dependency_audit` | Security and update checks |
|
|
128
131
|
|
|
@@ -150,35 +153,40 @@ Once installed, these tools are available in Claude Code:
|
|
|
150
153
|
|
|
151
154
|
## API Keys
|
|
152
155
|
|
|
153
|
-
### Local Mode (
|
|
156
|
+
### Option 1: Local Mode (Your Own Key)
|
|
154
157
|
|
|
155
|
-
|
|
158
|
+
Use your own Anthropic API key - no account needed:
|
|
156
159
|
|
|
157
160
|
```bash
|
|
158
161
|
export ANTHROPIC_API_KEY=sk-ant-xxx
|
|
162
|
+
npx vaspera-pm install
|
|
163
|
+
# or
|
|
159
164
|
npx vaspera-pm analyze .
|
|
160
165
|
```
|
|
161
166
|
|
|
162
167
|
Features:
|
|
163
|
-
- All
|
|
168
|
+
- All 30 tools work locally
|
|
164
169
|
- Output saved to `docs/vasperaPM/`
|
|
165
170
|
- No account required
|
|
166
171
|
- Works in air-gapped environments
|
|
172
|
+
- Unlimited usage (your API costs)
|
|
167
173
|
|
|
168
|
-
###
|
|
174
|
+
### Option 2: VasperaPM Cloud
|
|
169
175
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
- Team collaboration & sharing
|
|
173
|
-
- Usage analytics & billing
|
|
174
|
-
- Jira/Linear/GitHub integrations
|
|
175
|
-
- Historical drift tracking
|
|
176
|
-
- Webhook notifications
|
|
176
|
+
Connect to VasperaPM for managed usage and team features:
|
|
177
177
|
|
|
178
178
|
```bash
|
|
179
|
-
npx vaspera-pm connect #
|
|
179
|
+
npx vaspera-pm connect # Opens browser for login
|
|
180
|
+
npx vaspera-pm install # Configures Claude Code
|
|
180
181
|
```
|
|
181
182
|
|
|
183
|
+
Features:
|
|
184
|
+
- Team collaboration & sharing
|
|
185
|
+
- Usage tracking & quotas (Free: 5, Starter: 100, Pro: 500/month)
|
|
186
|
+
- Jira/Linear/GitHub/ADO integrations
|
|
187
|
+
- Historical drift tracking
|
|
188
|
+
- No Anthropic key needed (we proxy requests)
|
|
189
|
+
|
|
182
190
|
---
|
|
183
191
|
|
|
184
192
|
## Configuration
|
|
@@ -219,7 +227,7 @@ Connect your PM tools at [vasperapm.com/dashboard/integrations](https://vasperap
|
|
|
219
227
|
|
|
220
228
|
## License
|
|
221
229
|
|
|
222
|
-
|
|
230
|
+
Proprietary License - see [LICENSE](LICENSE) for details.
|
|
223
231
|
|
|
224
232
|
---
|
|
225
233
|
|