a6bd5ac08b
* feat(tui): add command palette voice input * feat(rlm): expose active session objects * fix(tui): do not restore slash commands as retry drafts * fix(config): expose voice input settings rows * fix: sync ActiveTurnState.auto_approve when remember is set When a user checks 'Remember for this tool' and approves a tool call, remember_thread_auto_approve() only persisted thread.auto_approve to disk but did not update the in-memory ActiveTurnState for the current turn. This meant subsequent tool calls within the same turn would still require manual approval, making the remember checkbox appear non-functional. Now remember_thread_auto_approve() also sets ActiveTurnState.auto_approve = true, so active_turn_flags() returns the correct value and the approval_decision() logic auto-approves remaining tool calls in the current turn. (cherry picked from commit 2ccf048c8984d61e3341a4304d0796a1f965d3e7) * test(runtime): cover remembered auto approve on active turn --------- Co-authored-by: Ben Gao <bengao168@msn.com>
114 lines
1.9 KiB
Plaintext
114 lines
1.9 KiB
Plaintext
# Build artifacts
|
|
/target
|
|
*.pdb
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.rlib
|
|
*.o
|
|
|
|
# Development
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
node_modules/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Generated
|
|
outputs/
|
|
tmp/
|
|
|
|
# Reference papers / large research blobs (keep locally if needed, don't ship)
|
|
docs/DeepSeek_V4.pdf
|
|
docs/*.pdf
|
|
|
|
# Note: Cargo.lock is intentionally NOT ignored for reproducible builds
|
|
|
|
# Local dev scripts and temp files
|
|
*.sh
|
|
!scripts/**
|
|
!.github/scripts/**
|
|
test.txt
|
|
TODO*.md
|
|
todo*.md
|
|
CLAUDE.md
|
|
AGENTS.md
|
|
NEXT_SESSION.md
|
|
AI_HANDOFF.md
|
|
result.json
|
|
count_deps.py
|
|
project_overhaul_prompt.md
|
|
.codex/
|
|
.context/
|
|
.wrangler/
|
|
|
|
# Local runtime state
|
|
.codewhale/
|
|
.deepseek/
|
|
**/session_*.json
|
|
*.db
|
|
npm/*/bin/downloads/
|
|
|
|
# Companion app (tracked separately)
|
|
apps/
|
|
|
|
# Claude Code runtime artifacts
|
|
.claude/scheduled_tasks.lock
|
|
.claude/worktrees/
|
|
.worktrees/
|
|
.ace-tool/
|
|
|
|
# Local-only Claude / ralph notes
|
|
.claude/*.local.md
|
|
.claude/*.local.json
|
|
|
|
# Maintainer handoff + codemap notes are working-state, not user-facing
|
|
# artifacts. They've leaked into the public repo via .claude/ in the past
|
|
# (HANDOFF_v0.8.28, CODEMAP_v0.8.25) — those files now live under
|
|
# .private/handoffs/ instead. Block the patterns here so a future accidental
|
|
# add doesn't silently land on main.
|
|
.claude/HANDOFF_*
|
|
.claude/CODEMAP_*
|
|
.claude/handoff_*
|
|
.claude/codemap_*
|
|
|
|
# Maintainer-internal design notes (trade-secret material, never published)
|
|
.private/
|
|
|
|
# Maintainer-local SWE-bench scratch (instance workspaces, venvs, predictions,
|
|
# Docker harness logs). Never published.
|
|
.swebench/
|
|
|
|
# Agent handoffs and version-specific setup plans are working-state notes, not
|
|
# public docs. Keep durable setup guidance in docs/runbooks instead.
|
|
docs/*HANDOFF*.md
|
|
docs/*handoff*.md
|
|
docs/*_PLAN.md
|
|
!docs/archive/**
|
|
|
|
# direnv
|
|
.envrc
|
|
.direnv
|