homingo init
Interactive project setup. Creates a configuration file and scaffolds a skills directory with a sample skill.
Usage
bash
homingo initWhat It Does
- Prompts you to choose a model (Anthropic or OpenAI)
- Asks for your skills directory path
- Creates
~/.homingo/config.jsonwith your settings - Creates a sample skill directory with a
SKILL.mdtemplate
Generated Files
~/.homingo/
config.json # Homingo configuration (global)
your-project/
skills/ # (or your chosen path)
example-skill/
SKILL.md # Sample skill templateExample Session
$ homingo init
? Select your model provider: Anthropic
? Model name: claude-sonnet-4-20250514
? Skills directory: ./skills
✔ Created ~/.homingo/config.json
✔ Created sample skill at skills/example-skill/SKILL.md
Run `homingo audit` to scan your skill fleet.Notes
- Running
initwhen~/.homingo/config.jsonalready exists will pre-fill prompts with existing values - See Configuration for all available config options
