š¬ Solo Init OpenClaw Plugin & Skill | ClawHub
Looking to integrate Solo Init into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.
What this skill does
One-time founder onboarding ā generates personalized manifest, STREAM calibration, dev principles, and stack selection. Use when user says "set up solo factory", "initialize profile", "configure defaults", "first time setup", or "onboard me". Safe to re-run. Do NOT use for project scaffolding (use /scaffold).
Install
openclaw skills install @fortunto2/solo-initnpx clawhub@latest install solo-initFull SKILL.md
Open original| name | description | license |
|---|---|---|
| solo-init | One-time founder onboarding ā generates personalized manifest, STREAM calibration, dev principles, and stack selection. Use when user says "set up solo factory", "initialize profile", "configure defaults", "first time setup", or "onboard me". Safe to re-run. Do NOT use for project scaffolding (use /scaffold). | MIT |
SKILL.md content below is scrollable.
/init
One-time founder onboarding. Asks key questions, generates personalized configuration files. Everything stored as readable markdown/YAML ā edit anytime.
Two layers of config:
~/.solo-factory/defaults.yamlā org-level (bundle IDs, GitHub org, Apple Team ID). Shared across all projects..solo/in project ā founder philosophy, dev principles, STREAM calibration, selected stacks. Per-project but usually the same.
The templates in solo-factory/templates/ are defaults. This skill personalizes them based on your answers.
Run once after installing solo-factory. Safe to re-run ā shows current values and lets you update them.
Output Structure
~/.solo-factory/
āāā defaults.yaml # Org defaults (bundle IDs, GitHub, Team ID)
.solo/
āāā manifest.md # Your founder manifesto (generated from answers)
āāā stream-framework.md # STREAM calibrated to your risk/decision style
āāā dev-principles.md # Dev principles tuned to your preferences
āāā stacks/ # Only your selected stack templates
āāā nextjs-supabase.yaml
āāā python-api.yaml
Other skills read from these:
/scaffoldreadsdefaults.yamlfor<org_domain>,<apple_dev_team>placeholders +.solo/stacks/for stack templates/validatereadsmanifest.mdfor manifesto alignment check/setupreadsdev-principles.mdfor workflow config/streamreadsstream-framework.mdfor decision framework
Steps
1. Check existing config
- Read
~/.solo-factory/defaults.yamlā if exists, show current values - Check if
.solo/exists in project path - If both exist, ask: "Reconfigure from scratch?" or "Keep existing and skip?"
- If neither exists, continue to step 2
2. Determine project path
If $ARGUMENTS contains a path, use it. Otherwise use current working directory.
3. Ask org defaults (AskUserQuestion, 5 questions)
See references/questions.md ā "Round 0: Org Defaults" for full question specs.
4. Create org defaults
mkdir -p ~/.solo-factory
Write ~/.solo-factory/defaults.yaml:
# Solo Factory ā org defaults
# Used by /scaffold and other skills for placeholder replacement.
# Re-run /init to update these values.
org_domain: "<answer from 3.1>"
apple_dev_team: "<answer from 3.2>"
github_org: "<answer from 3.3>"
projects_dir: "<answer from 3.4>"
knowledge_base_repo: "<answer from 3.5>"
5. Ask Round 1 ā Philosophy & Values (AskUserQuestion, 4 questions)
See references/questions.md ā "Round 1: Philosophy & Values" for full question specs.
6. Ask Round 2 ā Development Preferences (AskUserQuestion, 4 questions)
See references/questions.md ā "Round 2: Development Preferences" for full question specs.
7. Ask Round 3 ā Decision Style & Stacks (AskUserQuestion, 3 questions)
See references/questions.md ā "Round 3: Decision Style & Stacks" for full question specs.
8. Load default templates + generate personalized files
See references/generation-rules.md for:
- Template source locations
- Output file structure (defaults.yaml, manifest.md, stream-framework.md, dev-principles.md, stacks/)
- Personalization rules per file (how answers map to generated content)
- Stack template mapping (answer ā YAML file)
10. Verify Solograph MCP (optional check)
- Try running
uvx solograph --helpor check if MCP tools are available - If available: "Solograph detected ā code graph ready"
- If not: "Tip: install Solograph for code search across projects (
pip install solographoruvx solograph)"
11. Summary
Solo Factory initialized!
Org config:
Config: ~/.solo-factory/defaults.yaml
org_domain: <value>
apple_dev_team: <value>
github_org: <value>
projects_dir: <value>
Founder profile:
Manifest: .solo/manifest.md
Dev Principles: .solo/dev-principles.md
STREAM: .solo/stream-framework.md
Stacks: .solo/stacks/ (N stacks)
These files are yours ā edit anytime.
Other skills read from .solo/ automatically.
Next steps:
/validate "your idea" ā validate with your manifest
/scaffold app nextjs-supabase ā scaffold with your stack
Edge cases
See references/generation-rules.md ā "Edge Cases" for full list.
Common Issues
Templates directory not found
Cause: solo-factory not installed as submodule or templates moved.
Fix: Skill generates from inline knowledge if templates missing. To fix permanently, ensure solo-factory/templates/ exists.
Stacks not copied to .solo/
Cause: Stack selection answer didn't map to a template file.
Fix: Check available stacks in templates/stacks/. Re-run /init and select from the list.
defaults.yaml already exists
Cause: Previously initialized. Fix: Skill detects existing config and asks whether to reconfigure. Choose "Reconfigure from scratch" to overwrite.