ragtime-cli 0.3.0__tar.gz → 0.3.1__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.
- {ragtime_cli-0.3.0/ragtime_cli.egg-info → ragtime_cli-0.3.1}/PKG-INFO +1 -1
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/pyproject.toml +1 -1
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1/ragtime_cli.egg-info}/PKG-INFO +1 -1
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/cli.py +10 -1
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/LICENSE +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/README.md +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/ragtime_cli.egg-info/SOURCES.txt +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/ragtime_cli.egg-info/dependency_links.txt +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/ragtime_cli.egg-info/entry_points.txt +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/ragtime_cli.egg-info/requires.txt +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/ragtime_cli.egg-info/top_level.txt +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/setup.cfg +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/__init__.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/config.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/db.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/feedback.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/indexers/__init__.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/indexers/code.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/indexers/docs.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/mcp_server.py +0 -0
- {ragtime_cli-0.3.0 → ragtime_cli-0.3.1}/src/memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragtime-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
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
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragtime-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
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
|
|
@@ -306,8 +306,17 @@ def setup_mcp_global(force: bool = False) -> bool:
|
|
|
306
306
|
return False
|
|
307
307
|
|
|
308
308
|
|
|
309
|
+
def get_version():
|
|
310
|
+
"""Get version from package metadata."""
|
|
311
|
+
try:
|
|
312
|
+
from importlib.metadata import version
|
|
313
|
+
return version("ragtime-cli")
|
|
314
|
+
except Exception:
|
|
315
|
+
return "unknown"
|
|
316
|
+
|
|
317
|
+
|
|
309
318
|
@click.group()
|
|
310
|
-
@click.version_option(version=
|
|
319
|
+
@click.version_option(version=get_version())
|
|
311
320
|
@click.option("-y", "--force-defaults", is_flag=True, help="Accept all defaults without prompting")
|
|
312
321
|
@click.pass_context
|
|
313
322
|
def main(ctx, force_defaults: bool):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|