Skip to main content
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.
1

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 init
After installation, reload your shell:
source ~/.zshrc   # or source ~/.bashrc
Verify the installation:
scoutica help
Scoutica CLI v0.1.0
Your skills. Your rules. Your data.

Usage:
  scoutica <command> [options] [directory]

Commands:
  init              Create your Skill Card (interactive wizard)
  init --ai         Create card using AI assistant
  scan              Auto-generate card from your documents (AI-powered)
  resolve           Fetch and display a card from a URL
  validate          Validate card against protocol schemas
  publish           Push card to GitHub
  info              Show card summary
  update            Update the Scoutica CLI to the latest version
  help              Show this help
  version           Show version
2

Choose a creation method

There are four ways to create your Skill Card. Pick the one that fits your workflow.
3

Validate your card

Check your card against the protocol schemas before publishing.
scoutica validate ./my-card/
A passing result looks like:
✅ 5 checks passed
Fix any reported errors before proceeding.
4

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 publish
Your card will be live at your GitHub repository URL. Any AI agent can now discover and evaluate your profile.

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
Run scoutica info ./my-card/ at any time to see a summary of your published card.