hexcli 2.8.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.
- hexcli-2.8.0/.gitignore +55 -0
- hexcli-2.8.0/CHANGELOG.md +1248 -0
- hexcli-2.8.0/Hex CLI.cmd +2 -0
- hexcli-2.8.0/LICENSE +21 -0
- hexcli-2.8.0/PKG-INFO +394 -0
- hexcli-2.8.0/README.md +367 -0
- hexcli-2.8.0/hexcli/__init__.py +6 -0
- hexcli-2.8.0/hexcli/agent.py +1931 -0
- hexcli-2.8.0/hexcli/assets/hexcli.ico +0 -0
- hexcli-2.8.0/hexcli/assets/hexcli.png +0 -0
- hexcli-2.8.0/hexcli/cancel.py +76 -0
- hexcli-2.8.0/hexcli/chatlog.py +232 -0
- hexcli-2.8.0/hexcli/commands.py +73 -0
- hexcli-2.8.0/hexcli/compaction.py +309 -0
- hexcli-2.8.0/hexcli/config.py +217 -0
- hexcli-2.8.0/hexcli/diffview.py +106 -0
- hexcli-2.8.0/hexcli/distribution.py +237 -0
- hexcli-2.8.0/hexcli/doctor.py +265 -0
- hexcli-2.8.0/hexcli/escalate.py +192 -0
- hexcli-2.8.0/hexcli/http_client.py +156 -0
- hexcli-2.8.0/hexcli/launcher.py +481 -0
- hexcli-2.8.0/hexcli/lineedit.py +1110 -0
- hexcli-2.8.0/hexcli/llm.py +599 -0
- hexcli-2.8.0/hexcli/local_escalation.py +191 -0
- hexcli-2.8.0/hexcli/lockfile.py +71 -0
- hexcli-2.8.0/hexcli/loop_v2.py +393 -0
- hexcli-2.8.0/hexcli/markdown_stream.py +241 -0
- hexcli-2.8.0/hexcli/memory.py +416 -0
- hexcli-2.8.0/hexcli/network.py +154 -0
- hexcli-2.8.0/hexcli/parsing.py +215 -0
- hexcli-2.8.0/hexcli/paths.py +127 -0
- hexcli-2.8.0/hexcli/prompts.py +321 -0
- hexcli-2.8.0/hexcli/protocol_v2.py +505 -0
- hexcli-2.8.0/hexcli/repl.py +807 -0
- hexcli-2.8.0/hexcli/safety.py +127 -0
- hexcli-2.8.0/hexcli/sessions.py +226 -0
- hexcli-2.8.0/hexcli/setup_wizard.py +144 -0
- hexcli-2.8.0/hexcli/shell_session.py +186 -0
- hexcli-2.8.0/hexcli/statusbar.py +894 -0
- hexcli-2.8.0/hexcli/stream_render.py +250 -0
- hexcli-2.8.0/hexcli/telemetry.py +131 -0
- hexcli-2.8.0/hexcli/tools.py +775 -0
- hexcli-2.8.0/hexcli/ui.py +1106 -0
- hexcli-2.8.0/install.ps1 +495 -0
- hexcli-2.8.0/launcher.py +17 -0
- hexcli-2.8.0/pyproject.toml +79 -0
- hexcli-2.8.0/shellai.cmd +2 -0
- hexcli-2.8.0/shellai.example.json +55 -0
- hexcli-2.8.0/shellai.py +15 -0
hexcli-2.8.0/.gitignore
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Local/personal data — not part of the project template
|
|
2
|
+
history.json
|
|
3
|
+
shellai.json
|
|
4
|
+
shellai_npurun.json
|
|
5
|
+
*.log
|
|
6
|
+
# Eval results are per-machine, except the scoreboard and the arms the gate
|
|
7
|
+
# and the release procedure compare against (RELEASING.md).
|
|
8
|
+
evals/results/*
|
|
9
|
+
!evals/results/LATEST.md
|
|
10
|
+
!evals/results/ask_rule_r5_20260905.json
|
|
11
|
+
!evals/results/persona_guard2_r5_20260912.json
|
|
12
|
+
!evals/results/multiturn_prewarm_off_20260905.json
|
|
13
|
+
!evals/results/multiturn_r3_20260912.json
|
|
14
|
+
# Legacy root-level result files from pre-restructure runs
|
|
15
|
+
eval_results.json
|
|
16
|
+
eval_extended_results.json
|
|
17
|
+
.shellai/
|
|
18
|
+
|
|
19
|
+
# Embedding model binaries — downloaded per-machine (README "Embedding model")
|
|
20
|
+
onnx/
|
|
21
|
+
|
|
22
|
+
# Third-party clone with its own git history; see README for setup
|
|
23
|
+
npurun/
|
|
24
|
+
npurun-arm64.exe
|
|
25
|
+
|
|
26
|
+
# Dev / diagnostic scripts — local use only, not part of the product
|
|
27
|
+
debug_eos_probe.py
|
|
28
|
+
make_icon.py
|
|
29
|
+
rewind_bench.py
|
|
30
|
+
|
|
31
|
+
# Python
|
|
32
|
+
__pycache__/
|
|
33
|
+
*.pyc
|
|
34
|
+
.venv/
|
|
35
|
+
.venv-qnn/
|
|
36
|
+
|
|
37
|
+
# LaTeX build products (the PDF itself is tracked)
|
|
38
|
+
docs/paper/*.aux
|
|
39
|
+
docs/paper/*.fdb_latexmk
|
|
40
|
+
docs/paper/*.fls
|
|
41
|
+
docs/paper/*.out
|
|
42
|
+
docs/paper/*.log
|
|
43
|
+
docs/paper/*.toc
|
|
44
|
+
|
|
45
|
+
# Editor/OS cruft
|
|
46
|
+
.DS_Store
|
|
47
|
+
Thumbs.db
|
|
48
|
+
|
|
49
|
+
# Backend study raw measurements (hundreds of counter CSVs); the paper, runbook,
|
|
50
|
+
# summaries and harness are tracked, the raw data is not.
|
|
51
|
+
docs/backend_study/data/
|
|
52
|
+
docs/backend_study/data_npu_ab/
|
|
53
|
+
docs/backend_study/_pre_restart/
|
|
54
|
+
tools/backend_bench/.tok_*.txt
|
|
55
|
+
tools/backend_bench/.battery_probe.ps1
|