You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update README with product vision and roadmap (#34)
- Update tagline to 'context intelligence layer for AI agents'
- Add Roadmap section with three pillars: Context Memory, Code Intelligence, Platform
- Update architecture diagram to show planned components
- Add API Endpoints table with SSE streaming
- Update Use Cases with incident triage and code review
- Update Integrations to reflect current state (MCP, Prometheus, OTEL)
- Add links to playground, blog, and demo booking
Co-authored-by: Ona <no-reply@ona.com>
Copy file name to clipboardExpand all lines: README.md
+66-16Lines changed: 66 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@
8
8
9
9
[](https://app.ona.com/#https://github.com/siddhant-k-code/distill)
10
10
11
-
**Reliable LLM outputs start with clean context.**
11
+
**Context intelligence layer for AI agents.**
12
12
13
-
A reliability layer for LLM context. Deterministic deduplication that removes redundancy before it reaches your model.
13
+
Deduplicates, compresses, and manages context across sessions - so your agents produce reliable, deterministic outputs. Today: a dedup pipeline with ~12ms overhead. Next: persistent context memory, code change impact graphs, and session-aware context windows.
14
14
15
-
Less redundant data. Lower costs. Faster responses. More efficient & deterministic results.
15
+
Less redundant data. Lower costs. Faster responses. Deterministic results.
16
16
17
17
**[Learn more →](https://distill.siddhantkhare.com)**
18
18
@@ -213,6 +213,16 @@ distill query # Test a query from command line
213
213
distill config # Manage configuration files
214
214
```
215
215
216
+
## API Endpoints
217
+
218
+
| Method | Path | Description |
219
+
|--------|------|-------------|
220
+
| POST |`/v1/dedupe`| Deduplicate chunks |
221
+
| POST |`/v1/dedupe/stream`| SSE streaming dedup with per-stage progress |
222
+
| POST |`/v1/retrieve`| Query vector DB with dedup (requires backend) |
| **Session Management** | [#31](https://github.com/Siddhant-K-code/distill/issues/31) | Stateful context windows for long-running agents. Push context incrementally, Distill keeps it deduplicated and within budget. |
534
+
535
+
### Code Intelligence
536
+
537
+
| Feature | Issue | Description |
538
+
|---------|-------|-------------|
539
+
| **Change Impact Graph** | [#30](https://github.com/Siddhant-K-code/distill/issues/30) | Dependency graph + co-change patterns from git history. "This PR changes auth/jwt.go - here's the blast radius." |
540
+
| **Semantic Commit Analysis** | [#32](https://github.com/Siddhant-K-code/distill/issues/32) | Find similar past changes, predict incidents. "This diff is 82% similar to the one that caused outage #47." |
0 commit comments