From solo
Launches automated multi-skill pipelines chaining /research→/validate for idea to PRD, or /scaffold→/setup→/plan→/build for full projects from stack. Uses state files and stop hooks for sequencing.
npx claudepluginhub fortunto2/solo-factory --plugin soloThis skill is limited to using the following tools:
Launch an automated multi-skill pipeline. The Stop hook chains skills automatically — no manual invocation needed between stages.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Launch an automated multi-skill pipeline. The Stop hook chains skills automatically — no manual invocation needed between stages.
/pipeline research "AI therapist app"
Chains: /research -> /validate
Produces: research.md -> prd.md
/pipeline dev "project-name" "stack"
/pipeline dev "project-name" "stack" --feature "user onboarding"
Chains: /scaffold -> /setup -> /plan -> /build
Produces: full project with workflow, plan, and implementation
Extract from $ARGUMENTS:
research or dev)If no arguments or unclear, ask:
Which pipeline do you want to run?
1. Research Pipeline — /research → /validate (idea to PRD)
2. Dev Pipeline — /scaffold → /setup → /plan → /build (PRD to running code)
Show what will happen:
Pipeline: {type}
Stages: {stage1} → {stage2} → ...
Idea/Project: {name}
This will run multiple skills automatically. Continue?
Ask via AskUserQuestion.
Run the first skill in the pipeline directly:
For research pipeline: Run /research "idea name"
For dev pipeline: Run /scaffold project-name stack
The Stop hook (if configured) will handle subsequent stages automatically. Without a Stop hook, manually invoke each skill in sequence.
If you have the solo-factory plugin installed, launcher scripts provide tmux dashboard and logging:
# Only available with Claude Code plugin — skip if not installed
solo-research.sh "idea name" [--project name]
solo-dev.sh "project-name" "stack" [--feature "desc"]
Pass --no-dashboard when running from within a skill context.
When all stages are done, output:
<solo:done/>
The Stop hook checks for this signal and cleans up the state file.
Location: .solo/pipelines/solo-pipeline-{project}.local.md (project-local) or ~/.solo/pipelines/solo-pipeline-{project}.local.md (global fallback)
Log file: .solo/pipelines/solo-pipeline-{project}.log
Format: YAML frontmatter with stages list, project_root, and log_file fields.
The Stop hook reads this file on every session exit attempt.
To cancel a pipeline manually: delete the state file solo-pipeline-{project}.local.md
When launched from terminal (without --no-dashboard), a tmux dashboard opens automatically with:
tail -f on log fileMonitor pipeline progress with standard tools:
# Watch log file
tail -f .solo/pipelines/solo-pipeline-<project>.log
# Check pipeline state
# Auto-refresh
watch -n2 -c solo-pipeline-status.sh
Otherwise, use standard tools:
# Log tail
tail -f .solo/pipelines/solo-pipeline-<project>.log
# Check state file
cat .solo/pipelines/solo-pipeline-<project>.local.md
Re-running a pipeline reuses any existing state — completed stages are skipped automatically.
[22:30:15] START | my-app | stages: research -> validate | max: 5
[22:30:16] STAGE | iter 1/5 | stage 1/2: research
[22:30:16] INVOKE | /research "AI therapist app"
[22:35:42] CHECK | research | .../research.md -> FOUND
[22:35:42] STAGE | iter 2/5 | stage 2/2: validate
[22:35:42] INVOKE | /validate "AI therapist app"
[22:40:10] CHECK | validate | .../prd.md -> FOUND
[22:40:10] DONE | All stages complete! Promise detected.
[22:40:10] FINISH | Duration: 10m
--no-dashboard when running from within Claude Code skill context.