-
Notifications
You must be signed in to change notification settings - Fork 2
Persistent Conversation Storage #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
BillChirico
wants to merge
14
commits into
main
from
auto-claude/005-persistent-conversation-storage
Closed
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e3a394d
auto-claude: subtask-1-1 - Create storage abstraction interface with …
BillChirico 404a591
auto-claude: subtask-1-2 - Implement SQLite storage backend with chan…
BillChirico 88a2fc0
auto-claude: subtask-1-3 - Implement JSON file storage backend with o…
BillChirico 42b0714
auto-claude: subtask-2-1 - Add storage configuration to config.json w…
BillChirico fa52cb4
auto-claude: subtask-2-2 - Replace conversationHistory Map with stora…
BillChirico f2a0cb2
auto-claude: subtask-2-3 - Update getHistory and addToHistory functio…
BillChirico d0f5c15
auto-claude: subtask-3-1 - Implement automatic pruning of old convers…
BillChirico c878f28
auto-claude: subtask-3-2 - Add scheduled pruning task that runs on bo…
BillChirico 9e6d128
auto-claude: subtask-3-3 - Add .env.example entries for storage confi…
BillChirico cf9e30a
auto-claude: subtask-3-4 - Update README.md with storage configuratio…
BillChirico 9ad3769
auto-claude: subtask-4-1 - Remove old conversationHistory Map and MAX…
BillChirico fea78c2
auto-claude: subtask-4-2 - Add .gitignore entries for storage files
BillChirico 39f15c4
auto-claude: subtask-4-3 - End-to-end verification of persistent stor…
BillChirico 34cf492
fix: Address QA issues (qa-requested)
BillChirico File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,172 @@ | ||
| { | ||
| "base_commands": [ | ||
| ".", | ||
| "[", | ||
| "[[", | ||
| "ag", | ||
| "awk", | ||
| "basename", | ||
| "bash", | ||
| "bc", | ||
| "break", | ||
| "cat", | ||
| "cd", | ||
| "chmod", | ||
| "clear", | ||
| "cmp", | ||
| "column", | ||
| "comm", | ||
| "command", | ||
| "continue", | ||
| "cp", | ||
| "curl", | ||
| "cut", | ||
| "date", | ||
| "df", | ||
| "diff", | ||
| "dig", | ||
| "dirname", | ||
| "du", | ||
| "echo", | ||
| "egrep", | ||
| "env", | ||
| "eval", | ||
| "exec", | ||
| "exit", | ||
| "expand", | ||
| "export", | ||
| "expr", | ||
| "false", | ||
| "fd", | ||
| "fgrep", | ||
| "file", | ||
| "find", | ||
| "fmt", | ||
| "fold", | ||
| "gawk", | ||
| "gh", | ||
| "git", | ||
| "grep", | ||
| "gunzip", | ||
| "gzip", | ||
| "head", | ||
| "help", | ||
| "host", | ||
| "iconv", | ||
| "id", | ||
| "jobs", | ||
| "join", | ||
| "jq", | ||
| "kill", | ||
| "killall", | ||
| "less", | ||
| "let", | ||
| "ln", | ||
| "ls", | ||
| "lsof", | ||
| "man", | ||
| "mkdir", | ||
| "mktemp", | ||
| "more", | ||
| "mv", | ||
| "nl", | ||
| "paste", | ||
| "pgrep", | ||
| "ping", | ||
| "pkill", | ||
| "popd", | ||
| "printenv", | ||
| "printf", | ||
| "ps", | ||
| "pushd", | ||
| "pwd", | ||
| "read", | ||
| "readlink", | ||
| "realpath", | ||
| "reset", | ||
| "return", | ||
| "rev", | ||
| "rg", | ||
| "rm", | ||
| "rmdir", | ||
| "sed", | ||
| "seq", | ||
| "set", | ||
| "sh", | ||
| "shuf", | ||
| "sleep", | ||
| "sort", | ||
| "source", | ||
| "split", | ||
| "stat", | ||
| "tail", | ||
| "tar", | ||
| "tee", | ||
| "test", | ||
| "time", | ||
| "timeout", | ||
| "touch", | ||
| "tr", | ||
| "tree", | ||
| "true", | ||
| "type", | ||
| "uname", | ||
| "unexpand", | ||
| "uniq", | ||
| "unset", | ||
| "unzip", | ||
| "watch", | ||
| "wc", | ||
| "wget", | ||
| "whereis", | ||
| "which", | ||
| "whoami", | ||
| "xargs", | ||
| "yes", | ||
| "yq", | ||
| "zip", | ||
| "zsh" | ||
| ], | ||
| "stack_commands": [ | ||
| "node", | ||
| "npm", | ||
| "npx", | ||
| "pnpm", | ||
| "pnpx" | ||
| ], | ||
| "script_commands": [ | ||
| "bun", | ||
| "npm", | ||
| "pnpm", | ||
| "yarn" | ||
| ], | ||
| "custom_commands": [], | ||
| "detected_stack": { | ||
| "languages": [ | ||
| "javascript" | ||
| ], | ||
| "package_managers": [ | ||
| "pnpm" | ||
| ], | ||
| "frameworks": [], | ||
| "databases": [], | ||
| "infrastructure": [], | ||
| "cloud_providers": [], | ||
| "code_quality_tools": [], | ||
| "version_managers": [] | ||
| }, | ||
| "custom_scripts": { | ||
| "npm_scripts": [ | ||
| "start", | ||
| "dev" | ||
| ], | ||
| "make_targets": [], | ||
| "poetry_scripts": [], | ||
| "cargo_aliases": [], | ||
| "shell_scripts": [] | ||
| }, | ||
| "project_dir": "/Users/billchirico/Developer/bill-bot", | ||
| "created_at": "2026-02-03T19:51:09.135836", | ||
| "project_hash": "51a4f617fc8ece9b63e20f8a9950e73b", | ||
| "inherited_from": "/Users/billchirico/Developer/bill-bot" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "active": true, | ||
| "spec": "005-persistent-conversation-storage", | ||
| "state": "building", | ||
| "subtasks": { | ||
| "completed": 8, | ||
| "total": 13, | ||
| "in_progress": 1, | ||
| "failed": 0 | ||
| }, | ||
| "phase": { | ||
| "current": "Add Pruning & Configuration", | ||
| "id": null, | ||
| "total": 4 | ||
| }, | ||
| "workers": { | ||
| "active": 0, | ||
| "max": 1 | ||
| }, | ||
| "session": { | ||
| "number": 10, | ||
| "started_at": "2026-02-03T20:25:36.371830" | ||
| }, | ||
| "last_update": "2026-02-03T20:45:04.066888" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| { | ||
| "sandbox": { | ||
| "enabled": true, | ||
| "autoAllowBashIfSandboxed": true | ||
| }, | ||
| "permissions": { | ||
| "defaultMode": "acceptEdits", | ||
| "allow": [ | ||
| "Read(./**)", | ||
| "Write(./**)", | ||
| "Edit(./**)", | ||
| "Glob(./**)", | ||
| "Grep(./**)", | ||
| "Read(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/**)", | ||
| "Write(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/**)", | ||
| "Edit(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/**)", | ||
| "Glob(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/**)", | ||
| "Grep(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/**)", | ||
| "Read(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/.auto-claude/specs/005-persistent-conversation-storage/**)", | ||
| "Write(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/.auto-claude/specs/005-persistent-conversation-storage/**)", | ||
| "Edit(/Users/billchirico/Developer/bill-bot/.auto-claude/worktrees/tasks/005-persistent-conversation-storage/.auto-claude/specs/005-persistent-conversation-storage/**)", | ||
| "Read(/Users/billchirico/Developer/bill-bot/.auto-claude/**)", | ||
| "Write(/Users/billchirico/Developer/bill-bot/.auto-claude/**)", | ||
| "Edit(/Users/billchirico/Developer/bill-bot/.auto-claude/**)", | ||
| "Glob(/Users/billchirico/Developer/bill-bot/.auto-claude/**)", | ||
| "Grep(/Users/billchirico/Developer/bill-bot/.auto-claude/**)", | ||
| "Bash(*)", | ||
| "WebFetch(*)", | ||
| "WebSearch(*)", | ||
| "mcp__context7__resolve-library-id(*)", | ||
| "mcp__context7__get-library-docs(*)", | ||
| "mcp__graphiti-memory__search_nodes(*)", | ||
| "mcp__graphiti-memory__search_facts(*)", | ||
| "mcp__graphiti-memory__add_episode(*)", | ||
| "mcp__graphiti-memory__get_episodes(*)", | ||
| "mcp__graphiti-memory__get_entity_edge(*)" | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,10 @@ | ||
| node_modules/ | ||
| .env | ||
| *.log | ||
|
|
||
| # Auto Claude data directory | ||
| .auto-claude/ | ||
|
|
||
| # Storage files | ||
| *.db | ||
| data/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Developer-specific files with personal paths committed
Medium Severity
The files
.auto-claude-security.json,.auto-claude-status, and.claude_settings.jsonappear to be developer-specific tooling files that contain personal directory paths like/Users/billchirico/Developer/bill-bot. These look like auto-generated configuration files from a local development tool that aren't intended for the repository and would cause issues for other developers or in production.Additional Locations (2)
.auto-claude-status#L1-L25.claude_settings.json#L1-L39