ragtime-cli 0.2.8__py3-none-any.whl → 0.2.9__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.8
3
+ Version: 0.2.9
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,9 +1,9 @@
1
- ragtime_cli-0.2.8.dist-info/licenses/LICENSE,sha256=9A0wJs2PRDciGRH4F8JUJ-aMKYQyq_gVu2ixrXs-l5A,1070
1
+ ragtime_cli-0.2.9.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=qO7tQjzMF9wm5PmBpglCaskEzndyVMk5OMJ5tB69rCs,73978
3
+ src/cli.py,sha256=3Cn4D1W4Wok0mJB1fiBdynnCaDo4FWJo8Zay3Tp_ycQ,73978
4
4
  src/config.py,sha256=qyn5ADjPwvQlhwSJHwzat1v449b7MKEzIHr37Q5qhCc,4497
5
5
  src/db.py,sha256=Lm3zrj-6KBw4YlSCW17fu5GlaVqrK6AFw06xaW8E-Yw,6648
6
- src/mcp_server.py,sha256=Ta_v8SgjTI3qXvJvJ9laOEbRqYCdHKBJXB-NmFpvFuw,20791
6
+ src/mcp_server.py,sha256=ZU1wJQbquHVLl-lypkefZ1hc3o6s2v_3suIeiL5TgN8,21035
7
7
  src/memory.py,sha256=byzjAu2YaL9u4vNm6MLmaxeOWrg6RqRn5eJlIwxkEzA,12990
8
8
  src/commands/audit.md,sha256=Xkucm-gfBIMalK9wf7NBbyejpsqBTUAGGlb7GxMtMPY,5137
9
9
  src/commands/create-pr.md,sha256=u6-jVkDP_6bJQp6ImK039eY9F6B9E2KlAVlvLY-WV6Q,9483
@@ -18,8 +18,8 @@ src/commands/start.md,sha256=qoqhkMgET74DBx8YPIT1-wqCiVBUDxlmevigsCinHSY,6506
18
18
  src/indexers/__init__.py,sha256=MYoCPZUpHakMX1s2vWnc9shjWfx_X1_0JzUhpKhnKUQ,454
19
19
  src/indexers/code.py,sha256=G2TbiKbWj0e7DV5KsU8-Ggw6ziDb4zTuZ4Bu3ryV4g8,18059
20
20
  src/indexers/docs.py,sha256=nyewQ4Ug4SCuhne4TuLDlUDzz9GH2STInddj81ocz50,3555
21
- ragtime_cli-0.2.8.dist-info/METADATA,sha256=at8aPrC2FKRCn2MKj73K2aICXbXdqhreZb1w0M5DIwg,9875
22
- ragtime_cli-0.2.8.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
23
- ragtime_cli-0.2.8.dist-info/entry_points.txt,sha256=cWLbeyMxZNbew-THS3bHXTpCRXt1EaUy5QUOXGXLjl4,75
24
- ragtime_cli-0.2.8.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
25
- ragtime_cli-0.2.8.dist-info/RECORD,,
21
+ ragtime_cli-0.2.9.dist-info/METADATA,sha256=5UyYXf9fk98ekvuIjPGeyCpr8h1rE2BAd8Aa1cuQ2ZQ,9875
22
+ ragtime_cli-0.2.9.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
23
+ ragtime_cli-0.2.9.dist-info/entry_points.txt,sha256=cWLbeyMxZNbew-THS3bHXTpCRXt1EaUy5QUOXGXLjl4,75
24
+ ragtime_cli-0.2.9.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
25
+ ragtime_cli-0.2.9.dist-info/RECORD,,
src/cli.py CHANGED
@@ -169,7 +169,7 @@ def get_remote_branches_with_ragtime(path: Path) -> list[str]:
169
169
 
170
170
 
171
171
  @click.group()
172
- @click.version_option(version="0.2.8")
172
+ @click.version_option(version="0.2.9")
173
173
  def main():
174
174
  """Ragtime - semantic search over code and documentation."""
175
175
  pass
@@ -2137,7 +2137,7 @@ def update(check: bool):
2137
2137
  from urllib.request import urlopen
2138
2138
  from urllib.error import URLError
2139
2139
 
2140
- current = "0.2.8"
2140
+ current = "0.2.9"
2141
2141
 
2142
2142
  click.echo(f"Current version: {current}")
2143
2143
  click.echo("Checking PyPI for updates...")
src/mcp_server.py CHANGED
@@ -132,7 +132,7 @@ class RagtimeMCPServer:
132
132
  },
133
133
  {
134
134
  "name": "search",
135
- "description": "Semantic search over indexed content and memories",
135
+ "description": "Semantic search over indexed code and docs. Returns function signatures, class definitions, and doc summaries with file paths and line numbers. IMPORTANT: Results are summaries only - use the Read tool on returned file paths to see full implementations before making code changes or decisions.",
136
136
  "inputSchema": {
137
137
  "type": "object",
138
138
  "properties": {
@@ -487,7 +487,7 @@ class RagtimeMCPServer:
487
487
  "protocolVersion": "2024-11-05",
488
488
  "serverInfo": {
489
489
  "name": "ragtime",
490
- "version": "0.2.8",
490
+ "version": "0.2.9",
491
491
  },
492
492
  "capabilities": {
493
493
  "tools": {},