Commit Graph

3 Commits

Author SHA1 Message Date
yusyus
66c823107e revert: restore DOCKER_GUIDE.md and KUBERNETES_GUIDE.md
These files were incorrectly deleted — they have distinct content from
the *_DEPLOYMENT.md files (different structure, different focus, different
examples) and are not duplicates.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-18 22:24:34 +03:00
yusyus
0cbe151c40 docs: audit and clean up docs/ directory
Removals (duplicate/stale):
- docs/DOCKER_GUIDE.md: 80% overlap with DOCKER_DEPLOYMENT.md
- docs/KUBERNETES_GUIDE.md: 70% overlap with KUBERNETES_DEPLOYMENT.md
- docs/strategy/TASK19_COMPLETE.md: stale task tracking
- docs/strategy/TASK20_COMPLETE.md: stale task tracking
- docs/strategy/TASK21_COMPLETE.md: stale task tracking
- docs/strategy/WEEK2_COMPLETE.md: stale progress report

Updates (version/counts):
- docs/FAQ.md: v2.7.0 → v3.1.0-dev, 18 MCP tools → 26, 4 platforms → 16+
- docs/QUICK_REFERENCE.md: 18 MCP tools → 26, 1200+ tests → 1,880+, footer updated
- docs/features/BOOTSTRAP_SKILL.md: v2.7.0 → v3.1.0-dev header and footer

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-18 22:23:28 +03:00
yusyus
8b3f31409e fix: Enforce min_chunk_size in RAG chunker
- Filter out chunks smaller than min_chunk_size (default 100 tokens)
- Exception: Keep all chunks if entire document is smaller than target size
- All 15 tests passing (100% pass rate)

Fixes edge case where very small chunks (e.g., 'Short.' = 6 chars) were
being created despite min_chunk_size=100 setting.

Test: pytest tests/test_rag_chunker.py -v
2026-02-07 20:59:03 +03:00