@ipation/specbridge 1.3.0 → 2.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/README.md +29 -0
- package/dist/cli.js +6136 -381
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +86 -4
- package/dist/index.js +5566 -83
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/verifiers/example-custom.ts +211 -0
package/README.md
CHANGED
|
@@ -20,6 +20,16 @@ SpecBridge creates a living integration layer between design intent and implemen
|
|
|
20
20
|
- **Interactive Dashboard** - Real-time compliance monitoring with visual charts
|
|
21
21
|
- **Agent Interface** - Exposes decisions to code generation agents (Copilot, Claude, etc.)
|
|
22
22
|
|
|
23
|
+
### New in v2.0 ✨
|
|
24
|
+
|
|
25
|
+
- 🔌 **Plugin System** - Create custom verifiers without modifying core code ([Guide](./docs/PLUGIN-DEVELOPMENT.md))
|
|
26
|
+
- ⚖️ **Severity-Weighted Compliance** - Scores that properly reflect violation criticality
|
|
27
|
+
- ⚡ **Performance Boost** - 30% faster verification with instance pooling and caching
|
|
28
|
+
- 📊 **Sub-1s Dashboard** - In-memory caching for instant report loading
|
|
29
|
+
- 🔄 **Migration Tool** - Automated v1 → v2 migration with comparison reports
|
|
30
|
+
|
|
31
|
+
[📖 See full changelog](./CHANGELOG-v2.0.md) | [🔧 Migration Guide](./docs/MIGRATION-V2.md)
|
|
32
|
+
|
|
23
33
|
## Installation
|
|
24
34
|
|
|
25
35
|
```bash
|
|
@@ -116,6 +126,25 @@ Get AI-generated insights about compliance trends, violations, and decision impa
|
|
|
116
126
|
specbridge dashboard
|
|
117
127
|
```
|
|
118
128
|
|
|
129
|
+
Visit `http://localhost:3000` to see real-time compliance metrics, trend charts, and decision details.
|
|
130
|
+
|
|
131
|
+
### 8. Create custom verifiers (v2.0+)
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Copy plugin template
|
|
135
|
+
cp templates/verifiers/example-custom.ts .specbridge/verifiers/my-verifier.ts
|
|
136
|
+
|
|
137
|
+
# Edit and customize
|
|
138
|
+
# Then use in decisions:
|
|
139
|
+
# check:
|
|
140
|
+
# verifier: my-verifier
|
|
141
|
+
|
|
142
|
+
# Verify
|
|
143
|
+
specbridge verify
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
See the [Plugin Development Guide](./docs/PLUGIN-DEVELOPMENT.md) for detailed instructions.
|
|
147
|
+
|
|
119
148
|
Open your browser to view real-time compliance metrics, trend charts, and insights.
|
|
120
149
|
|
|
121
150
|
### 8. Integrate with AI agents
|