https://github.com/agentic-engineering-agency/agentic-engineering-plugins
Agentic Engineering's Plugin marketplace repository
https://github.com/agentic-engineering-agency/agentic-engineering-plugins
Last synced: 2 months ago
JSON representation
Agentic Engineering's Plugin marketplace repository
- Host: GitHub
- URL: https://github.com/agentic-engineering-agency/agentic-engineering-plugins
- Owner: Agentic-Engineering-Agency
- Created: 2026-01-21T22:19:48.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-21T22:23:14.000Z (5 months ago)
- Last Synced: 2026-01-29T00:12:17.966Z (5 months ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Agentic Engineering Plugins Directory
A curated directory of high-quality plugins for Claude Code by Agentic Engineering Agency.
> **⚠️ Important:** Make sure you trust a plugin before installing, updating, or using it. Agentic Engineering Agency does not control what MCP servers, files, or other software are included in third-party plugins and cannot verify that they will work as intended or that they won't change. See each plugin's homepage for more information.
## Structure
- **`/plugins`** - Internal plugins developed and maintained by Agentic Engineering Agency
- **`/external_plugins`** - Third-party plugins from partners and the community
## Installation
Plugins can be installed directly from this marketplace via Claude Code's plugin system.
To install, run `/plugin install {plugin-name}@agentic-engineering-plugins`
or browse for the plugin in `/plugin > Discover`
## Contributing
### Internal Plugins
Internal plugins are developed by Agentic Engineering Agency team members. See `/plugins/example-plugin` for a reference implementation.
### External Plugins
Third-party partners can submit plugins for inclusion in the marketplace. External plugins must meet quality and security standards for approval. To submit a new plugin, please open an issue or pull request with your plugin submission.
## Plugin Structure
Each plugin follows a standard structure:
```
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata (required)
├── .mcp.json # MCP server configuration (optional)
├── commands/ # Slash commands (optional)
├── agents/ # Agent definitions (optional)
├── skills/ # Skill definitions (optional)
└── README.md # Documentation
```
### Extension Types
- **Commands** - User-invoked slash commands (e.g., `/my-command`)
- **Skills** - Model-invoked capabilities triggered by context
- **Agents** - Specialized sub-agents for complex tasks (defined as markdown files in `agents/`)
- **MCP Servers** - External tool integrations via Model Context Protocol
### Plugin Metadata
Individual plugins use the `author` field in their `.claude-plugin/plugin.json` to identify the plugin creator, while the marketplace uses the `owner` field in `.claude-plugin/marketplace.json` to identify the marketplace maintainer. See `/plugins/example-plugin` for reference.
## Documentation
For more information on developing Claude Code plugins, see the [official documentation](https://code.claude.com/docs/en/plugins).