ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

solo-factory

Install the full Solo Factory toolkit — 23 startup skills + solograph MCP server for code intelligence, KB search, and web search. Use when user says "install solo factory", "set up solo", "install all solo skills", "startup toolkit", or "solo factory setup". This is the one-command entry point for the entire startup pipeline.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/fortunto2/solo-factory
Or

/factory

One-command setup for the entire Solo Factory startup 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 15 tools:

  • kb_search — semantic search over knowledge base
  • session_search — search past Claude Code sessions
  • codegraph_query / codegraph_explain / codegraph_stats / codegraph_shared — code intelligence
  • project_info / project_code_search / project_code_reindex — project registry
  • source_search / source_list / source_tags / source_related — source management
  • web_search — web search

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):

Metadata

Author@fortunto2
Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-fortunto2-solo-factory": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.

Related Skills

solo-swarm

Launch 3 parallel research agents (market, users, tech) to investigate an idea from multiple angles simultaneously. Use when user says "swarm research", "parallel research", "investigate fast", "3 agents", "team research", or wants faster alternative to /research. Produces research.md. Do NOT use for solo research (use /research) or idea scoring (use /validate).

fortunto2 2387

solo-build

Execute implementation plan tasks with TDD workflow, auto-commit, and phase gates. Use when user says "build it", "start building", "execute plan", "implement tasks", "ship it", or references a track ID. Do NOT use for planning (use /plan) or scaffolding (use /scaffold).

fortunto2 2387

solo-metrics-track

Set up PostHog metrics plan with event funnel, KPI benchmarks, and kill/iterate/scale decision thresholds. Use when user says "set up metrics", "track KPIs", "PostHog events", "funnel analysis", "when to kill or scale", or "success metrics". Do NOT use for SEO metrics (use /seo-audit).

fortunto2 2387

solo-audit

Health check knowledge base for broken links, missing frontmatter, tag inconsistencies, and coverage gaps. Use when user says "audit KB", "check frontmatter", "find broken links", "tag cleanup", or "knowledge base quality". Do NOT use for SEO audits (use /seo-audit) or code reviews.

fortunto2 2387

solo-seo-audit

SEO health check for any URL — analyzes meta tags, OG, JSON-LD, sitemap, robots.txt, SERP positions, and scores 0-100. Use when user says "check SEO", "audit this page", "SEO score", "check meta tags", or "SERP position". Do NOT use for generating landing content (use /landing-gen) or social media posts (use /content-gen).

fortunto2 2387