@vibe-assurance/cli 1.2.0 → 1.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/README.md +33 -1
- package/package.json +1 -1
- package/src/mcp/tools.js +3 -3
package/README.md
CHANGED
|
@@ -34,6 +34,9 @@ npm install -g @vibe-assurance/cli
|
|
|
34
34
|
| `vibe logout` | Clear stored credentials |
|
|
35
35
|
| `vibe mcp-server` | Start the MCP server (used by AI coding agents) |
|
|
36
36
|
| `vibe setup-claude` | Configure MCP client to use Vibe Assurance |
|
|
37
|
+
| `vibe projects` | List your accessible projects |
|
|
38
|
+
| `vibe project current` | Show current project |
|
|
39
|
+
| `vibe project select` | Switch to a different project |
|
|
37
40
|
| `vibe --version` | Show CLI version |
|
|
38
41
|
|
|
39
42
|
### MCP Tools
|
|
@@ -61,12 +64,28 @@ Once configured, your AI coding agent has access to these tools:
|
|
|
61
64
|
|
|
62
65
|
| Tool | Description |
|
|
63
66
|
|------|-------------|
|
|
64
|
-
| `vibe_store_artifact` | Store a created document (CR, risk, vulnerability, etc.) |
|
|
67
|
+
| `vibe_store_artifact` | Store a created document (CR, risk, vulnerability, plan, etc.) |
|
|
65
68
|
| `vibe_update_artifact` | Update an existing artifact |
|
|
69
|
+
| `vibe_append_file` | Safely add a file to an artifact without replacing others |
|
|
66
70
|
| `vibe_list_artifacts` | List your stored artifacts |
|
|
67
71
|
| `vibe_get_artifact` | Get a specific artifact by ID |
|
|
68
72
|
| `vibe_delete_artifact` | Delete an artifact |
|
|
69
73
|
|
|
74
|
+
#### Artifact Types
|
|
75
|
+
|
|
76
|
+
The following artifact types are supported:
|
|
77
|
+
|
|
78
|
+
| Type | Description | Example ID |
|
|
79
|
+
|------|-------------|------------|
|
|
80
|
+
| `CR` | Change Requests | CR-2026-051 |
|
|
81
|
+
| `RISK` | Risk Register Entries | RISK-001 |
|
|
82
|
+
| `VULNERABILITY` | Security Vulnerabilities | VUL-059 |
|
|
83
|
+
| `REPORT` | Security/Audit Reports | RPT-2026-001 |
|
|
84
|
+
| `POLICY` | Governance Policies | POL-001 |
|
|
85
|
+
| `PLAN` | Strategic & Technical Plans | PLAN-2026-002 |
|
|
86
|
+
| `ARCHITECTURE` | Architecture Decision Records | ADR-001 |
|
|
87
|
+
| `CONFIG` | Configuration Documentation | CFG-001 |
|
|
88
|
+
|
|
70
89
|
### Example Session
|
|
71
90
|
|
|
72
91
|
```
|
|
@@ -174,6 +193,19 @@ Then remove the MCP configuration from your AI agent's config file.
|
|
|
174
193
|
- All API communication uses HTTPS
|
|
175
194
|
- Tokens auto-refresh when expired
|
|
176
195
|
|
|
196
|
+
## Changelog
|
|
197
|
+
|
|
198
|
+
### v1.3.0 (2026-01-06)
|
|
199
|
+
- Added `PLAN`, `ARCHITECTURE`, `CONFIG` artifact types
|
|
200
|
+
- Enables Technical Strategist to store plans as PLAN artifacts
|
|
201
|
+
- Supports architecture decision records (ADRs)
|
|
202
|
+
- Supports configuration documentation
|
|
203
|
+
|
|
204
|
+
### v1.2.0
|
|
205
|
+
- Added `vibe_append_file` for safe file additions to artifacts
|
|
206
|
+
- Added project management commands (`vibe projects`, `vibe project select`)
|
|
207
|
+
- Improved token refresh handling
|
|
208
|
+
|
|
177
209
|
## License
|
|
178
210
|
|
|
179
211
|
MIT
|
package/package.json
CHANGED
package/src/mcp/tools.js
CHANGED
|
@@ -173,13 +173,13 @@ const tools = [
|
|
|
173
173
|
|
|
174
174
|
{
|
|
175
175
|
name: 'vibe_store_artifact',
|
|
176
|
-
description: 'Store a created document (CR, report, risk, vulnerability, etc.) in Vibe Assurance. The artifact will be saved to your account and visible in the web portal.',
|
|
176
|
+
description: 'Store a created document (CR, report, risk, vulnerability, plan, architecture, config, etc.) in Vibe Assurance. The artifact will be saved to your account and visible in the web portal.',
|
|
177
177
|
inputSchema: {
|
|
178
178
|
type: 'object',
|
|
179
179
|
properties: {
|
|
180
180
|
type: {
|
|
181
181
|
type: 'string',
|
|
182
|
-
enum: ['CR', 'RISK', 'VULNERABILITY', 'REPORT', 'POLICY'],
|
|
182
|
+
enum: ['CR', 'RISK', 'VULNERABILITY', 'REPORT', 'POLICY', 'PLAN', 'ARCHITECTURE', 'CONFIG'],
|
|
183
183
|
description: 'Type of artifact'
|
|
184
184
|
},
|
|
185
185
|
artifactId: {
|
|
@@ -304,7 +304,7 @@ const tools = [
|
|
|
304
304
|
properties: {
|
|
305
305
|
type: {
|
|
306
306
|
type: 'string',
|
|
307
|
-
enum: ['CR', 'RISK', 'VULNERABILITY', 'REPORT', 'POLICY'],
|
|
307
|
+
enum: ['CR', 'RISK', 'VULNERABILITY', 'REPORT', 'POLICY', 'PLAN', 'ARCHITECTURE', 'CONFIG'],
|
|
308
308
|
description: 'Filter by artifact type'
|
|
309
309
|
},
|
|
310
310
|
status: {
|