Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5b3500f
Optimize code summary prompt for small language models
Zebastjan Feb 22, 2026
401c12e
Add integration tests for code summary prompt validation
Zebastjan Feb 22, 2026
547440d
Add comprehensive testing documentation and results
Zebastjan Feb 22, 2026
ee980d1
Fix backend validation bug: add 'discovery' status to CrawlProgressRe…
Zebastjan Feb 22, 2026
827a1a0
Add crawl URL state tracking for checkpoint/resume
Zebastjan Feb 22, 2026
3c94561
Integrate crawl URL state tracking into crawling service
Zebastjan Feb 22, 2026
0aaee50
Update ADR-001 with accurate implementation state and roadmap
Zebastjan Feb 22, 2026
0f83aa6
Add unit tests for CrawlUrlStateService (checkpoint/resume)
Zebastjan Feb 22, 2026
990b8bb
Add provenance tracking to frontend and reconcile ADRs
Zebastjan Feb 22, 2026
70d4db7
Implement checkpoint/resume and provenance tracking backend
Zebastjan Feb 22, 2026
e93d42e
Add archon_migrations tracking to migration files 001-007, 012-013
Zebastjan Feb 22, 2026
f4c868d
Add re-vectorize, re-summarize endpoints and code summarization agent…
Zebastjan Feb 22, 2026
a66e355
Add progress tracking and concurrency limiting for re-vectorize/re-su…
Zebastjan Feb 22, 2026
377324e
Move Code Summarization to third tab in LLM Provider Settings
Zebastjan Feb 22, 2026
a7306d2
Fix Code Summary tab layout and Config button
Zebastjan Feb 22, 2026
ca3d358
Add Summary tab to LLM Provider Settings
Zebastjan Feb 22, 2026
e3fef61
Fix ternary syntax and add full model selection for Summary tab
Zebastjan Feb 22, 2026
9a12773
feat(ingestion): add restartable RAG pipeline with separable stages
Zebastjan Feb 22, 2026
940d0de
feat(ingestion): add worker API and crawl service integration
Zebastjan Feb 23, 2026
a60fe0d
Add roadmap document outlining project direction
Zebastjan Feb 23, 2026
fb01b9a
Add progress persistence, pause/resume, and RAG settings fixes
Zebastjan Feb 23, 2026
1fd5849
feat: add pause/resume infrastructure for crawl operations (WIP)
Zebastjan Feb 23, 2026
5e99e72
test: add comprehensive pause/resume/cancel testing infrastructure
Zebastjan Feb 23, 2026
9d24967
docs: add KNOWN_ISSUES - crawls currently broken
Zebastjan Feb 23, 2026
24739fb
fix: use 'idle' instead of invalid 'initializing' pipeline_status
Zebastjan Feb 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions ADR-001: Crawl & Ingestion Pipeline Improvements.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# ADR-001: Crawl & Ingestion Pipeline Improvements

**Status:** Superseded by ADR-002
**Date:** 2026-02-22
**Authors:** Zebastjan Johanzen

> ⚠️ **This ADR has been superseded by ADR-002**. All content has been merged into ADR-002 for a unified view of crawl reliability, provenance tracking, and validation tooling.

---

## Completed ✅

*(These were already completed before ADR-001 was superseded)*

| Feature | Status | Notes |
|---------|--------|-------|
| `CrawlStatus.discovery` enum | ✅ Done | Progress model includes discovery stage |
| Domain filtering | ✅ Done | Both UI controls and backend filtering |
| Priority discovery (llms.txt → sitemap → full) | ✅ Done | DiscoveryService with correct priority order |
| Per-chunk embedding metadata | ✅ Done | `embedding_model`, `embedding_dimension` on `archon_crawled_pages` |
| Chunk deduplication | ✅ Done | Unique constraint on `(url, chunk_number)` |

---

## Remaining Work

*(See ADR-002 for the complete roadmap)*
Loading