Create Your Skill Card
A Skill Card is a set of structured files that any AI agent can discover, read, and act on. You own your data, you set the rules, and agents work for you.
Install the CLI
Install the Scoutica CLI on your machine.
curl -fsSL https://raw.githubusercontent.com/traylinx/scoutica-protocol/main/install.sh | bash╔═══════════════════════════════════════════════════════╗║ ║║ ⚡ Scoutica Protocol — CLI Installer ║║ ║║ Your skills. Your rules. Your data. ║║ ║╚═══════════════════════════════════════════════════════╝
→ Creating directories in /Users/sebastian/.scoutica...→ Downloading scoutica CLI...→ Downloading JSON schemas...→ Downloading card templates...→ Downloading AI card generator...→ Downloading validation tool...
╔═══════════════════════════════════════════════════════╗║ ║║ ✅ Scoutica CLI installed successfully! ║║ ║╚═══════════════════════════════════════════════════════╝
To get started, run:
source /Users/sebastian/.zshrc && scoutica initAfter installation, reload your shell:
source ~/.zshrc # or source ~/.bashrcirm https://raw.githubusercontent.com/traylinx/scoutica-protocol/main/install.ps1 | iexThe POSIX full help surface looks like this; on Windows, scoutica help
shows only the seven commands in windows-subset-v1:
scoutica helpScoutica Protocol CLI v0.4.0Your skills. Your rules. Your data.
Usage: scoutica <command> [options] [directory]
🚀 Create: scan · init · import aijs🔧 Manage: info · preview · validate · publish · resolve🏢 Employer: org · role🌐 Network: evaluate · jobs · send · inbox · reply · deliver · register · identity⚙️ System: doctor · status · logs · update · help · versionChoose a creation method
There are four ways to create your Skill Card. Pick the one that fits your workflow.
Put your CV, certifications, and portfolio files in a folder, then let the CLI extract your Skill Card automatically. Extraction runs locally, but a remote-capable provider may receive the full generated prompt and document text. Review the provider before scanning sensitive files.
scoutica scan ~/my-docs/You can also specify a provider or output directory:
scoutica scan ~/my-docs/ --with gemini # use a specific providerscoutica scan ~/my-docs/ --with claude # use Claude Codescoutica scan ~/my-docs/ --with ollama # fully offlinescoutica scan ~/my-docs/ --output ./my-card/Supported document formats: .md .txt .pdf .docx .json .yaml .csv .html
Supported AI providers (auto-detected in this order):
| Provider | CLI command |
|---|---|
| Gemini CLI | gemini |
| Claude Code | claude |
| OpenAI Codex | codex |
| Mistral Vibe | vibe |
| OpenCode | opencode |
| Ollama | ollama |
| switchAILocal | ail |
| OpenClaw | openclaw |
Answer prompts step by step to build your card without any documents.
scoutica init ./my-card/You can also run scoutica init in the current directory, or use --ai for AI-guided instructions:
scoutica init # current directoryscoutica init --ai # AI-guided modeThis is the easiest path and requires no CLI installation. Suitable for non-technical users.
- Open
GENERATE_MY_CARD.mdon GitHub - Copy the entire file contents
- Paste it into any AI assistant — ChatGPT, Claude, Gemini, Copilot, etc.
- Follow the conversation — the AI will interview you and generate your 4 files
- Save the files to a GitHub repo
Alternatively, use the CLI to copy the prompt to your clipboard without running a full scan:
scoutica scan ~/my-docs/ --clipboardThen paste the clipboard contents into any AI chat.
Clone the protocol repo and edit the template files directly. Gives you full access to all protocol files.
git clone https://github.com/traylinx/scoutica-protocol.gitcp -r protocol/templates/ my-card/Edit the files in my-card/ with your data, then validate:
python tools/validate_card.py ./my-card/Validate your card
Check your card against the protocol schemas before publishing.
scoutica validate ./my-card/A passing result looks like:
✅ 5 checks passedFix any reported errors before proceeding.
Publish to GitHub
Push your card to a GitHub repository to make it discoverable by AI agents.
scoutica publish ./my-card/You can also chain validation and publish together:
scoutica validate && scoutica publishYour card will be live at your GitHub repository URL. Any AI agent can now discover and evaluate your profile.
What gets created
Section titled “What gets created”After creation, your card folder contains these files:
my-card/├── profile.json # Your skills, experience, tools├── rules.yaml # Your rules of engagement├── evidence.json # Links to your public work├── SKILL.md # Agent entry point├── scoutica.json # Discovery file (auto-generated)└── rules/ # Evaluation rule templates ├── evaluate-fit.md ├── negotiate-terms.md ├── verify-evidence.md └── request-interview.md