looplia init
The init command sets up your Looplia workspace at ~/.looplia/ with all required plugins and workflows.
looplia init [options]Options
Section titled “Options”| Option | Description |
|---|---|
--yes, -y | Skip confirmation prompts |
What It Does
Section titled “What It Does”The init command:
- Creates the workspace directory at
~/.looplia/ - Installs plugins from the marketplace:
looplia-core— Infrastructure plugin with commands and executorlooplia-writer— Domain plugin with content analysis skills
- Extracts workflows to
~/.looplia/workflows/ - Creates configuration files for user profile and provider settings
Examples
Section titled “Examples”# Interactive initializationlooplia init
# Non-interactive (skip prompts)looplia init --yesWorkspace Structure
Section titled “Workspace Structure”After initialization:
~/.looplia/├── looplia-core/ # Infrastructure plugin│ ├── .claude-plugin/│ │ └── plugin.json # Plugin manifest│ ├── CLAUDE.md # Plugin instructions│ ├── commands/│ │ ├── run.md # /looplia:run command│ │ └── build.md # /looplia:build command│ ├── skills/│ │ ├── workflow-executor/│ │ ├── workflow-validator/│ │ └── ...│ └── hooks/│ └── session-logger.md│├── looplia-writer/ # Domain plugin│ ├── .claude-plugin/│ │ └── plugin.json│ └── skills/│ ├── media-reviewer/│ ├── idea-synthesis/│ └── writing-kit-assembler/│├── workflows/ # Workflow definitions│ └── writing-kit.md│├── sandbox/ # Execution sandboxes (preserved)├── user-profile.json # User preferences (preserved)└── looplia.setting.json # Provider config (preserved)Re-initialization
Section titled “Re-initialization”Run init again to update plugins to the latest version:
# Update plugins (will overwrite existing)looplia init --yesYour sandboxes, user profile, and provider settings are not overwritten.
Troubleshooting
Section titled “Troubleshooting”Permission Denied
Section titled “Permission Denied”If you see permission errors:
# Check directory permissionsls -la ~/.looplia/
# Fix ownership if neededsudo chown -R $(whoami) ~/.looplia/Plugin Load Errors
Section titled “Plugin Load Errors”If plugins fail to load after init:
# Remove and reinitializerm -rf ~/.looplia/looplia-core ~/.looplia/looplia-writerlooplia init --yesSee Also
Section titled “See Also”- Installation — Full installation guide
- run — Execute workflows
- config — Configure settings