BrowserOS dev
Full feature development workflow. Explores codebase, designs, writes PRD, implements, reviews, fixes, and creates PR. Use with "/dev <feature description>".
install
source · Clone the upstream repo
git clone https://github.com/browseros-ai/BrowserOS
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/browseros-ai/BrowserOS "$T" && mkdir -p ~/.claude/skills && cp -r "$T/packages/browseros-agent/.claude/skills/dev" ~/.claude/skills/browseros-ai-browseros-dev && rm -rf "$T"
manifest:
packages/browseros-agent/.claude/skills/dev/SKILL.mdsource content
Dev Workflow — Orchestrator
Run the full feature development pipeline by invoking sub-skills sequentially. Start by invoking
/dev1-start $ARGUMENTS. Each sub-skill will automatically chain to the next one.
Pipeline
— High-level code exploration/dev1-start
— Design options (user picks one)/dev2-design
— Questions + PRD/dev3-prd
— Implementation/dev4-implement
— Code review + commit/dev5-review
— Apply review fixes + commit (skipped if review is clean)/dev6-review-fix
— Create PR, wait for Greptile, address comments, push/dev7-pr
Instructions
Invoke
/dev1-start $ARGUMENTS now. It will chain through the rest of the pipeline automatically. Each skill writes artifacts to .llm/<feature_name>/ and hands off to the next skill.
Skills that need user input (design choice, question answers, PR approval) will pause and wait before continuing.