Requirements
- Python 3.12+ — Check with
python --version - pip — Comes with Python. Check with
pip --version - An LLM API key — At least one of: Anthropic, OpenAI, or Google Gemini (or a self-hosted LLM)
Install from PyPI
Initialize
Global setup (required)
~/.fliiq/ with:
~/.fliiq/.env and add at least one API key:
.env
Project-specific setup (optional)
.fliiq/ in your project directory with additional customization:
.fliiq/ > global ~/.fliiq/ > bundled defaults.
Optional Dependencies
Some skills require extra packages that aren’t installed by default (to keep the base install lightweight):| Extra | Install command | Skills enabled |
|---|---|---|
browser | pip install "fliiq[browser]" | web_navigate — browser automation via browser-use |
all | pip install "fliiq[all]" | All optional skill dependencies |
Verify Setup
doctor checks:
- API keys are set and valid
- SOUL.md is present
- Playbooks directory exists
- MCP servers are reachable (if configured)
- Skills directories are valid
Development Install
If you’re contributing to Fliiq or want to run from source:Upgrading
~/.fliiq/ directory (memory, skills, jobs, config) is preserved across upgrades.