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 richfrem/agent-plugins-skills --skill ecosystem-standardsgit clone --depth 1 https://github.com/richfrem/agent-plugins-skillsWrote 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/richfrem/agent-plugins-skills/ecosystem-standards)<a href="https://agentmods.dev/skills/richfrem/agent-plugins-skills/ecosystem-standards"><img src="https://agentmods.dev/badge/skills/richfrem/agent-plugins-skills/ecosystem-standards.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.00041 | $0.01329 |
| Opus 5 | $0.00020 | $0.00665 |
| Sonnet 5 | $0.00008 | $0.00266 |
| Haiku 4.5 | $0.00004 | $0.00133 |
Grade A, and why
ecosystem-standards 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dependencies
This skill requires Python 3.8+ and standard library only. No external packages needed.
To install this skill's dependencies:
pip-compile ./requirements.in
pip install -r ./requirements.txt
See ./requirements.txt for the dependency lockfile (currently empty — standard library only).
Ecosystem Standards Review Protocol
This skill details how to perform an audit on new or existing capabilities (Skills, Plugins, Workflows, Sub-Agents, and Hooks) against authoritative ecosystem specifications to ensure they are created, installed, and structured correctly.
Instructions
When invoked to review a codebase component or a planned extension:
- Identify the Component Type: Determine if the subject is a Plugin boundary, an Agent Skill, an Antigravity Workflow/Rule, a Sub-Agent, or a Hook.
- Recall the Specs: Before reviewing, read the relevant specification file found in the
ecosystem-authoritative-sourcesskill library.- Path:
./references/*.md
- Path:
- Perform Rigorous Audit:
- Structure: Does the directory schema match the standard (
./plugin.json,my-skill/SKILL.md)? Are all supporting files strictly organized into the official optional directories (scripts/,references/,assets/) rather than cluttering the skill root? - Manifest Schema: Does
plugin.jsonfollow the authoritative schema? Check:nameis kebab-case (lowercase, hyphens, no spaces)versionuses semver (e.g.,0.1.0, not1.0)authoris an object{"name": "..."}, NOT a string- No
author.urlfield (not in spec) - No
commands_dirorskills_dirfields (auto-discovered) skills,agents,hooks,commands,scripts,dependenciesarrays are documentation-only (ignored by runtime, OK to keep for human readability)- See
references/plugins.mdinecosystem-authoritative-sourcesfor the full schema
- Naming: Verify the skill name uses the gerund form (
verb + -ing, e.g.,analyzing-spreadsheets). Reject generic nouns. Ensure thenameis 1-64 lowercase alphanumeric chars/hyphens only, contains NO consecutive hyphens (--), and EXACTLY matches the parent directory name. - Content: Does the YAML frontmatter adhere precisely to rules (
description1-1024 chars,compatibilitymax 500 chars,metadatastrictly string-to-string keys/values)? Provide the recommendation to runskills-ref validate ./my-skillto definitively catch parse errors. - Description Viewpoint: Ensure the
descriptionis written strictly in the third person ("Extracts text", not "I extract text") and isn't overly vague. - Progressive Disclosure: For Skills, is the
SKILL.mdfile appropriately constrained (< 500 lines) with extraneous detail pushed to one-level deep reference files? Reject deeply nested reference chains. - Reference Paths: Verify that all file references are strictly relative to the skill's root (e.g.,
scripts/extract.py), avoiding absolute paths outside the plugin boundaries. - Reference Readability: Do reference files >100 lines contain a Table of Contents for partial-read navigation?
- Script Quality: Verify python utility scripts do not punt errors back to the LLM (e.g., failing silently), but instead handle exceptions safely or emit clear
stderrmessages. Ensure they don't use undocumented "magic numbers" (voodoo constants). - Multi-CLI Support: When integrating agent CLI plugins, support exists for
claude-cli,gemini-cli, andcopilot-cli. Plugins must reflect the native CLI syntax in their system files. - Anti-Patterns: Check for hardcoded credentials and Windows style paths (
\). - Connector Abstraction: If the plugin uses MCP tools, does it include a
CONNECTORS.mdusing the~~categoryabstraction pattern instead of hardcoding specific tool names? This is required for portability. Ensure all native tool calls use the fully qualifiedServerName:tool_nameformat. - Interaction Design Quality: For skills with user interaction, verify they use appropriate patterns:
- Discovery phases use progressive questioning (broad → specific), not question walls
- Decision points offer numbered option menus (3-7 items max)
- Expensive operations have confirmation gates
- Multi-step workflows include inline copyable checklists.
- Skills end with next-action menus, not dead ends
- Workflows taking long documents gracefully degrade using Document Format Agnosticism.
- Execution Safety (Plan-Validate-Execute): Do destructive or massive workflows mandate an intermediate verifiable plan file (e.g.,
changes.json) before execution? - Dual-Mode Architecture: If the skill both creates new artifacts AND improves existing ones, verify it implements the Bootstrap + Iteration dual-mode pattern with separate sections and trigger phrases.
- Output Templates: If the skill generates reports or artifacts, verify it either defines an output template or negotiates the format with the user.
- Escalation and Safety: Workflows with external risk must explicitly implement Graduated Autonomy Routing and Escalation Trigger Taxonomies rather than blanket-stopping on all issues.
- Source Transparency: Data synthesis output MUST conclude with explicit
Sources CheckedandSources Unavailableblocks.
- Structure: Does the directory schema match the standard (
- Produce Feedback: Provide explicit, granular feedback outlining exactly which ecosystem constraints were violated and concrete suggestions for fixing them. Ensure your feedback is actionable.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- acceptance-criteria.md 486 B
- evals/evals.json 678 B
- evals/results.tsv 301 B
- fallback-tree.md 1.5 KB
- plugin.json 32 B
- references/acceptance-criteria.md 42 B
- references/fallback-tree.md 36 B
- references/patterns/action-forcing-output-with-deadline-attribution.md 82 B
- references/patterns/adversarial-objectivity-constraint.md 69 B
- references/patterns/anti-pattern-vaccination.md 59 B
- references/patterns/anti-symptom-triage.md 54 B
- references/patterns/artifact-embedded-execution-audit-trail.md 74 B
- references/patterns/artifact-generation-xss-compliance-gate.md 74 B
- references/patterns/artifact-lifecycle.md 53 B
- references/patterns/artifact-state-interrogative-routing.md 71 B
- references/patterns/asynchronous-benchmark-metric-capture.md 72 B
- references/patterns/audience-segmented-information-filtering.md 75 B
- references/patterns/category-calibrated-benchmark-anchoring.md 74 B
- references/patterns/category-semantic-deferred-tool-binding.md 74 B
- references/patterns/chained-command-invocation.md 61 B
- references/patterns/chained-commands.md 51 B
- references/patterns/client-side-compute-sandbox-constraint.md 73 B
- references/patterns/complexity-tiered-output.md 59 B
- references/patterns/conditional-step-inclusion.md 61 B
- references/patterns/connector-placeholders.md 57 B
- references/patterns/cyclical-state-propagation-contract.md 70 B
- references/patterns/delegated-constraint-verification-loop.md 73 B
- references/patterns/dual-mode-degradation.md 56 B
- references/patterns/dual-mode-meta-skill.md 55 B
- references/patterns/dual-register-communication-enforcement.md 74 B
- references/patterns/dynamic-specification-fetching.md 65 B
- references/patterns/embedded-deterministic-scoring-formula.md 73 B
- references/patterns/escalation-taxonomy.md 54 B
- references/patterns/explicit-seed-anchored-determinism.md 69 B
- references/patterns/graduated-autonomy.md 53 B
- references/patterns/graduated-source-attributed-elicitation.md 74 B
- references/patterns/highly-procedural-fallback-trees.md 67 B
- references/patterns/iteration-directory-isolation.md 64 B
- references/patterns/lifecycle-aware-knowledge.md 60 B
- references/patterns/local-interactive-output-viewer-loop.md 71 B
- references/patterns/mandatory-counterfactual-scenario-templating.md 79 B
- references/patterns/mode-invariant-compliance-gate.md 65 B
- references/patterns/multi-actor-operational-coordination-manifest.md 80 B
- references/patterns/multi-dimensional-tone.md 57 B
- references/patterns/multi-modal-routing.md 54 B
- references/patterns/multi-source-synthesis.md 57 B
- references/patterns/multi-variant-trigger-optimizer.md 66 B
- references/patterns/negative-instruction-constraint.md 66 B
- references/patterns/output-classification.md 56 B
- references/patterns/passive-style-injection-payload.md 66 B
- references/patterns/persistent-plugin-configuration.md 66 B
- references/patterns/population-normative-distribution-constraint.md 79 B
- references/patterns/pre-committed-rollback-contract.md 66 B
- references/patterns/pre-execution-input-manifest.md 63 B
- references/patterns/pre-execution-workflow-commitment-diagram.md 76 B
- references/patterns/priority-ordered-scanning.md 60 B
- references/patterns/quantification-enforcement.md 61 B
- references/patterns/rigorous-benchmarking-loop.md 61 B
- references/patterns/severity-stratified-output.md 61 B
- references/patterns/skill-command-two-tier.md 57 B
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.
- 3d ago First seen · 64 lines · 41 tokens per session scan A 8fec40dcade9
ecosystem-standards is a skill published in the GitHub repository richfrem/agent-plugins-skills (6 stars, last pushed today), licensed MIT. It adds 41 tokens to every session and 1,329 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
composio
Use Composio from Agent Swarm through the agent-swarm x composio CLI route, the swarmx MCP tool, or a registered ctx.api.composio script connection. Trigger when a task needs connected third-party app tools such as Gmail, Google Calendar, Google Docs, Google Drive, GitHub, Slack, Notion, or HubSpot through Tool Router…
close-issue
Close a GitHub or GitLab issue with a summary comment.
soul
Embody this digital identity. Read SOUL.md first, then STYLE.md, then examples/. Become the person—opinions, voice, worldview.
implement-issue
Implement a GitHub issue or GitLab issue and create a PR/MR.
bbc-skill
A read-only tool for collecting all comments from a Bilibili video, including replies and pinned comments. Bilibili is a Chinese video-sharing platform.
feature-implementation
Implement software features, fix bugs, and write production-quality code. Use this for hands-on development work including writing new code, modifying existing code, and debugging issues.