skills$openclaw/factory-ai
mitchellbernstein5.8k

by mitchellbernstein

factory-ai – OpenClaw Skill

factory-ai is an OpenClaw Skills integration for coding workflows. Use Factory AI's droid CLI for software engineering tasks. Supports interactive mode, exec mode, MCP servers, and plugins.

5.8k stars4.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namefactory-ai
descriptionUse Factory AI's droid CLI for software engineering tasks. Supports interactive mode, exec mode, MCP servers, and plugins. OpenClaw Skills integration.
ownermitchellbernstein
repositorymitchellbernstein/factory-ai
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mitchellbernstein/factory-ai
last updatedFeb 7, 2026

Maintainer

mitchellbernstein

mitchellbernstein

Maintains factory-ai in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
289 B
SKILL.md
2.3 KB
SKILL.md

name: factory-ai description: Use Factory AI's droid CLI for software engineering tasks. Supports interactive mode, exec mode, MCP servers, and plugins. metadata: {"clawdbot":{"emoji":"🤖","requires":{"bins":["droid"]}}

Factory AI Droid CLI

Use droid to build features, debug, refactor, and deploy code.

Installation

Already installed at: /Users/mitchellbernstein/.local/bin/droid

Authentication

droid login
# or set FACTORY_API_KEY env var
export FACTORY_API_KEY=your-api-key

Commands

Interactive Mode

droid                           # Start fresh session
droid "fix the login bug"       # Start with prompt
droid -r                        # Resume last session
droid -r session-id             # Resume specific session

Non-Interactive (Exec Mode)

droid exec "analyze this file"
droid exec "commit my changes with a good message"
droid exec "deploy to fly.io"
droid exec --help               # Show exec options

Options for Exec

droid exec --force "fix lint errors"    # Auto-apply without confirmation
droid exec --json "analyze code"        # JSON output
droid exec --model claude "task"        # Specify model

MCP Servers

droid mcp list                    # List installed MCP servers
droid mcp add server-name         # Add MCP server
droid mcp remove server-name      # Remove MCP server

Plugins

droid plugin list                 # List plugins
droid plugin add name             # Add plugin

Usage Patterns

Feature Development

droid exec "add a user settings page with dark mode toggle"

Debugging

droid exec "fix this error: [paste error]"

Code Review

droid exec "review the PR for security issues"

Git Operations

droid exec "create a PR for my changes"
droid exec "write a good commit message for the staged changes"

Deployment

droid exec "deploy to fly.io"

Multi-file Changes

droid
# Then in interactive mode:
@src/components/
@src/api/
Implement authentication flow

Notes

  • Droid has deep codebase understanding across your org
  • Supports model flexibility (OpenAI, Anthropic, xAI, etc.)
  • MCP servers for extended capabilities
  • Session-based memory for context continuity
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install factory-ai?

Run openclaw add @mitchellbernstein/factory-ai in your terminal. This installs factory-ai into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mitchellbernstein/factory-ai. Review commits and README documentation before installing.