ecosystem-standards

ecosystem-standards is a skill for Claude Code from richfrem/agent-plugins-skills. It costs 41 tokens per session (1,329 once invoked), scanned A, original, MIT.

A reference skill for auditing plugins, skills, workflows, sub-agents, and hooks against their expected ecosystem standards. It checks their structure, contents, and compliance with relevant specifications.

In plain words
What is it for?
Use it to review an existing agent component, identify its component type, and check whether its files and behaviour match the applicable standards.
Why use it?
It helps find missing or non-compliant files and configuration before a component is used or shared. It also directs the review to the relevant authoritative rules.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; mentions Gemini CLI.

Part of the agent-scaffolders plugin — 32 skills shipped together

Good fit Use it to review an existing agent component, identify its component type…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/richfrem/agent-plugins-skills/ecosystem-standards
Install

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.

Any agent
npx skills add richfrem/agent-plugins-skills --skill ecosystem-standards
Clone the repo
git clone --depth 1 https://github.com/richfrem/agent-plugins-skills

Made for: Claude Code.

Or install agent-scaffolders, the plugin that ships this one along with the rest of its 32 skills.

Wrote 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.

agentmods badge for ecosystem-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/richfrem/agent-plugins-skills/ecosystem-standards.svg)](https://agentmods.dev/skills/richfrem/agent-plugins-skills/ecosystem-standards)
Your own site
<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>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,329 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 3d ago against content hash 8fec40dcade9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

plugins/agent-scaffolders/skills/ecosystem-standards/SKILL.md · 64 lines

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:

  1. 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.
  2. Recall the Specs: Before reviewing, read the relevant specification file found in the ecosystem-authoritative-sources skill library.
    • Path: ./references/*.md
  3. 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.json follow the authoritative schema? Check:
      • name is kebab-case (lowercase, hyphens, no spaces)
      • version uses semver (e.g., 0.1.0, not 1.0)
      • author is an object {"name": "..."}, NOT a string
      • No author.url field (not in spec)
      • No commands_dir or skills_dir fields (auto-discovered)
      • skills, agents, hooks, commands, scripts, dependencies arrays are documentation-only (ignored by runtime, OK to keep for human readability)
      • See references/plugins.md in ecosystem-authoritative-sources for the full schema
    • Naming: Verify the skill name uses the gerund form (verb + -ing, e.g., analyzing-spreadsheets). Reject generic nouns. Ensure the name is 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 (description 1-1024 chars, compatibility max 500 chars, metadata strictly string-to-string keys/values)? Provide the recommendation to run skills-ref validate ./my-skill to definitively catch parse errors.
    • Description Viewpoint: Ensure the description is written strictly in the third person ("Extracts text", not "I extract text") and isn't overly vague.
    • Progressive Disclosure: For Skills, is the SKILL.md file 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 stderr messages. 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, and copilot-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.md using the ~~category abstraction pattern instead of hardcoding specific tool names? This is required for portability. Ensure all native tool calls use the fully qualified ServerName:tool_name format.
    • 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 Checked and Sources Unavailable blocks.
  4. Produce Feedback: Provide explicit, granular feedback outlining exactly which ecosystem constraints were violated and concrete suggestions for fixing them. Ensure your feedback is actionable.

Read the full file on GitHub · 64 lines

Files

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.

Changes

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.

  1. 3d ago First seen · 64 lines · 41 tokens per session scan A 8fec40dcade9

Subscribe to this mod's changes

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.