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 kennyzir/7deer_skills --skill plugin-architectgit clone --depth 1 https://github.com/kennyzir/7deer_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/kennyzir/7deer_skills/plugin-architect)<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/plugin-architect"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/plugin-architect.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00021 | $0.00851 |
| Opus 5 | $0.00010 | $0.00426 |
| Sonnet 5 | $0.00004 | $0.00170 |
| Haiku 4.5 | $0.00002 | $0.00085 |
Grade A, and why
plugin-architect 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.
How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
🏗️ Plugin Architect Protocol
本 Skill 定义了本项目构建 AI Plugins 的唯一标准。所有 Skill 的创建与修改必须遵循此方法论。
When This Skill Applies
- 当用户要求"创建一个新 Skill"时。
- 当需要重构现有 Skills 以符合标准时。
- 当需要为 Skill 添加外部工具 (MCP) 或快捷指令 (Slash Commands) 时。
Instructions
一个完整的 Plugin (Skill System) 由四个核心组件构成。
1. The Identity (plugin.json)
插件的身份证。定义插件在系统中的唯一标识。
- Location:
.agent/.claude-plugin/plugin.json(Global) 或skill-name/plugin.json(Local) - Schema:
{ "schema_version": "1.0", "name": "devil-hunter-nexus-plugin", "description": "The cognitive engine and SEO factory for Roblox game sites.", "version": "1.0.0", "authors": ["Devil Hunter Team"] }
2. The Logic (SKILL.md)
AI 的思维链。必须包含明确的触发条件 (Trigger) 和结构化指令。
- Location:
.agent/skills/<skill-name>/SKILL.md - Frontmatter: Must include
nameanddescription. - Mandatory Sections:
## When This Skill Applies: 明确的触发条件 (Contextual Triggers)。- Good: "When the user asks to analyze SEO metadata."
- Bad: "Use this for SEO."
## Instructions: 具体的操作步骤、原则或代码规范。## Actions(Optional): 可用的工具或脚本引用。
3. The Interface (commands/)
用户的快捷入口。定义以 / 开头的显式调用指令。
- Location:
.agent/commands/<command-name>.md - Format:
--- description: Audit the current page for SEO compliance argument-hint: [url or path] active-skills: [nextjs-seo-foundations] --- # /audit-seo 1. Check presence of Metadata (Title, Description). 2. Validate JSON-LD Schema. 3. Report missing 'canonical' tags.
4. The Tooling (.mcp.json)
外部能力的延伸。通过 Model Context Protocol 连接真实世界。
- Location:
.agent/.mcp.json - Usage: 如果 Skill 需要执行复杂脚本 (e.g., Python Script, Database Query),需在此注册 MCP Server。
Workflow: How to Build a New Skill
- Define Intent: 是"思维模式" (Thinking) 还是"具体操作" (Action)?
- Thinking -> 重点编写
SKILL.md的 Instructions。 - Action -> 重点编写
commands/和scripts/。
- Thinking -> 重点编写
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 · 91 lines · 21 tokens per session scan A ca77142de1cd
plugin-architect is a skill published in the GitHub repository kennyzir/7deer_skills (303 stars, last pushed today), licensed MIT. It adds 21 tokens to every session and 851 once invoked, about $0.0001 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…