| name | solo-factory |
| description | 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. |
| license | MIT |
| metadata | {"author":"fortunto2","version":"1.1.1","openclaw":{"emoji":"🏭"}} |
| allowed-tools | Bash, Read, Write, AskUserQuestion |
| argument-hint | [--mcp] [--skills-only] |
/factory
One-command setup for the entire Solo Factory startup toolkit.
What gets installed
23 skills — full startup pipeline from idea to shipped product:
| Phase | Skills |
|---|
| Analysis | research, validate, stream, swarm |
| Development | scaffold, setup, plan, build, deploy, review |
| Promotion | seo-audit, content-gen, community-outreach, video-promo, landing-gen, metrics-track |
| Utilities | init, 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
-
Parse arguments from $ARGUMENTS:
--mcp — also configure solograph MCP server
--skills-only — skip MCP setup (default)
- No args — install skills, ask about MCP
-
Detect agent and choose install method:
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.
-
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):
clawhub whoami 2>/dev/null || echo "Run: clawhub login"
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
2
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.