plugin-architect

Define standard methods for constructing AI Plugins and Skills.

261|119|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/kennyzir/7deer_skills --skill plugin-architect-kennyzir
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: plugin-architect
Source: https://github.com/kennyzir/7deer_skills/tree/main/plugin-architect
Command: npx skills add https://github.com/kennyzir/7deer_skills --skill plugin-architect-kennyzir

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Defines a standard methodology for building AI Plugins and Skills, ensuring consistent identity, logic, interface, and tooling across projects.

Core Features & Use Cases

  • Identity framing: plugin.json describes the plugin's unique identity and metadata.
  • Logic governance: SKILL.md enforces triggers, instructions, and design constraints for AI thinking and actions.
  • Interface and extension: .agent/commands/<command-name>.md provides explicit user entry points; .agent/.mcp.json registers external capabilities for integrated tooling.
  • End-to-end workflow: guidelines for creating, validating, and deploying new skills with optional tooling.

Quick Start

Create a new skill under .agent/skills/<skill-name>, add SKILL.md with the required sections, and optionally add a commands entry and MCP configuration for extended capabilities.

Frequently Asked Questions about plugin-architect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is a standard method for building AI plugins and skills?▼

A standard method for building AI plugins enforces consistent identity, logic, interface, and tooling across projects by requiring a plugin.json for metadata and a SKILL.md for governing triggers and instructions.

How do I create a new AI skill and validate its structure?▼

To create a new AI skill, build it under .agent/skills/<skill-name>, add a SKILL.md with required sections, and optionally include a commands entry and MCP configuration to validate and deploy extended capabilities.

How does MCP configuration integrate external tools with AI skills?▼

MCP configuration integrates external tools by registering capabilities in a .agent/.mcp.json file, allowing the AI skill to interface with external tooling and extend its core functionality across projects.

Can I refactor existing skills to a standard plugin architecture?▼

Yes, you can refactor existing skills to a standard plugin architecture by applying identity framing through plugin.json and logic governance through SKILL.md to meet structural requirements.

When do I need to add slash commands to my AI plugin?▼

You need to add slash commands to an AI plugin when you want to provide explicit user entry points, which are implemented as markdown files under the .agent/commands/ directory.

What are the limitations of using SKILL.md for logic governance?▼

SKILL.md governs logic by enforcing triggers, instructions, and design constraints for AI thinking, limiting actions to defined boundaries to ensure consistent plugin behavior across projects.