# Send Factory to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solo-factory",
    "name": "Factory",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fortunto2/solo-factory",
    "canonicalUrl": "https://clawhub.ai/fortunto2/solo-factory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solo-factory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solo-factory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "solo-factory",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T03:14:27.845Z",
      "expiresAt": "2026-05-10T03:14:27.845Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solo-factory",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solo-factory",
        "contentDisposition": "attachment; filename=\"solo-factory-1.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "solo-factory"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solo-factory"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solo-factory",
    "downloadUrl": "https://openagent3.xyz/downloads/solo-factory",
    "agentUrl": "https://openagent3.xyz/skills/solo-factory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solo-factory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solo-factory/agent.md"
  }
}
```
## Documentation

### /factory

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

### What gets installed

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

PhaseSkillsAnalysisresearch, validate, stream, swarmDevelopmentscaffold, setup, plan, build, deploy, reviewPromotionseo-audit, content-gen, community-outreach, video-promo, landing-gen, metrics-trackUtilitiesinit, 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:
# 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.


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.


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



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

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: fortunto2
- Version: 1.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T03:14:27.845Z
- Expires at: 2026-05-10T03:14:27.845Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solo-factory)
- [Send to Agent page](https://openagent3.xyz/skills/solo-factory/agent)
- [JSON manifest](https://openagent3.xyz/skills/solo-factory/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solo-factory/agent.md)
- [Download page](https://openagent3.xyz/downloads/solo-factory)