Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
f3f4e64
feat(cli): add animated progress bar to /compress command
rushikeshsakharleofficial May 13, 2026
3673d38
fix(cli): show rate limit in /stats command
rushikeshsakharleofficial May 13, 2026
6c24385
feat(cli): separate token counts and Claude Code tool UI
rushikeshsakharleofficial May 13, 2026
6cd9e7a
fix(cli): show spinner immediately on submit during pre-request proce…
rushikeshsakharleofficial May 13, 2026
1c19d4d
perf(core): cache tool output masking scan — skip if history unchanged
rushikeshsakharleofficial May 13, 2026
4e1894a
perf(config): reduce AfterTool hook timeout 30s -> 5s
rushikeshsakharleofficial May 13, 2026
eaba6be
fix(core): reset masking cache in public setHistory() to prevent stal…
rushikeshsakharleofficial May 13, 2026
5b654a3
docs: add slash command queue design spec
rushikeshsakharleofficial May 13, 2026
f19758b
docs: add slash command queue implementation plan
rushikeshsakharleofficial May 13, 2026
e223cc8
docs: add Task 7 (fix token display) to slash command queue plan
rushikeshsakharleofficial May 13, 2026
a1da641
feat(cli): add useSlashCommandQueue hook
rushikeshsakharleofficial May 13, 2026
40ff628
fix(cli): show cumulative session token totals in footer
rushikeshsakharleofficial May 13, 2026
8706b85
feat(cli): enqueue slash commands during streaming instead of erroring
rushikeshsakharleofficial May 13, 2026
6f66173
feat(cli): drain queued slash commands on idle in AppContainer
rushikeshsakharleofficial May 13, 2026
41a4656
feat(cli): show queued slash command hint in footer
rushikeshsakharleofficial May 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion .gemini/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,38 @@
},
"general": {
"devtools": true
},
"mcpServers": {
"code-outline": {
"command": "code-outline-graph",
"args": [
"serve"
]
}
},
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "code-outline-graph update . 2>/dev/null; true",
"timeout": 30000
}
]
}
],
"AfterTool": [
{
"matcher": "write_.*|edit_.*|apply_.*",
"hooks": [
{
"type": "command",
"command": "code-outline-graph update . 2>/dev/null; true",
"timeout": 5000
}
]
}
]
}
}
}
Loading