vagary-cli 0.0.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.
- vagary_cli-0.0.1/.gitignore +32 -0
- vagary_cli-0.0.1/PKG-INFO +20 -0
- vagary_cli-0.0.1/README.md +12 -0
- vagary_cli-0.0.1/pyproject.toml +22 -0
- vagary_cli-0.0.1/src/vagary_cli/__init__.py +12 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
**/__pycache__/
|
|
2
|
+
.claude/
|
|
3
|
+
.passwords/
|
|
4
|
+
.pytest_cache/
|
|
5
|
+
.ruff_cache/
|
|
6
|
+
.vscode/
|
|
7
|
+
bm25_indexes/
|
|
8
|
+
# GeoIP mmdb — downloaded by scripts/ops/refresh_geoip_db.py, never committed
|
|
9
|
+
data/geoip/
|
|
10
|
+
build/
|
|
11
|
+
htmlcov/
|
|
12
|
+
logs/
|
|
13
|
+
media/
|
|
14
|
+
model_cache/
|
|
15
|
+
venv/
|
|
16
|
+
.coverage
|
|
17
|
+
.env
|
|
18
|
+
# Generated benchmark artifacts, read off disk by the /dev pages. NOT under web_app/public/ —
|
|
19
|
+
# anything there is published as a static asset, which is how a label pool became downloadable
|
|
20
|
+
# from production by URL.
|
|
21
|
+
web_app/benchmark_output/
|
|
22
|
+
|
|
23
|
+
# Local embedded Chroma for benchmarks (rebuilt from parquet)
|
|
24
|
+
chroma_benchmark/
|
|
25
|
+
|
|
26
|
+
# finalize_labels writes a .bak before overwriting a query set's derived parquet — local safety
|
|
27
|
+
# copy of the previous run, not a versioned artifact.
|
|
28
|
+
*.parquet.bak
|
|
29
|
+
|
|
30
|
+
# Playwright's run artifacts. web_app/.gitignore covers the normal case; this catches a run started
|
|
31
|
+
# from the repo root, where the runner finds no config and writes its output here instead.
|
|
32
|
+
test-results/
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: vagary-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Command-line client for Vagary — search and browse your saved X.com posts. Placeholder ahead of the first functional release.
|
|
5
|
+
Project-URL: Homepage, https://vagary.app
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# Vagary CLI
|
|
10
|
+
|
|
11
|
+
Command-line client for [Vagary](https://vagary.app) — search and browse your saved X.com posts
|
|
12
|
+
(likes, bookmarks, your own posts) from the terminal.
|
|
13
|
+
|
|
14
|
+
**This is a placeholder release.** The first functional version — `vagary login` (browser OAuth),
|
|
15
|
+
`vagary search`, `vagary browse`, `vagary stats`, with `--json` output for scripting — is under
|
|
16
|
+
active development.
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
uv tool install vagary-cli # or: pipx install vagary-cli
|
|
20
|
+
```
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Vagary CLI
|
|
2
|
+
|
|
3
|
+
Command-line client for [Vagary](https://vagary.app) — search and browse your saved X.com posts
|
|
4
|
+
(likes, bookmarks, your own posts) from the terminal.
|
|
5
|
+
|
|
6
|
+
**This is a placeholder release.** The first functional version — `vagary login` (browser OAuth),
|
|
7
|
+
`vagary search`, `vagary browse`, `vagary stats`, with `--json` output for scripting — is under
|
|
8
|
+
active development.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
uv tool install vagary-cli # or: pipx install vagary-cli
|
|
12
|
+
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vagary-cli"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Command-line client for Vagary — search and browse your saved X.com posts. Placeholder ahead of the first functional release."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
# Deliberately empty for the placeholder. The real CLI adds httpx + typer here — and nothing
|
|
12
|
+
# heavier: it is an API client, never an app node (docs/planning/MCP_AND_CLI.md §5).
|
|
13
|
+
dependencies = []
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://vagary.app"
|
|
17
|
+
|
|
18
|
+
[project.scripts]
|
|
19
|
+
vagary = "vagary_cli:main"
|
|
20
|
+
|
|
21
|
+
[tool.hatch.build.targets.wheel]
|
|
22
|
+
packages = ["src/vagary_cli"]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Vagary CLI (docs/planning/MCP_AND_CLI.md §5).
|
|
2
|
+
|
|
3
|
+
0.0.1 is a placeholder claiming the PyPI name ahead of the first functional release. The real CLI
|
|
4
|
+
keeps two constraints from the spec: it never imports services/common (it is an API client, not an
|
|
5
|
+
app node), and command modules are imported lazily so `vagary --help` stays fast.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def main() -> None:
|
|
12
|
+
print("vagary: the Vagary CLI is under development — see https://vagary.app")
|