← 返回
效率工具 中文

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 "instal...
安装完整的 Solo Factory 工具包——包含 23 项创业技能及 solograph MCP 服务器(支持代码智能、知识库搜索和网络搜索)。当用户说“instal...”时使用。
fortunto2
效率工具 clawhub v1.1.1 1 版本 99911.7 Key: 无需
★ 0
Stars
📥 1,131
下载
💾 17
安装
1
版本
#latest

概述

/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
  1. Detect agent and choose install method:

```bash

# 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.

  1. Install all 23 skills:

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

```bash

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

```bash

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

```bash

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.

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

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

4a. Check uv/uvx:

```bash

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

```bash

mcporter config add solograph --stdio "uvx solograph"

```

For Claude Code (via .mcp.json):

```json

{

"mcpServers": {

"solograph": {

"command": "uvx",

"args": ["solograph"]

}

}

}

```

4c. Verify:

```bash

uvx solograph --help

```

  1. 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.

版本历史

共 1 个版本

  • v1.1.1 当前
    2026-03-29 10:08 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 448 📥 226,575
data-analysis

Research

fortunto2
深度市场调研——竞品分析、用户痛点、SEO/ASO关键词、命名/域名可用性及TAM/SAM/SOM市场规模估算。当用户说“resea...”时使用。
★ 0 📥 2,055
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 115,040