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).
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/fortunto2/solo-init/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.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-fortunto2-solo-init": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
solo-swarm
Launch 3 parallel research agents (market, users, tech) to investigate an idea from multiple angles simultaneously. Use when user says "swarm research", "parallel research", "investigate fast", "3 agents", "team research", or wants faster alternative to /research. Produces research.md. Do NOT use for solo research (use /research) or idea scoring (use /validate).
solo-build
Execute implementation plan tasks with TDD workflow, auto-commit, and phase gates. Use when user says "build it", "start building", "execute plan", "implement tasks", "ship it", or references a track ID. Do NOT use for planning (use /plan) or scaffolding (use /scaffold).
solo-metrics-track
Set up PostHog metrics plan with event funnel, KPI benchmarks, and kill/iterate/scale decision thresholds. Use when user says "set up metrics", "track KPIs", "PostHog events", "funnel analysis", "when to kill or scale", or "success metrics". Do NOT use for SEO metrics (use /seo-audit).
solo-audit
Health check knowledge base for broken links, missing frontmatter, tag inconsistencies, and coverage gaps. Use when user says "audit KB", "check frontmatter", "find broken links", "tag cleanup", or "knowledge base quality". Do NOT use for SEO audits (use /seo-audit) or code reviews.
solo-seo-audit
SEO health check for any URL — analyzes meta tags, OG, JSON-LD, sitemap, robots.txt, SERP positions, and scores 0-100. Use when user says "check SEO", "audit this page", "SEO score", "check meta tags", or "SERP position". Do NOT use for generating landing content (use /landing-gen) or social media posts (use /content-gen).