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.
Files changed (56) hide show
  1. agrep-0.1.0/.gitignore +28 -0
  2. agrep-0.1.0/Cargo.lock +726 -0
  3. agrep-0.1.0/Cargo.toml +25 -0
  4. agrep-0.1.0/LICENSE +21 -0
  5. agrep-0.1.0/PKG-INFO +203 -0
  6. agrep-0.1.0/README.md +165 -0
  7. agrep-0.1.0/agrep/__init__.py +9 -0
  8. agrep-0.1.0/agrep/__main__.py +37 -0
  9. agrep-0.1.0/cli.py +315 -0
  10. agrep-0.1.0/crates/agrep-cli/Cargo.toml +17 -0
  11. agrep-0.1.0/crates/agrep-cli/src/main.rs +192 -0
  12. agrep-0.1.0/crates/agrep-core/Cargo.toml +20 -0
  13. agrep-0.1.0/crates/agrep-core/src/cache.rs +466 -0
  14. agrep-0.1.0/crates/agrep-core/src/ingest/antigravity.rs +370 -0
  15. agrep-0.1.0/crates/agrep-core/src/ingest/claude.rs +433 -0
  16. agrep-0.1.0/crates/agrep-core/src/ingest/cline.rs +292 -0
  17. agrep-0.1.0/crates/agrep-core/src/ingest/codex.rs +465 -0
  18. agrep-0.1.0/crates/agrep-core/src/ingest/kimi.rs +288 -0
  19. agrep-0.1.0/crates/agrep-core/src/ingest/mod.rs +172 -0
  20. agrep-0.1.0/crates/agrep-core/src/ingest/opencode.rs +381 -0
  21. agrep-0.1.0/crates/agrep-core/src/ingest_cache.rs +282 -0
  22. agrep-0.1.0/crates/agrep-core/src/lib.rs +11 -0
  23. agrep-0.1.0/crates/agrep-core/src/model.rs +85 -0
  24. agrep-0.1.0/hatch_build.py +58 -0
  25. agrep-0.1.0/npm/README.md +19 -0
  26. agrep-0.1.0/py/README.md +150 -0
  27. agrep-0.1.0/py/around.py +208 -0
  28. agrep-0.1.0/py/ask.py +265 -0
  29. agrep-0.1.0/py/common.py +502 -0
  30. agrep-0.1.0/py/concepts.py +311 -0
  31. agrep-0.1.0/py/corpusdb.py +316 -0
  32. agrep-0.1.0/py/doctor.py +228 -0
  33. agrep-0.1.0/py/embed.py +264 -0
  34. agrep-0.1.0/py/embed_summaries.py +105 -0
  35. agrep-0.1.0/py/emotion.py +273 -0
  36. agrep-0.1.0/py/explore.py +658 -0
  37. agrep-0.1.0/py/indexer.py +142 -0
  38. agrep-0.1.0/py/judge.py +128 -0
  39. agrep-0.1.0/py/label_concepts.py +191 -0
  40. agrep-0.1.0/py/live.py +902 -0
  41. agrep-0.1.0/py/native.py +228 -0
  42. agrep-0.1.0/py/rawfetch.py +190 -0
  43. agrep-0.1.0/py/report.py +141 -0
  44. agrep-0.1.0/py/resume.py +130 -0
  45. agrep-0.1.0/py/search.py +406 -0
  46. agrep-0.1.0/py/server.py +514 -0
  47. agrep-0.1.0/py/setupjobs.py +323 -0
  48. agrep-0.1.0/py/summarize.py +181 -0
  49. agrep-0.1.0/py/tail.py +89 -0
  50. agrep-0.1.0/py/titles.py +86 -0
  51. agrep-0.1.0/py/vibe.py +359 -0
  52. agrep-0.1.0/pyproject.toml +63 -0
  53. agrep-0.1.0/reindex.py +136 -0
  54. agrep-0.1.0/requirements.txt +20 -0
  55. agrep-0.1.0/web/app.html +7471 -0
  56. 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/