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 CHANGED
@@ -1,21 +1,42 @@
1
- MIT License
2
-
3
- Copyright (c) 2024-2025 Vaspera Capital
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
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
  [![npm version](https://img.shields.io/npm/v/vaspera-pm.svg)](https://www.npmjs.com/package/vaspera-pm)
23
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
23
+ [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-blue.svg)](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
- - **Generate Code** - Turn PRDs into implementation code
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 GitHub
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 (29 Total)
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 (Zero Friction)
156
+ ### Option 1: Local Mode (Your Own Key)
154
157
 
155
- Just use your own Anthropic API key - no account needed:
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 29 tools work locally
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
- ### Cloud Mode (Team Features)
174
+ ### Option 2: VasperaPM Cloud
169
175
 
170
- Get a VasperaPM API key at [vasperapm.com/dashboard](https://vasperapm.com/dashboard) for:
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 # Link your account
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
- MIT License - see [LICENSE](LICENSE) for details.
230
+ Proprietary License - see [LICENSE](LICENSE) for details.
223
231
 
224
232
  ---
225
233