mcpbeat Sign in

First Run Skill for Claude

Guide a new user through their first computer-use agent run (env check, safe browser-only task, then open the trajectory viewer).

827 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
17366
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/anthropics/claude-quickstarts --skill first-run

What it tells the agent to use

found in the instruction text
Read reads your files
Grep reads your files

The instruction itself

6 sections, as written by the author

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.

Other skills for the same job

different authors, same section of the catalogue
Notebooklm
by ZhanlinCui
×6

Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.

26k tokens scripts
Playwright Skill
by lackeyjb
×4

Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions, validate web functionality, or perform any browser-based testing.

12k tokens scripts
Electron
by vercel-labs
vendor ×2

Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include "automate Slack app", "control VS Code", "interact with Discord app", "test this Electron app", "connect to desktop app", or any task requiring automation of a native Electron application.

2k tokens
Anchor Browser Automation
by christophacham
×2

Automate Anchor Browser tasks via Rube MCP (Composio). Always search tools first for current schemas.

756 tokens needs MCP
Browser Tool Automation
by christophacham
×2

Automate Browser Tool tasks via Rube MCP (Composio). Always search tools first for current schemas.

749 tokens needs MCP
Giil
by Dicklesworthstone
×2

Get Image [from] Internet Link - Zero-setup CLI for downloading full-resolution images from iCloud, Dropbox, Google Photos, and Google Drive share links. Four-tier capture strategy, browser automation, HEIC conversion, album support. Node.js/Playwright.

3k tokens
Browser Extension Builder
by ComeOnOliver
×2

Expert in building browser extensions that solve real problems - Chrome, Firefox, and cross-browser extensions. Covers extension architecture, manifest v3, content scripts, popup UIs, monetization strategies, and Chrome Web Store publishing. Use when: browser extension, chrome extension, firefox addon, extension, manifest v3.

4k tokens
Screenshots
by ComeOnOliver
×2

Generate marketing screenshots of your app using Playwright. Use when the user wants to create screenshots for Product Hunt, social media, landing pages, or documentation.

6k tokens

How to use it

Copy the folder

Take anthropics/first-run from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.