Get the FREE Ultimate OpenClaw Setup Guide →
R

Factory

Use Caution

@fortunto2

npx machina-cli add skill @fortunto2/solo-factory --openclaw
Files (1)
SKILL.md
5.1 KB

/factory

One-command setup for the entire Solo Factory solopreneur toolkit.

What gets installed

23 skills — full startup pipeline from idea to shipped product:

PhaseSkills
Analysisresearch, validate, stream, swarm
Developmentscaffold, setup, plan, build, deploy, review
Promotionseo-audit, content-gen, community-outreach, video-promo, landing-gen, metrics-track
Utilitiesinit, audit, retro, pipeline, humanize, index-youtube, you2idea-extract

MCP server (optional) — solograph provides 11 tools:

  • kb_search — semantic search over knowledge base
  • session_search — search past Claude Code sessions
  • codegraph_query / codegraph_explain / codegraph_stats — code intelligence
  • project_info / project_code_search — project registry
  • web_search — web search via SearXNG or Tavily

Steps

  1. Parse arguments from $ARGUMENTS:

    • --mcp — also configure solograph MCP server
    • --skills-only — skip MCP setup (default)
    • No args — install skills, ask about MCP
  2. Detect agent and choose install method:

    # Check what's available
    command -v npx >/dev/null 2>&1 && echo "npx: ok"
    command -v clawhub >/dev/null 2>&1 && echo "clawhub: ok"
    

    Method A (recommended): npx skills — works with any AI agent, installs from GitHub directly. Method B: clawhub install — for OpenClaw users who prefer ClawHub registry. Method C: Claude Code plugin — if user is on Claude Code, suggest plugin instead.

  3. Install all 23 skills:

    Method A — npx skills (recommended, works immediately):

    npx skills add fortunto2/solo-factory --all
    

    This single command installs all skills from GitHub to all detected agents (Claude Code, Cursor, Copilot, Gemini CLI, Codex, etc.). No account or publishing required.

    Method B — clawhub (OpenClaw users):

    # Check login
    clawhub whoami 2>/dev/null || echo "Run: clawhub login"
    
    # Install available skills
    for skill in \
      audit build community-outreach content-gen deploy \
      humanize index-youtube init landing-gen metrics-track \
      pipeline plan research retro review \
      scaffold seo-audit setup stream swarm \
      validate video-promo you2idea-extract; do
      echo -n "Installing solo-$skill... "
      clawhub install "solo-$skill" 2>&1 | tail -1
      sleep 2
    done
    

    If some skills are not yet on ClawHub, fall back to Method A for those.

    Method C — Claude Code plugin (all-in-one):

    claude plugin marketplace add https://github.com/fortunto2/solo-factory
    claude plugin install solo@solo --scope user
    

    This installs all 23 skills + 3 agents + hooks + MCP auto-start in one command.

  4. MCP setup (if --mcp or user agreed):

    Ask: "Set up solograph MCP for code intelligence and KB search?"

    4a. Check uv/uvx:

    command -v uvx >/dev/null 2>&1 && echo "uvx: ok" || echo "uvx: missing"
    

    If missing: "Install uv first: https://docs.astral.sh/uv/"

    4b. Configure MCP:

    For OpenClaw (via mcporter):

    mcporter config add solograph --stdio "uvx solograph"
    

    For Claude Code (via .mcp.json):

    {
      "mcpServers": {
        "solograph": {
          "command": "uvx",
          "args": ["solograph"]
        }
      }
    }
    

    4c. Verify:

    uvx solograph --help
    
  5. Report results:

    ## Solo Factory Setup Complete
    
    **Install method:** npx skills / clawhub / Claude Code plugin
    **Skills installed:** X/23
    **MCP configured:** yes/no
    **Failed:** [list any failures]
    
    ### Quick start
    
    Try these commands:
    - `/solo-research "your startup idea"` — scout the market
    - `/solo-validate "your startup idea"` — score + generate PRD
    - `/solo-stream "should I quit my job"` — decision framework
    
    ### Full pipeline
    
    research → validate → scaffold → setup → plan → build → deploy → review
    
    ### More info
    
    GitHub: https://github.com/fortunto2/solo-factory
    MCP: https://github.com/fortunto2/solograph
    

Common Issues

npx skills: command not found

Fix: Install Node.js 18+. npx comes with npm.

clawhub: some skills not found

Cause: Not all skills published to ClawHub yet. Fix: Use npx skills add fortunto2/solo-factory --all instead.

uvx: command not found (for MCP)

Fix: curl -LsSf https://astral.sh/uv/install.sh | sh

MCP tools not working

Fix: Test with uvx solograph --help. Check .mcp.json or mcporter config.

Source

git clone https://clawhub.ai/fortunto2/solo-factoryView on GitHub

Overview

Installs the full Solo Factory toolkit—23 startup skills plus the solograph MCP server. It provides a complete solopreneur pipeline from idea to shipped product, with code intelligence, knowledge-base search, and web search. This single entry point streamlines setup across analysis, development, promotion, and utilities.

How This Skill Works

Run a single command to install all 23 skills and optionally configure the solograph MCP server. The toolkit organizes skills into Analysis, Development, Promotion, and Utilities, and can be installed via npx skills, clawhub, or the Claude Code plugin. If you enable MCP with --mcp, follow the prompts to set up code intelligence and KB/web search tooling.

When to Use It

  • You want to install all Solo Factory skills in one go for a complete solopreneur pipeline.
  • You need a quick setup to move from idea to shipped product.
  • You require code intelligence, knowledge base search, or web search during development.
  • You are on an OpenClaw or Claude Code environment and want one command to install all skills.
  • You want to optionally configure the MCP server after skills installation.

Quick Start

  1. Step 1: Run the recommended install via npx skills add fortunto2/solo-factory --all
  2. Step 2: If needed, install MCP with --mcp and follow the prompts
  3. Step 3: Verify installation and start using the 23 startup skills across Analysis, Development, Promotion, and Utilities

Best Practices

  • Run in a compatible shell with Node.js and npx installed.
  • Use the default installation method (npx skills) for fastest setup.
  • If some skills are missing on ClawHub, fall back to Method A to install them.
  • Pass --mcp only if you intend to enable the MCP server and KB/code search.
  • Verify MCP prerequisites like uvx are installed before configuring MCP.

Example Use Cases

  • A founder wants a turnkey solopreneur workflow with 23 startup skills.
  • A developer sets up a new project and needs code intelligence and KB search.
  • An OpenClaw user installs via clawhub to manage skills across agents.
  • A Claude Code user uses the Claude Code plugin to install all skills in one go.
  • Teams migrating to Solo Factory adopt the one-command entry point.

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers