Developer Overview
The Scoutica Protocol defines a standard way for AI agents and applications to discover, read, evaluate, and interact with professional profiles. Any platform — job board, ATS, recruiting agent, or personal website widget — can integrate by following the four-step flow below.
Integration flow
Section titled “Integration flow”Discover
Find a candidate’s card via scoutica.json — a well-known file placed at the root of their GitHub repository. It contains the card_url needed to fetch the full profile.
Fetch
Retrieve the structured card files from the card_url: profile.json, rules.yaml, and evidence.json. These contain skills, rules of engagement, and verifiable evidence links.
Evaluate
Score the candidate’s skills against job requirements and pre-screen against their rules. Check rules before making contact.
Interact
Proceed to negotiation or interview scheduling only for candidates who pass pre-screening.
Quick integration examples
Section titled “Quick integration examples”import requests, json
BASE = "https://raw.githubusercontent.com/{user}/{repo}/main"
def fetch_card(base_url): """Fetch all Scoutica Protocol card files from a base URL.""" return { 'profile': requests.get(f"{base_url}/profile.json").json(), 'rules': requests.get(f"{base_url}/rules.yaml").text, 'evidence': requests.get(f"{base_url}/evidence.json").json(), 'discovery': requests.get(f"{base_url}/scoutica.json").json(), }
card = fetch_card("https://raw.githubusercontent.com/user/my-card/main")print(card['profile']['name']) # "Alice Developer"print(card['profile']['skills']) # {languages: [...], frameworks: [...]}async function fetchCard(baseUrl) { const [profile, rules, evidence] = await Promise.all([ fetch(`${baseUrl}/profile.json`).then(r => r.json()), fetch(`${baseUrl}/rules.yaml`).then(r => r.text()), fetch(`${baseUrl}/evidence.json`).then(r => r.json()), ]); return { profile, rules, evidence };}
// Usageconst card = await fetchCard('https://raw.githubusercontent.com/user/my-card/main');console.log(card.profile.name);Data security rules
Section titled “Data security rules”All integrations must follow these six rules:
- Cache responsibly — refresh cards every 24 hours minimum
- Respect privacy zones — Zone 1 is public, Zone 2 needs auth, Zone 3 needs approval
- Never store Zone 3 data — email, phone, exact salary are ephemeral only
- Audit trail — log every card access for EU AI Act compliance
- Candidate can revoke — if card is deleted, purge all cached data
- Anti-discrimination — never evaluate on demographics, only skills and evidence
Explore the integration guide
Section titled “Explore the integration guide”Fetch and parse Scoutica Skill Cards in Python, JavaScript, Go, and CLI.
Discovery ProtocolHow AI agents discover Skill Cards via scoutica.json and registries.
Evaluating CandidatesScore candidates and pre-screen against their rules of engagement.
Evidence VerificationVerify candidate evidence URLs and calculate trust scores.
Schema ValidationValidate Skill Card files against the Scoutica Protocol JSON schemas.