Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/highflame-ai/zeroid/claude-skillnpx skills add highflame-ai/zeroid --skill claude-skillgit clone --depth 1 https://github.com/highflame-ai/zeroidWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/highflame-ai/zeroid/claude-skill)<a href="https://agentmods.dev/skills/highflame-ai/zeroid/claude-skill"><img src="https://agentmods.dev/badge/skills/highflame-ai/zeroid/claude-skill.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00051 | $0.02803 |
| Opus 5 | $0.00026 | $0.01401 |
| Sonnet 5 | $0.00010 | $0.00561 |
| Haiku 4.5 | $0.00005 | $0.00280 |
Grade A, and why
zeroid scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
When constructing curl commands, always use this pattern: How it starts
The opening of the file, as written. The whole thing — 251 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Zeroid — AI Agent Identity Management
You are an interactive assistant for managing agent identities and credentials via the Zeroid REST API. Zeroid assigns agents SPIFFE-based identities (WIMSE URIs), issues OAuth 2.1 tokens, supports delegation chains (RFC 8693 token exchange), and manages credential policies.
Setup
Before making any API calls, verify the environment is configured:
- Check for
ZEROID_BASE_URL(e.g.http://localhost:8899orhttps://auth.highflame.ai). - Check for
ZEROID_API_KEY(azid_sk_...key for authenticating admin API calls). - Check for
ZEROID_ACCOUNT_IDandZEROID_PROJECT_ID(tenant context sent asX-Account-IDandX-Project-IDheaders on admin routes).
If any are missing, ask the user to provide them. Store them as shell variables for the session.
# Verify setup
echo "ZEROID_BASE_URL=${ZEROID_BASE_URL:-not set}"
echo "ZEROID_API_KEY=${ZEROID_API_KEY:-not set}"
echo "ZEROID_ACCOUNT_ID=${ZEROID_ACCOUNT_ID:-not set}"
echo "ZEROID_PROJECT_ID=${ZEROID_PROJECT_ID:-not set}"
Admin routes (/*) may use X-Account-ID and X-Project-ID headers for tenant context if required by the deployment. Public routes (/oauth2/*, /health, /.well-known/*) do not require any tenant headers.
API Reference
Health Check
GET /health -- no auth required.
Returns {"status":"healthy","service":"zeroid","timestamp":"...","uptime_ms":...}.
Use this to verify the server is reachable before performing other operations.
Register an Agent
POST /agents/register -- creates an identity + API key atomically.
Required headers: X-Account-ID, X-Project-ID, Content-Type: application/json.
Request body fields:
name(required) -- human-readable nameexternal_id(required) -- unique identifier within the projectidentity_type(optional) -- one of:agent,application,mcp_server,service(defaults toagent)sub_type(optional) -- one of:orchestrator,autonomous,tool_agent,human_proxy,evaluator,chatbot,assistant,api_service,custom,code_agenttrust_level(optional) -- one of:unverified,verified_third_party,first_party(defaults tounverified)created_by(optional) -- user ID of the creator, becomesownerclaim in tokensframework(optional) -- e.g.langchain,autogen,crewaiversion(optional) -- agent version stringpublisher(optional) -- agent publisher or organizationdescription(optional) -- human-readable descriptioncapabilities(optional) -- JSON array of capabilitieslabels(optional) -- JSON object of key-value labelsmetadata(optional) -- JSON object of opaque product-specific metadatapublic_key_pem(optional) -- PEM-encoded EC P-256 public key for jwt_bearer and token_exchange grants
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed 4e5ed111ffc7
- 6d ago First seen · 251 lines · 51 tokens per session scan A 44227ed0083e
zeroid is a skill published in the GitHub repository highflame-ai/zeroid (164 stars, last pushed today), licensed Apache-2.0. It adds 51 tokens to every session and 2,803 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
add-go-test
Write or extend Go unit tests in this repo. Use when the user asks to add or update Go tests.
update-go-version
Update the Go toolchain version across the repo.
update-portal-ui
Guidelines for updating or designing pages in the portal React frontend (portal/src). Covers component conventions, link rendering rules, i18n patterns, and common pitfalls.
write-e2e-test
Write end-to-end (e2e) tests for authgear-server. Use when the user asks to write, add, or create e2e tests. The tests live in e2e/tests/ and are YAML-driven.
add-portal-screen
Add screens or components to the portal frontend. Use when the user asks to create a new portal page, screen, tab, or UI component.
api-design
Review or design APIs for Authgear. In review mode, evaluates a design draft against the checklist. In ideation mode, develops a design from a description and self-reviews it.