first-run

Guider un nouvel utilisateur lors de leur premier lancement d'agent d'utilisation d'ordinateur (vérification de l'environnement, tâche sécurisée uniquement dans le navigateur, puis ouverture du visualiseur de trajectoire).

npx skills add https://github.com/anthropics/claude-quickstarts --skill first-run

First run

Walk the user through running this demo for the first time. Be conversational and pause for confirmation between phases; the goal is that they understand what each step does, not just that the commands succeed.

0. Orient

Briefly say what is about to happen: you will check their setup, run one safe browser-only task that does not touch their mouse or keyboard, and then open the trajectory viewer so they can see what the model saw.

1. Environment check

Never read the contents of .env. Do not cat, grep (without -q), Read, or otherwise display it — the user's API key must never appear in this conversation or in your context. Only check for its presence.

  • Confirm a virtual environment is active and dependencies are installed: python -c "import computer_use, playwright; print('ok')". If that import fails, point them at the Installation section of README.md and stop.
  • Confirm .env exists and the API key is set without ever printing it: [ -f .env ] && grep -q '^ANTHROPIC_API_KEY=.' .env && echo 'API key: set' || echo 'API key: missing' If missing, copy .env.example to .env and ask the user to open it in their own editor and paste their key into it (do not ask them to paste the key into chat, and do not edit .env for them). Wait until they confirm.
  • Run the macOS permission preflight non-fatally: python -c "from computer_use.preflight import check_and_warn; check_and_warn(require=False)" and explain any warnings. These permissions are only needed for the desktop computer tool, which the first task does not use, so it is fine to continue without them for now.

2. Run a safe browser-only task

Explain that this task uses only the headless browser tool, so nothing on their screen will move. Then run:

CU_ENABLE_COMPUTER_USE_TOOLS=false python -m computer_use \
  "Navigate to https://en.wikipedia.org/wiki/Special:Random three times, \
   take a screenshot each time, then summarize what you saw."

While it runs, narrate what the streamed output means (dim thinking text, the cyan tool-call lines, the yellow tool-result lines, the [usage] line). When it finishes, point out the trajectory: runs/... path that was printed.

3. Open the trajectory viewer

python -m streamlit run dev_ui/trajectory_viewer/app.py

Tell them to pick the newest run in the sidebar, expand the System prompt section to see exactly what the model was told, and scroll through the turns to see each screenshot inline.

4. Next steps

Offer two follow-ups and let them choose:

  • Try the desktop tool: once Screen Recording and Accessibility are granted, run python -m computer_use "open TextEdit and type hello world". Warn them again that this will move their real mouse and keyboard.
  • Explore the dev UIs: the tool panel at python -m uvicorn dev_ui.tool_panel.server:app --reload lets them call each tool by hand without the model in the loop.

End by pointing at the Configuration and Effective caching and context pruning sections of README.md for the deeper material.

Plus de skills de anthropic

access
anthropic
Gérer l'accès aux canaux Discord — approuver les appariements, modifier les listes d'autorisation, définir la politique de MP/groupes. Utiliser lorsque l'utilisateur demande d'appairer, d'approuver quelqu'un, de vérifier qui est autorisé,…
official
session-report
anthropic
Générer un rapport HTML explorable de l'utilisation de la session Claude Code (tokens, cache, sous-agents, compétences, prompts coûteux) à partir des transcriptions de ~/.claude/projects.
official
build-mcp-server
anthropic
Cette compétence doit être utilisée lorsque l'utilisateur demande de "construire un serveur MCP", "créer un MCP", "faire une intégration MCP", "encapsuler une API pour Claude", "exposer des outils à…
official
cookbook-audit
anthropic
Auditer un notebook du Anthropic Cookbook selon une grille d'évaluation. À utiliser lorsqu'une révision ou un audit de notebook est demandé.
official
handle-complaint
anthropic
Gère une réclamation client de bout en bout — extrait le contexte, rédige une réponse et suggère une correction opérationnelle. Accepte un email ou un ID de ticket en option…
official
use-case-triage
anthropic
Déterminer rapidement si une activité de traitement nécessite une PIA, une DPIA obligatoire au titre du RGPD, ou peut se poursuivre — détecte les conflits de politique de confidentialité et oriente vers la bonne…
official
board-minutes
anthropic
Rédige les procès-verbaux des réunions du conseil ou du comité dans votre format maison. Détecte automatiquement les réunions à venir du conseil et des comités à partir de votre calendrier, demande l'ordre du jour et…
official
renewal-tracker
anthropic
Affiche les contrats dont les échéances de résiliation approchent et prévient avant la fermeture des fenêtres de préavis, en travaillant à partir d’un registre de renouvellement tenu à jour. Utiliser lorsque l’utilisateur demande…
official