Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"@supabase/supabase-js": "^2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-shell": "^2",
"ansi-to-html": "^0.7",
"dompurify": "^3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
206 changes: 206 additions & 0 deletions apps/desktop/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-fs = "2"
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "5"
chrono = { version = "0.4", default-features = false, features = ["std"] }
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
uuid = { version = "1", features = ["v4"] }
tokio = { version = "1", features = ["sync"] }
rusqlite = { version = "0.31", features = ["bundled"] }
17 changes: 16 additions & 1 deletion apps/desktop/src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"identifier": "default",
"description": "Default capability — grants core API and read access to ~/.claude/",
"description": "Default capability — grants core API, read access to ~/.claude/, and shell spawn for comparator",
"windows": ["main"],
"permissions": [
"core:default",
"core:event:allow-listen",
"core:event:allow-emit",
"fs:allow-read-text-file",
"fs:allow-read-dir",
"fs:allow-exists",
Expand All @@ -13,6 +15,19 @@
{ "path": "$HOME/.claude" },
{ "path": "$HOME/.claude/**" }
]
},
"shell:default",
"shell:allow-spawn",
"shell:allow-stdin-write",
"shell:allow-kill",
{
"identifier": "shell:allow-execute",
"allow": [
{ "name": "claude", "cmd": "claude", "args": true },
{ "name": "cursor", "cmd": "cursor", "args": true },
{ "name": "gh", "cmd": "gh", "args": true },
{ "name": "git", "cmd": "git", "args": true }
]
}
]
}
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/gen/schemas/acl-manifests.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/gen/schemas/capabilities.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"default":{"identifier":"default","description":"Default capability — grants core API and read access to ~/.claude/","local":true,"windows":["main"],"permissions":["core:default","fs:allow-read-text-file","fs:allow-read-dir","fs:allow-exists",{"identifier":"fs:scope","allow":[{"path":"$HOME/.claude"},{"path":"$HOME/.claude/**"}]}]}}
{"default":{"identifier":"default","description":"Default capability — grants core API, read access to ~/.claude/, and shell spawn for comparator","local":true,"windows":["main"],"permissions":["core:default","core:event:allow-listen","core:event:allow-emit","fs:allow-read-text-file","fs:allow-read-dir","fs:allow-exists",{"identifier":"fs:scope","allow":[{"path":"$HOME/.claude"},{"path":"$HOME/.claude/**"}]},"shell:default","shell:allow-spawn","shell:allow-stdin-write","shell:allow-kill",{"identifier":"shell:allow-execute","allow":[{"args":true,"cmd":"claude","name":"claude"},{"args":true,"cmd":"cursor","name":"cursor"},{"args":true,"cmd":"gh","name":"gh"},{"args":true,"cmd":"git","name":"git"}]}]}}
Loading
Loading