Documentation Index
Fetch the complete documentation index at: https://docs.scoutica.com/llms.txt
Use this file to discover all available pages before exploring further.
Everything runs locally. Your documents and data never leave your machine — the scan command pipes your files to a local AI CLI with no cloud API calls.
Prerequisites
Before installing, make sure you have:- Git — required to publish your card to GitHub
- Python 3 — required for card validation (
python3 --versionto check) - An AI CLI provider — at least one of the providers below must be installed for
scoutica scanto work
Supported AI providers
scoutica scan auto-detects installed providers in this order:
| Provider | CLI command | Install | Use Case |
|---|---|---|---|
| Gemini CLI | gemini | google-gemini/gemini-cli | Best for multimodal analysis (e.g., parsing PDFs directly) |
| Claude Code | claude | anthropics/claude-code | Best for strict JSON adhering and rigorous schema compliance |
| OpenAI Codex | codex | openai/codex | Solid standard API toolchain integration |
| Mistral Vibe | vibe | mistralai/mistral-vibe | Quick, local, specialized tasks without high compute |
| OpenCode | opencode | opencode-ai/opencode | Open source LLM bridging via bash |
| Ollama | ollama | ollama.com | 100% offline local models for absolute privacy |
| switchAILocal | ail | traylinx/switchAILocal | Fallback routing through your own AI proxy |
| OpenClaw | openclaw | openclaw/openclaw | Deep AI agent integrations and swarm coordination |
--clipboard mode to copy the scan prompt to any AI chat without installing a local provider.
Option 1: Agent-First Install (Zero Friction)
The easiest way to generate your card is to give these instructions directly to an AI agent (like Claude Code, Cursor, or OpenClaw):Option 2: Manual Install (Recommended for Devs)
Run the installer
- Scaffold config directory: Creates
~/.scoutica/structure. - Binary download: Puts the core executable in
~/.scoutica/bin. - Schemas download: Pulls
v1schemas into~/.scoutica/schemasfor blazing fast offline validation. - Templates download: Pulls rules and markdown templates used for generation.
- Path registration: Appends
~/.scoutica/binto yourPATH.
Reload your shell (macOS / Linux)
After installation, reload your shell configuration so the
scoutica command is available:Manual Installation
For users who prefer exhaustive control over their system configuration and want to avoid piping a remote script directly to bash, you can install Scoutica Protocol manually.Create the application directory
Scoutica expects its templates and schemas to live in the
SCOUTICA_HOME path (~/.scoutica/ by default).Keeping the CLI up to date
Updates are natively handled by the CLI through the update daemon. Unlike Node.js or Homebrew packages, it manages itself cleanly inside of~/.scoutica.
VERSION against the remote GitHub stable branch. If an update exists, it streams the latest core assets instantly. No node modules, no dependencies.
Troubleshooting
scoutica: command not found
Ensure that ~/.scoutica/bin actively exists in your $PATH.
Check it by running:
scoutica scan ~/CV, it requires pdftotext.
Empty response from provider
Ensure your local AI provider is configured and authenticated.
What’s next
Now that the CLI is installed seamlessly, let’s create your first profile:Quick start
Walk through the complete flow: scan, validate, and publish your Skill Card in 5 minutes.