experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: make agent-setup handle both install and update

+1 -1
+1 -1
package.json
··· 30 30 }, 31 31 "scripts": { 32 32 "postinstall": "electron-rebuild -f -w better-sqlite3", 33 - "agent-setup": "git clone https://tangled.sh/burrito.space/multi-agent-workflow .agent-workflow && cp .agent-workflow/CLAUDE.coordinator.md ./CLAUDE.md && echo '' && echo 'Setup complete! Next steps:' && echo ' 1. Create AGENTS.md with project-specific rules' && echo ' 2. Create TODO.md with tasks (Today/Later/Done sections)' && echo ' 3. Start working:' && echo ' tmux new-session -s $(basename $PWD) -n coord' && echo ' source .agent-workflow/multi-agent.zsh' && echo ' claude' && echo ''", 33 + "agent-setup": "if [ -d .agent-workflow ]; then (cd .agent-workflow && git pull); else git clone https://tangled.sh/burrito.space/multi-agent-workflow .agent-workflow; fi && cp .agent-workflow/CLAUDE.coordinator.md ./CLAUDE.md && echo '' && echo 'Agent workflow updated!' && echo ''", 34 34 "//-- Development (BACKEND=electron|tauri, defaults to electron) --//": "", 35 35 "dev": "[ \"${BACKEND:-}\" = \"tauri\" ] && yarn dev:tauri || yarn dev:electron", 36 36 "dev:electron": "./scripts/timed.sh sh -c 'yarn build && DEBUG=1 electron .'",