agrep 0.1.0__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.
- agrep-0.1.0/.gitignore +28 -0
- agrep-0.1.0/Cargo.lock +726 -0
- agrep-0.1.0/Cargo.toml +25 -0
- agrep-0.1.0/LICENSE +21 -0
- agrep-0.1.0/PKG-INFO +203 -0
- agrep-0.1.0/README.md +165 -0
- agrep-0.1.0/agrep/__init__.py +9 -0
- agrep-0.1.0/agrep/__main__.py +37 -0
- agrep-0.1.0/cli.py +315 -0
- agrep-0.1.0/crates/agrep-cli/Cargo.toml +17 -0
- agrep-0.1.0/crates/agrep-cli/src/main.rs +192 -0
- agrep-0.1.0/crates/agrep-core/Cargo.toml +20 -0
- agrep-0.1.0/crates/agrep-core/src/cache.rs +466 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/antigravity.rs +370 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/claude.rs +433 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/cline.rs +292 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/codex.rs +465 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/kimi.rs +288 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/mod.rs +172 -0
- agrep-0.1.0/crates/agrep-core/src/ingest/opencode.rs +381 -0
- agrep-0.1.0/crates/agrep-core/src/ingest_cache.rs +282 -0
- agrep-0.1.0/crates/agrep-core/src/lib.rs +11 -0
- agrep-0.1.0/crates/agrep-core/src/model.rs +85 -0
- agrep-0.1.0/hatch_build.py +58 -0
- agrep-0.1.0/npm/README.md +19 -0
- agrep-0.1.0/py/README.md +150 -0
- agrep-0.1.0/py/around.py +208 -0
- agrep-0.1.0/py/ask.py +265 -0
- agrep-0.1.0/py/common.py +502 -0
- agrep-0.1.0/py/concepts.py +311 -0
- agrep-0.1.0/py/corpusdb.py +316 -0
- agrep-0.1.0/py/doctor.py +228 -0
- agrep-0.1.0/py/embed.py +264 -0
- agrep-0.1.0/py/embed_summaries.py +105 -0
- agrep-0.1.0/py/emotion.py +273 -0
- agrep-0.1.0/py/explore.py +658 -0
- agrep-0.1.0/py/indexer.py +142 -0
- agrep-0.1.0/py/judge.py +128 -0
- agrep-0.1.0/py/label_concepts.py +191 -0
- agrep-0.1.0/py/live.py +902 -0
- agrep-0.1.0/py/native.py +228 -0
- agrep-0.1.0/py/rawfetch.py +190 -0
- agrep-0.1.0/py/report.py +141 -0
- agrep-0.1.0/py/resume.py +130 -0
- agrep-0.1.0/py/search.py +406 -0
- agrep-0.1.0/py/server.py +514 -0
- agrep-0.1.0/py/setupjobs.py +323 -0
- agrep-0.1.0/py/summarize.py +181 -0
- agrep-0.1.0/py/tail.py +89 -0
- agrep-0.1.0/py/titles.py +86 -0
- agrep-0.1.0/py/vibe.py +359 -0
- agrep-0.1.0/pyproject.toml +63 -0
- agrep-0.1.0/reindex.py +136 -0
- agrep-0.1.0/requirements.txt +20 -0
- agrep-0.1.0/web/app.html +7471 -0
- agrep-0.1.0/web/report.template.html +189 -0
agrep-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# build output
|
|
2
|
+
/target
|
|
3
|
+
/dist
|
|
4
|
+
/dist-test
|
|
5
|
+
*.bin
|
|
6
|
+
|
|
7
|
+
# the built index — your entire chat history lives here. NEVER commit this.
|
|
8
|
+
/data
|
|
9
|
+
|
|
10
|
+
# python
|
|
11
|
+
/py/.venv
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.pyc
|
|
14
|
+
|
|
15
|
+
# local scratch/debug helper
|
|
16
|
+
py/_check.py
|
|
17
|
+
|
|
18
|
+
# tooling / scratch
|
|
19
|
+
/web/shots
|
|
20
|
+
/.playwright-mcp
|
|
21
|
+
*.log
|
|
22
|
+
|
|
23
|
+
# OS cruft
|
|
24
|
+
.DS_Store
|
|
25
|
+
Thumbs.db
|
|
26
|
+
|
|
27
|
+
# prebuilt rust binary staged for wheel packaging (CI / local build)
|
|
28
|
+
_bin/
|