Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active March 27, 2026 10:05
Show Gist options
  • Select an option

  • Save vielhuber/6171c85ee799940e4ea75296a3439f85 to your computer and use it in GitHub Desktop.

Select an option

Save vielhuber/6171c85ee799940e4ea75296a3439f85 to your computer and use it in GitHub Desktop.
claude code #ai

installation

  • curl -fsSL https://claude.ai/install.sh | bash
  • claude --version

usage

  • claude
  • claude --continue
  • IS_SANDBOX=1 claude --dangerously-skip-permissions
  • /login
  • /model
  • /usage
  • /compact
  • /permissions
  • ctrl+enter

agent teams

  • ~/.claude/settings.json
  • { "env": { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" } }
  • apt-get install -y tmux
  • echo "set -g mouse on" >> ~/.tmux.conf
  • tmux new-session -s claude
  • cd /var/www/my-project
  • nvm use --lts
  • git init
  • touch CLAUDE.md
  • git add -A . && git commit -m "init"
  • claude
  • exit
  • tmux attach -t claude
  • tmux kill-session -t claude

prompt

Erstelle ein Snake-Spiel als Webapplikation mit:
- Frontend: HTML5 Canvas Game (index.html, game.js, styles.css)
- Backend: Node.js Express Server mit Highscore-API (server.js, routes/, db/)
- Tests: Unit-Tests für Game-Logik und API-Endpoints

Phase 1: Plane die Architektur in CLAUDE.md mit klarer Task-Aufteilung.
Phase 2: Erstelle ein Team — ein Teammate für Frontend, einer für Backend, 
einer für Tests. Alle arbeiten parallel.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment