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 skills add blueflyio/openstandardagents --skill ossa-agent-authoringgit clone --depth 1 https://github.com/blueflyio/openstandardagentsWrote 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/blueflyio/openstandardagents/ossa-agent-authoring)<a href="https://agentmods.dev/skills/blueflyio/openstandardagents/ossa-agent-authoring"><img src="https://agentmods.dev/badge/skills/blueflyio/openstandardagents/ossa-agent-authoring.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.00073 | $0.00546 |
| Opus 5 | $0.00036 | $0.00273 |
| Sonnet 5 | $0.00015 | $0.00109 |
| Haiku 4.5 | $0.00007 | $0.00055 |
Grade A, and why
ossa-agent-authoring scanned grade A with 0 findings 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 8d ago.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
OSSA Agent Authoring
Overview
Guidelines for authoring and validating OSSA agent manifests. Use the OSSA MCP server tools when available; otherwise use the OSSA CLI.
When to Apply
- Creating or editing
manifest.ossa.yamlor OSSA JSON manifests - Validating manifests against the OSSA schema
- Scaffolding a new agent directory and manifest
- Generating
.well-known/agent-card.jsonfrom a manifest - Publishing an OSSA agent to a registry (agentregistry/arctl)
MCP Tools (OSSA MCP server)
When the OSSA MCP server is attached (e.g. ossa-mcp in Cursor/Claude), use:
| Tool | Purpose |
|---|---|
ossa_validate |
Validate a manifest file; returns errors and warnings |
ossa_scaffold |
Create a new agent directory and default manifest |
ossa_generate |
Generate agent-card JSON from a manifest |
ossa_publish |
Publish to registry (or get instructions if not configured) |
CLI Fallback
From the project root or a path with manifests:
# Validate
npx @bluefly/openstandardagents validate <path-to-manifest>
# Scaffold
npx @bluefly/openstandardagents scaffold [name] -o .agents --with-prompts --with-tools
# Agent card
npx @bluefly/openstandardagents agent-card <path-to-manifest>
Manifest Minimum
A valid OSSA v0.4 manifest must have:
apiVersion(e.g.ossa/v0.4)kind: Agentmetadata.name(DNS-1123)spec.roleorspec.prompts.system.template
Governance
- Use schema version matching the manifest
apiVersionwhen validating. - For platform-specific validation (kagent, langchain, etc.), use the CLI
--platformflag or the MCPossa_validateplatform argument when supported.
Publish Path
To publish to agentregistry: use arctl publish when installed and configured, or POST the manifest and agent-card to the registry API. The ossa_publish MCP tool returns next steps when the registry is not configured.
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.
- 8d ago First seen · 63 lines · 73 tokens per session scan A 4ace6673b888
ossa-agent-authoring is a skill published in the GitHub repository blueflyio/openstandardagents (5 stars, last pushed 20d ago), licensed Apache-2.0. It adds 73 tokens to every session and 546 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
api-design
API contract design for REST and GraphQL, covering resource shape, URL and header versioning with deprecation windows, RFC 9457 Problem Details error handling, and OpenAPI specs. Use when specifying the wire contract an endpoint exposes, choosing a versioning scheme, or standardizing error response bodies across…
documentation-patterns
Technical documentation patterns for READMEs, ADRs, API docs (OpenAPI 3.1), changelogs, and writing style guides. Use when creating project documentation, writing architecture decisions, documenting APIs, or maintaining changelogs.
installing-caplets
Use when a user wants to install, set up, bootstrap, configure, wire, or troubleshoot Caplets for an agent, MCP client, Pi, OpenCode, Codex, Claude Code, self-hosted remote runtime, or local daemon-first setup.
writing-caplets
Use when creating, updating, reviewing, or validating Caplet files in any project or user environment, including Caplet manifests, agent-facing Caplet bodies, setup/auth metadata, Project Binding declarations, Vault references, runtime requirements, Caplet sets, or install-ready Caplets for private or public use.
caplets
Always use when the user asks to use a capability that may not appear in your visible toolset, or when accessing configured backend capabilities through Caplets, including APIs, CLIs, resources, prompts, backend operations, capability handles, tool schemas, or compact Code Mode CLI results.
aomi-build
Scaffold new Aomi apps and plugins from API docs, OpenAPI/Swagger specs, or SDK references. aomi-build generates production-ready Rust SDK crates (lib.rs, client.rs, tool.rs) with tool schemas, preambles, host-interop flows, and validation — turning a vendor's API surface into AI-agent-callable tools. It covers the…