ragtime-cli 0.2.16__tar.gz → 0.2.17__tar.gz

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.
Files changed (31) hide show
  1. {ragtime_cli-0.2.16/ragtime_cli.egg-info → ragtime_cli-0.2.17}/PKG-INFO +1 -1
  2. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/pyproject.toml +1 -1
  3. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17/ragtime_cli.egg-info}/PKG-INFO +1 -1
  4. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/cli.py +2 -1
  5. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/mcp_server.py +1 -1
  6. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/LICENSE +0 -0
  7. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/README.md +0 -0
  8. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/SOURCES.txt +0 -0
  9. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/dependency_links.txt +0 -0
  10. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/entry_points.txt +0 -0
  11. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/requires.txt +0 -0
  12. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/ragtime_cli.egg-info/top_level.txt +0 -0
  13. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/setup.cfg +0 -0
  14. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/__init__.py +0 -0
  15. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/audit.md +0 -0
  16. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/create-pr.md +0 -0
  17. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/generate-docs.md +0 -0
  18. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/handoff.md +0 -0
  19. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/import-docs.md +0 -0
  20. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/pr-graduate.md +0 -0
  21. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/recall.md +0 -0
  22. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/remember.md +0 -0
  23. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/save.md +0 -0
  24. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/commands/start.md +0 -0
  25. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/config.py +0 -0
  26. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/db.py +0 -0
  27. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/feedback.py +0 -0
  28. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/indexers/__init__.py +0 -0
  29. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/indexers/code.py +0 -0
  30. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/indexers/docs.py +0 -0
  31. {ragtime_cli-0.2.16 → ragtime_cli-0.2.17}/src/memory.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragtime-cli
3
- Version: 0.2.16
3
+ Version: 0.2.17
4
4
  Summary: Local-first memory and RAG system for Claude Code - semantic search over code, docs, and team knowledge
5
5
  Author-email: Bret Martineau <bretwardjames@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ragtime-cli"
3
- version = "0.2.16"
3
+ version = "0.2.17"
4
4
  description = "Local-first memory and RAG system for Claude Code - semantic search over code, docs, and team knowledge"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragtime-cli
3
- Version: 0.2.16
3
+ Version: 0.2.17
4
4
  Summary: Local-first memory and RAG system for Claude Code - semantic search over code, docs, and team knowledge
5
5
  Author-email: Bret Martineau <bretwardjames@gmail.com>
6
6
  License-Expression: MIT
@@ -281,7 +281,8 @@ def _upsert_entries(db, entries, entry_type: str = "docs", label: str = " Embed
281
281
  if entry_type == "code":
282
282
  ids = [f"{e.file_path}:{e.line_number}:{e.symbol_name}" for e in batch]
283
283
  else:
284
- ids = [e.file_path for e in batch]
284
+ # Include chunk_index for hierarchical doc chunks
285
+ ids = [f"{e.file_path}:{e.chunk_index}" for e in batch]
285
286
 
286
287
  documents = [e.content for e in batch]
287
288
  metadatas = [e.to_metadata() for e in batch]
@@ -612,7 +612,7 @@ class RagtimeMCPServer:
612
612
  "protocolVersion": "2024-11-05",
613
613
  "serverInfo": {
614
614
  "name": "ragtime",
615
- "version": "0.2.16",
615
+ "version": "0.2.17",
616
616
  },
617
617
  "capabilities": {
618
618
  "tools": {},
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes