| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/bin/sh
- # Accept optional parameter for VS Code directory
- # Can be: full path, relative path, or just directory name (default: "Code")
- # Examples:
- # ./reset-kilocode-state.sh # uses default "Code"
- # ./reset-kilocode-state.sh VSCodium # uses "VSCodium"
- # ./reset-kilocode-state.sh "Code - Insiders" # uses "Code - Insiders"
- # ./reset-kilocode-state.sh ~/custom/path # uses full path
- VSCODE_DIR="${1:-Code}"
- # Expand ~ to $HOME if present
- VSCODE_DIR="${VSCODE_DIR/#\~/$HOME}"
- # If the path exists as a directory, use it directly
- # Otherwise, treat it as a directory name under ~/Library/Application Support/
- if [[ -d "$VSCODE_DIR" ]]; then
- VSCODE_DIR="$VSCODE_DIR"
- else
- VSCODE_DIR="$HOME/Library/Application Support/$VSCODE_DIR"
- fi
- echo "Kilocode state is being reset for: $VSCODE_DIR"
- echo "This probably doesn't work while VS Code is running."
- # Reset the secrets:
- sqlite3 "$VSCODE_DIR/User/globalStorage/state.vscdb" \
- "DELETE FROM ItemTable WHERE \
- key = 'kilocode.kilo-code' OR \
- key LIKE 'workbench.view.extension.kilo-code%' OR \
- key LIKE 'secret://{\"extensionId\":\"kilocode.kilo-code\",%';"
- # delete all kilocode state files:
- rm -rf "$VSCODE_DIR/User/globalStorage/kilocode.kilo-code/"
- # clear some of the vscode cache that I've observed contains kilocode related entries:
- rm -f "$VSCODE_DIR/CachedProfilesData/__default__profile__/extensions.user.cache"
|