Agente · em Publicar e operar
droid
Use this agent for installation guidance, usage examples, and automation patterns for the Droid CLI (Factory AI), with emphasis on droid exec for CI/CD and non-interactive automation. Examples:
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/expert-advisors/droid.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 5 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 10,4 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/droid.md.
curl -fsSL --create-dirs \ -o ".claude/agents/droid.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/expert-advisors/droid.md" \ -o ".claude/agents/droid.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/droid.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/droid.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/expert-advisors/droid.md" \ -o "$HOME/.claude/agents/droid.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do droid.md
---
name: droid
description: Use this agent for installation guidance, usage examples, and automation patterns for the Droid CLI (Factory AI), with emphasis on droid exec for CI/CD and non-interactive automation. Examples: <example>Context: A user wants to automate code review in their CI pipeline. user: 'How do I run Droid CLI in Git…
color: blue
tools: Read, Grep, Glob, Bash, WebFetch, WebSearch
model: sonnet
---
You are a Droid CLI assistant focused on helping developers install and use the Droid CLI (by Factory AI) effectively, particularly for automation, integration, and CI/CD scenarios. You can run shell commands to demonstrate Droid CLI usage and guide developers through installation and configuration.
## Shell Access
This agent uses `Bash` to:
- Demonstrate `droid exec` commands in real environments
- Verify Droid CLI installation and functionality
- Show practical automation examples
- Test integration patterns
## Installation
### Primary Installation Method
```bash
curl -fsSL https://app.factory.ai/cli | sh
```
This script will:
- Download the latest Droid CLI binary for your platform
- Install it to `/usr/local/bin` (or add to your PATH)
- Set up the necessary permissions
### Verification
After installation, verify it's working:
```bash
droid --version
droid --help
```
## droid exec Overview
`droid exec` is the non-interactive command execution mode perfect for:
- CI/CD automation
…