ccompactor 0.1.15 → 0.1.16

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.
package/README.md CHANGED
@@ -65,32 +65,35 @@ ccompactor expand claude:7c1e8f82 4122..4381 --context 3
65
65
  ccompactor --tui
66
66
  ```
67
67
 
68
- Every shortcut is also a button on the top bar, so nothing has to be memorised:
68
+ A frame with a top bar, a sidebar, a content pane and a bottom bar and every cell of all three
69
+ bars is clickable, so nothing has to be memorised:
69
70
 
70
71
  ```
71
- ccompactor 352 of 720 all claude 352 codex 194 pi 174
72
- [/ search] [0 all agents] [↵ quick look] [a actions] [q quit]
72
+ ccompactor all 725 claude 357 codex 194 pi 174 out: .ccompactor
73
+ ╭────────────────────╮╭──────────────────────────────────────────────────────────────╮
74
+ │ Sessions ││ 725 of 725 session(s) │
75
+ │ Artifacts ││ AGENT SESSION ID MODIFIED │
76
+ │ Doctor ││❯ claude c36bd8f6-0cb2-4253… 2026-09-13 18:17 1456 msg │
77
+ │ Skill ││ claude 1367d688-7dcd-43d8… 2026-09-13 18:10 │
78
+ │ Update ││ │
79
+ │ Settings ││ │
80
+ │ Exit ││ │
81
+ ╰────────────────────╯╰──────────────────────────────────────────────────────────────╯
82
+ NAV ←→ pane ↑↓ move ⏎ select / filter esc back ? help ACT v look a actions
73
83
  ```
74
84
 
75
- The agent chips filter. The bar shows every action on the current screen, and the keys are printed
76
- on the buttons so you learn them by using them. On a narrow terminal the captions drop and the keys
77
- stay `[a]` is still a button. Rows, chips, buttons and menu items are all clickable, and the wheel
78
- scrolls the list and the quick look.
85
+ The **top bar** is the coding agents detected on this machine, with real session counts; clicking
86
+ one filters to it. The **sidebar** is one entry per thing the tool can do Sessions, Artifacts,
87
+ Doctor, Skill, Update, Settings, Exit and each exists on the command line too. The **bottom bar**
88
+ splits navigation from actions, because one flat list of shortcuts does not tell you which keys
89
+ move you and which write a file.
79
90
 
80
- ## Two stages: free first, then cheap
91
+ Decisions happen in pop-up dialogs: the quick look, the session's actions, which agent to continue
92
+ in, progress, results, and the Doctor report. Items in them are clickable. Rows, tabs, sidebar
93
+ entries, bar buttons and dialog items all respond to the mouse, and the wheel scrolls.
81
94
 
82
- ```sh
83
- ccompactor extract claude:last --llm none # deterministic, offline, 2.6 s
84
- ccompactor narrate .ccompactor --llm api:compat/deepseek-chat # a model reads the artifact
85
- ```
86
-
87
- `extract --llm` asks a model to summarise a digest of the *transcript* — on a 286-event session,
88
- about 29,550 input tokens. `narrate` asks it to write from the *artifact*, which is about 5,050 and
89
- has already been compressed, verified and given `[evt N]` pointers. Nearly 6× cheaper, and grounded:
90
- what it writes back cites lines you can check.
91
-
92
- With `--llm none`, L1 is no longer empty. It carries the session's shape read off the ledgers — where
93
- the effort went, and how the work moved — so a deterministic artifact is useful on its own.
95
+ On a narrow terminal captions drop before buttons do — at 80 columns the bar reads `ACT v a` and
96
+ both keys still work.
94
97
 
95
98
  ## The model is optional
96
99