Skip to content
Open
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
21 changes: 21 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"permissions": {
"allow": [
"Bash(tee /tmp/launcher-dev.log)",
"Bash(pkill -f \"tsc -p tsconfig\")",
"Bash(pkill -f \"node scripts/dev\")",
"Bash(pkill -f vite)",
"Bash(node -e \"console.log\\(require\\('electron'\\)\\)\")",
"Bash(/home/xiang/openagents/packages/launcher/node_modules/electron/dist/electron --version)",
"Bash(unset ELECTRON_RUN_AS_NODE)",
"Bash(/home/xiang/openagents/packages/launcher/node_modules/electron/dist/electron --version --no-sandbox)",
"Bash(HEADLESS=1 npm run dev)",
"Bash(npm show *)",
"Bash(npm install *)",
"Bash(npm run *)",
"Bash(npx electron-vite *)",
"Bash(sed -i '' -e 's|\"./pages/Dashboard\"|\"./pages/dashboard\"|' -e 's|\"./pages/Agents\"|\"./pages/agents\"|' -e 's|\"./pages/Install\"|\"./pages/install\"|' -e 's|\"./pages/Logs\"|\"./pages/logs\"|' -e 's|\"./pages/Settings\"|\"./pages/settings\"|' /Users/ashin/Documents/Projects/openagents/packages/launcher/src/renderer/App.tsx)",
"Bash(sed -i '' -e 's|\"../Agents/AgentDetail\"|\"../agents/AgentDetail\"|' /Users/ashin/Documents/Projects/openagents/packages/launcher/src/renderer/pages/install/index.tsx)"
]
}
}
7 changes: 4 additions & 3 deletions packages/launcher/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
dist/
resources/python/
node_modules
out
dist
.DS_Store
*.log
48 changes: 0 additions & 48 deletions packages/launcher/README.md

This file was deleted.

21 changes: 21 additions & 0 deletions packages/launcher/electron.vite.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { resolve } from 'path'
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'

export default defineConfig({
main: {
plugins: [externalizeDepsPlugin()]
},
preload: {
plugins: [externalizeDepsPlugin()]
},
renderer: {
resolve: {
alias: {
'@renderer': resolve('src/renderer')
}
},
plugins: [react(), tailwindcss()]
}
})
22 changes: 10 additions & 12 deletions packages/launcher/entitlements.mac.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
</dict>
</plist>
Loading
Loading