ragtime-cli 0.2.16__py3-none-any.whl → 0.2.17__py3-none-any.whl

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.
@@ -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,10 +1,10 @@
1
- ragtime_cli-0.2.16.dist-info/licenses/LICENSE,sha256=9A0wJs2PRDciGRH4F8JUJ-aMKYQyq_gVu2ixrXs-l5A,1070
1
+ ragtime_cli-0.2.17.dist-info/licenses/LICENSE,sha256=9A0wJs2PRDciGRH4F8JUJ-aMKYQyq_gVu2ixrXs-l5A,1070
2
2
  src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- src/cli.py,sha256=idCI9DRwfdlUs6IRD0fJo-D-72to67YGl8lUNm-aTEg,77162
3
+ src/cli.py,sha256=69zjmItb4i3Aqeum8Ud-QdToPRx3Y5yTXyHdpUfDlCw,77249
4
4
  src/config.py,sha256=tQ6gPLr4ksn2bJPIUjtELFr-k01Eg4g-LDo3GNE6P0Q,4600
5
5
  src/db.py,sha256=eWqFGrg3O6hve67EzRJGcAsIpYxWJo4JlrAtlZUUA_s,15169
6
6
  src/feedback.py,sha256=cPw_lzusZZPvkgUxs_eV67NtV1FoCfTXUulBPnD78lo,6455
7
- src/mcp_server.py,sha256=q66ZQRIBDqIscO5Ooebq9bC71tcpgUG0WS8INbS6HtI,26498
7
+ src/mcp_server.py,sha256=SPEfyNXTxmMKTP75WGCwzIPJhZvcwjjrqpfzzgxLQIg,26498
8
8
  src/memory.py,sha256=UiHyudKbseMMY-sdcaDSfVBMGj6sFXXw1GxBsZ7nuBc,18450
9
9
  src/commands/audit.md,sha256=Xkucm-gfBIMalK9wf7NBbyejpsqBTUAGGlb7GxMtMPY,5137
10
10
  src/commands/create-pr.md,sha256=u6-jVkDP_6bJQp6ImK039eY9F6B9E2KlAVlvLY-WV6Q,9483
@@ -19,8 +19,8 @@ src/commands/start.md,sha256=qoqhkMgET74DBx8YPIT1-wqCiVBUDxlmevigsCinHSY,6506
19
19
  src/indexers/__init__.py,sha256=MYoCPZUpHakMX1s2vWnc9shjWfx_X1_0JzUhpKhnKUQ,454
20
20
  src/indexers/code.py,sha256=G2TbiKbWj0e7DV5KsU8-Ggw6ziDb4zTuZ4Bu3ryV4g8,18059
21
21
  src/indexers/docs.py,sha256=Q8krHYw0bybUyZaq1sJ0r6Fv-I_6BjTufhqI1eg_25s,9992
22
- ragtime_cli-0.2.16.dist-info/METADATA,sha256=M2Rkk7DvKBJYfOEdww_Mxt8NiDKLKoAKCte_T4APOYE,12832
23
- ragtime_cli-0.2.16.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
24
- ragtime_cli-0.2.16.dist-info/entry_points.txt,sha256=cWLbeyMxZNbew-THS3bHXTpCRXt1EaUy5QUOXGXLjl4,75
25
- ragtime_cli-0.2.16.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
26
- ragtime_cli-0.2.16.dist-info/RECORD,,
22
+ ragtime_cli-0.2.17.dist-info/METADATA,sha256=zIbJxNyqUjHtsjLOVblwVk68k5ZsdH8q3dfG0-4O-S4,12832
23
+ ragtime_cli-0.2.17.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
24
+ ragtime_cli-0.2.17.dist-info/entry_points.txt,sha256=cWLbeyMxZNbew-THS3bHXTpCRXt1EaUy5QUOXGXLjl4,75
25
+ ragtime_cli-0.2.17.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
26
+ ragtime_cli-0.2.17.dist-info/RECORD,,
src/cli.py CHANGED
@@ -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]
src/mcp_server.py CHANGED
@@ -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": {},