enhance-plugins

Featured

Use when analyzing plugin structures, MCP tools, and plugin security patterns.

AI & Automation 967 stars 111 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
99
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# enhance-plugins Analyze plugin structures, MCP tools, and security patterns against best practices. ## Parse Arguments ```javascript const args = '$ARGUMENTS'.split(' ').filter(Boolean); const targetPath = args.find(a => !a.startsWith('--')) || '.'; const fix = args.includes('--fix'); ``` ## Plugin Locations | Platform | Location | |----------|----------| | Claude Code | `plugins/*/`, `.claude-plugin/plugin.json` | | OpenCode | `.opencode/plugins/`, MCP in `opencode.json` | | Codex | MCP in `~/.codex/config.toml` | ## Workflow 1. **Discover** - Find plugins in `plugins/` directory 2. **Load** - Read `plugin.json`, agents, commands, skills 3. **Analyze** - Run pattern checks by certainty level 4. **Report** - Generate markdown output 5. **Fix** - Apply auto-fixes if `--fix` (HIGH certainty only) ## Detection Patterns ### 1. Tool Schema Design (HIGH) Based on function calling best practices: **Required elements:** ```json { "name": "verb_noun", "description": "What it does. When to use. What it returns.", "input_schema": { "type": "object", "properties": { "param": { "type": "string", "description": "Format and example" } }, "required": ["param"], "additionalProperties": false } } ``` **The "Intern Test"** - Can someone use this tool given only the description? | Issue | Certainty | Auto-Fix | |-------|-----------|----------| | Missing `additionalProperties: false` | HIGH | Yes | | Missing `required` array |...

Details

Author
agent-sh
Repository
agent-sh/agentsys
Created
7 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category