ragscope 0.1.1 → 0.1.2
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 -1
- package/dist/src/db/index.d.ts +3 -730
- package/dist/src/db/index.d.ts.map +1 -1
- package/dist/src/db/index.js +6 -8
- package/dist/src/db/index.js.map +1 -1
- package/dist/src/db/queries.d.ts +6 -6
- package/dist/src/db/queries.d.ts.map +1 -1
- package/dist/src/db/queries.js +88 -24
- package/dist/src/db/queries.js.map +1 -1
- package/dist/src/db/queries.test.js +3 -3
- package/dist/src/db/queries.test.js.map +1 -1
- package/package.json +2 -10
- package/dist/src/db/schema.d.ts +0 -725
- package/dist/src/db/schema.d.ts.map +0 -1
- package/dist/src/db/schema.js +0 -53
- package/dist/src/db/schema.js.map +0 -1
package/README.md
CHANGED
|
@@ -175,11 +175,39 @@ RAGScope is a **pre-ship quality gate** — like ESLint or Lighthouse, you run i
|
|
|
175
175
|
|
|
176
176
|
---
|
|
177
177
|
|
|
178
|
+
## Roadmap
|
|
179
|
+
|
|
180
|
+
### Now (v0.1.x)
|
|
181
|
+
|
|
182
|
+
- [x] OTLP ingestion — works with any OTel-compatible source
|
|
183
|
+
- [x] Langfuse polling adapter
|
|
184
|
+
- [x] Four sub-scores: precision, efficiency, redundancy, coverage
|
|
185
|
+
- [x] PASS / WARN / FAIL per query with rolling session average
|
|
186
|
+
- [x] `--verbose` flag for full breakdown + recommendations
|
|
187
|
+
|
|
188
|
+
### Next (v0.2)
|
|
189
|
+
|
|
190
|
+
- [ ] **LangSmith adapter** — poll runs via LangSmith API, zero code changes
|
|
191
|
+
- [ ] **Helicone adapter** — fetch requests via Helicone API
|
|
192
|
+
- [ ] **Langfuse webhooks** — real-time instead of 30s polling
|
|
193
|
+
- [ ] **Audit report export** — `npx ragscope report` writes a Markdown/JSON summary you can commit or share
|
|
194
|
+
|
|
195
|
+
### Later
|
|
196
|
+
|
|
197
|
+
- [ ] **Compare mode** — `npx ragscope compare v1 v2` diffs two pipeline versions side-by-side
|
|
198
|
+
- [ ] **Python support** — native Python instrumentation helpers
|
|
199
|
+
- [ ] **Threshold config** — `.ragscope.json` to set custom PASS/WARN/FAIL thresholds per project
|
|
200
|
+
- [ ] **Span-level drill-down** — `--trace <id>` to inspect a single trace in detail
|
|
201
|
+
|
|
202
|
+
> Vote on features or propose new ones by [opening an issue](https://github.com/Sidd27/ragscope/issues).
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
178
206
|
## Contributing
|
|
179
207
|
|
|
180
208
|
Contributions are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for setup and guidelines.
|
|
181
209
|
|
|
182
|
-
**Good first issues:**
|
|
210
|
+
**Good first issues:** LangSmith adapter, Helicone adapter, audit report export, improving scoring heuristics.
|
|
183
211
|
|
|
184
212
|
---
|
|
185
213
|
|