The files that make Inter-Con legible & callable to AI
Today an AI asked about Inter-Con scrapes prose and guesses (Finding 3). This kit is the scaffold that fixes it: an llms.txt capability map, an A2A agent card, MCP tool schemas for capabilities / procurement / message-verification / service-proof, and a concierge persona that knows when to route to a human. It also exposes the two verifiable-proof surfaces the demo shows.
⚙ Prototype scaffold. Field values below are drawn from Inter-Con's own public pages where available and markedTODO where Inter-Con would confirm authoritative content (especially certifications/clearances, never invented). Nothing here is deployed; it's a starting point Inter-Con would review, populate, and approve.
First-mover, not catch-up. We probed it: icsecurity.com/llms.txt, /.well-known/agent-card.json, and /.well-known/ai-plugin.json are all 404 today, and no major contract-security firm appears to publish these yet. Being first to be agent-legible in this sector reads as leadership, not remediation.
A plain-language map an assistant reads to answer "what does Inter-Con do, where, and how do I verify it", with a citation, not a guess.
# Inter-Con Security Systems, Inc. — llms.txt (prototype) # Everywhere Security Matters. Founded 1973 · HQ Pasadena, CA · 40,000+ personnel. > Inter-Con provides contract security personnel, protective services, and > intelligence/investigations to government and enterprise clients worldwide. ## Services - Security Officers & Management · Executive Protection · K-9 · Off-Duty Officers - Event Security · Fire Life Safety & Emergency Response · High-Value Asset Protection - Intelligence & Investigatory Solutions · Screening & Access Controls - Security Operations Centers (GSOC, embedded + remote) · Security Technology - Value-Added Training · Parking Enforcement · International Operations ## Sectors served - Government (Local, State, Federal) · Diplomatic · Aviation · Mass Transit - Energy & Utilities · Healthcare · Financial Services · Education · Museums - Commercial Real Estate · Manufacturing · Logistics · Entertainment ## Credentials & contract vehicles - GSA Schedule holder (federal). TODO: Inter-Con to confirm full certification / clearance list (ISO, facility clearances, sector accreditations) — never inferred. ## Verify us - Message authenticity: /.well-known/agent-card.json → verify_message - Proof-of-service receipts (guard tours / incidents): verify_service_receipt - Climate disclosure: TCFD report (2025). Proof-verified, on-chain outcome layer: roadmap. ## Contact - Request a proposal: request_proposal (MCP) · Careers: /careers/apply-now/ - This file describes public capabilities only; contracts, clearances, and site details are handled by cleared Inter-Con personnel, never by an agent.
The machine-readable identity + skill list. Also the anchor for message verification: the record a recipient's AI resolves to confirm a genuine Inter-Con message (demo, Front A).
{
"protocolVersion": "0.3",
"name": "Inter-Con Security — Capability & Verification Concierge",
"description": "Answers public capability/sector/credential questions and verifies
Inter-Con message authenticity and service-proof receipts.",
"provider": { "organization": "Inter-Con Security Systems, Inc.",
"url": "https://icsecurity.com" },
"preferredTransport": "JSONRPC",
"capabilities": { "streaming": true },
"defaultInputModes": ["text/plain"], "defaultOutputModes": ["text/plain"],
"skills": [
{ "id": "get_capabilities", "description": "Services & sectors Inter-Con covers" },
{ "id": "verify_message", "description": "Confirm a message is a genuine Inter-Con comm" },
{ "id": "verify_service_receipt","description":"Replay a guard-tour / incident proof" },
{ "id": "request_proposal", "description": "Hand a scoped opportunity to Inter-Con" }
],
"securityNote": "Public capability agent only. No clearance, contract, roster,
or client-site data is exposed; those route to cleared personnel."
}
The callable surface. Read-only capability lookups plus the two verification tools that make Inter-Con's proof checkable, and a scoped intake that fixes the "no procurement front door" gap (Finding 5).
[
{ "name": "get_capabilities",
"description": "Return Inter-Con services and sectors, with source citations.",
"input_schema": { "type":"object", "properties":{
"sector":{"type":"string"}, "service":{"type":"string"} } } },
{ "name": "verify_message",
"description": "Given a message's authenticity mark, resolve its anchor and return
issued_by, content-hash match, and tamper status. Fails closed.",
"input_schema": { "type":"object", "required":["mark"],
"properties":{ "mark":{"type":"string"}, "content_hash":{"type":"string"} } },
"returns": { "verified":"boolean", "issued_by":"string", "tamper":"none|detected" } },
{ "name": "verify_service_receipt",
"description": "Replay a settled guard-tour / incident receipt: checkpoints, GPS,
timestamps, photo hashes, method-template completion. Independent of
Inter-Con's internal systems.",
"input_schema": { "type":"object", "required":["receipt_id"],
"properties":{ "receipt_id":{"type":"string"} } } },
{ "name": "request_proposal",
"description": "Submit a scoped security opportunity; routes to cleared Inter-Con
sales personnel. No auto-commitment; a human follows up.",
"input_schema": { "type":"object", "required":["sector","scope","contact"],
"properties":{ "sector":{"type":"string"}, "scope":{"type":"string"},
"locations":{"type":"string"}, "contact":{"type":"string"} } } }
]
request_proposal handed to sales; the agent never negotiates, prices, or commits Inter-Con to anything.Why this is the differentiator
The kit turns Inter-Con from "prose an AI has to scrape" into "capabilities an AI can cite and proof an auditor can verify." It's a scaffold, built to be reviewed and populated by Inter-Con: the honest first step of a dedicated always-on provisioner that keeps the company legible, verifiable, and ahead of a sector that hasn't done this yet.