plugins/mas-design/skills/designing-mas-plugins/SKILL.md
Design evaluation plugins following 12-Factor + MAESTRO principles
npx skillsauth add qte77/claude-code-plugins designing-mas-pluginsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Target: $ARGUMENTS
Trigger this skill when:
Plugins follow six principles. For worked code examples of each, see
references/core-principles-with-examples.md.
evaluate(context) -> result as a pure function; no side effects, no shared stateBefore implementing a plugin, verify:
evaluate() parameterself.cache = {} (breaks stateless)return {"score": 0.5} (use models)raise ValueError() (return error)config.get_global() (use settings)See references/plugin-implementation-template.md for the full EvaluatorPlugin abstract base class and a worked MyPlugin example with typed context/result models, error handling, and next-tier context filtering.
See references/plugin-testing-strategy.md for isolation test patterns — happy path and structured-error-handling tests using mocked context.
references/mas-design-principles.md — foundational design principles (existing)references/core-principles-with-examples.md — code examples for each of the six core principlesreferences/plugin-implementation-template.md — full EvaluatorPlugin + MyPlugin templatereferences/plugin-testing-strategy.md — isolation test patternsdevelopment
Verify an external or AI-generated security report against the actual codebase before acting on it. Use when handed a scanner PDF, automated teardown, audit report, or bug-bounty submission — classifies every finding CONFIRMED / OVERSTATED / FALSE-POSITIVE / FABRICATED and salvages the real work items.
development
Audits a site's SEO and AI-search (GEO) readiness — meta tags, Open Graph/Twitter, JSON-LD, robots/llms conventions — and generates fixes. Use when reviewing search visibility, social previews, structured data, or LLM/AI-crawler discoverability.
documentation
Generate or update README.md files across three scopes — repo (with project-type detection), account (GitHub user profile), and org (organization profile). Use when creating, updating, or aligning a README to org conventions.
development
Audit README.md files against best practices for repos, accounts, or orgs. Detects missing sections, stale links, inconsistent formatting, and convention violations. Use when reviewing README quality across one or many repos.