BeClaude

aeo-security

New
2Community RegistryGeneralby AeyeOps

Security assessment agents for vulnerability scanning, compliance validation, code auditing, and remediation guidance

Community PluginView Source

Overview

Reusable skills, agents, and workflows for AI-assisted development.

Stop reinventing the wheel. Get battle-tested automation for architecture design, testing workflows, documentation generation, and more — organized into installable plugins you can mix and match.

mermaid
graph LR
    subgraph "AEO Skill Marketplace"
        S["Skills<br/>Domain Knowledge"]
        A["Agents<br/>Autonomous Workers"]
        C["Commands<br/>Slash Actions"]
    end

    S --> |"contextual"| WORK["Your Work"]
    A --> |"delegated"| WORK
    C --> |"invoked"| WORK

What's Inside

CategoryPluginsWhat You Get
Architecture2 pluginsSystem design, C4 diagrams, ADRs, Diataxis documentation
Testing3 pluginsTDD workflows, QA agents, security scanning
Automation3 pluginsEPCC workflow, n8n workflows, Python tooling
Productivity3 pluginsAgile roles, requirements gathering, troubleshooting
Developer Tools6 pluginsClaude skills, VS Code extensions, repo governance, deployment, performance, self-improving memory
Design1 pluginUX optimization, React PWA patterns
Infrastructure1 pluginAWS and Azure CLI operations, cloud resource management

Total: 19 plugins · 41 skills · 25 agents · 37 commands


Quick Start

bash
# Add the marketplace
/plugin marketplace add AeyeOps/aeo-skill-marketplace

# Install what you need
/plugin install aeo-architecture@aeo-skill-marketplace
/plugin install aeo-testing@aeo-skill-marketplace

Or load directly for development:

bash
claude --plugin-dir ./aeo-skill-marketplace/aeo-architecture

Architecture & Design

Design systems, document decisions, and maintain quality.

PluginDescription
**aeo-architecture**5 agents for system design, C4 diagrams, ADRs, and architecture review
**aeo-docs**diataxis skill (tutorials, how-tos, references, explanations), architecture-docs skill (C4, ADRs, OpenAPI, system design), d2 and markdown-mermaid diagramming skills. Pure-skill plugin, no agents or commands

Skills included: MCP server design, Diataxis docs, architecture docs, d2 + Mermaid diagramming Commands: /code-review, /design-architecture, /refactor-code (from aeo-architecture)


Testing & Quality

Enforce quality through systematic testing workflows.

PluginDescription
**aeo-tdd-workflow**Red-green-refactor methodology with TDD skills and commands
**aeo-testing**Test planning, quality gates, coverage analysis
**aeo-security**Vulnerability scanning, compliance validation, permission auditing

Commands: /tdd-feature, /tdd-bugfix, /security-scan, /permission-audit, /generate-tests


Workflow Automation

Structured methodologies for complex development tasks.

PluginDescription
**aeo-epcc-workflow**Explore-Plan-Code-Commit cycle with 7 commands and 16 reference files
**aeo-n8n**7 skills for n8n workflow automation — expressions, nodes, validation, patterns
**aeo-python**CLI engineering, data pipelines, terminal UI development

Commands: /epcc-explore, /epcc-plan, /epcc-code, /epcc-commit, /epcc-prd, /epcc-resume, /trd


Team & Process

Agents that embody specific roles and responsibilities.

PluginDescription
**aeo-agile-tools**Scrum Master, Product Owner, Business Analyst, Project Manager
**aeo-requirements**Product discovery, technical specifications, build-vs-buy analysis
**aeo-troubleshooting**Systematic debugging with escalation mechanisms

Commands: /sprint-planning, /retrospective, /prd, /tech-req, /troubleshoot


Design & UX

User experience optimization and interface design.

PluginDescription
**aeo-ux-design**UI design, accessibility validation, WCAG compliance

Skills included: React PWA patterns with shadcn/ui


Developer Tools

Skills for building AI-powered tooling.

PluginDescription
**aeo-claude**Agent SDK reference, skill creation, prompt engineering, Opus prompting, ultra validation workflows, session retrospectives, Cowork session migration
**aeo-deployment**Release orchestration, compliance automation, progressive rollouts
**aeo-performance**Profiling, bottleneck identification, optimization planning
**aeo-nous**Self-improving memory — extracts learnings from sessions, injects context at startup
**aeo-dev**Repository governance (bootstrap, curate-docs, roadmap alignment, sanitize), VS Code extension development (stable and Insiders)
**aeo-vsc-cc-sessions-sidecar**Hook sidecar for AEO VSC CC Sessions extension — per-process session state, event logging, and lineage

Skills included: Agent SDK patterns, skill authoring, command development, prompt engineering, Opus prompting, repo governance, VS Code extension APIs (TreeView, WebviewView, CSP), Claude Cowork session migration (cross-machine transcript stitching, path rewrites, compact_boundary truncation workaround) Commands: /aeo-retro, /aeo-create-claude-prompt, /aeo-review-claude-prompt, /aeo-repo-bootstrap, /aeo-repo-curate-docs, /aeo-repo-roadmap-alignment-review, /aeo-repo-sanitize, /aeo-reconcile, /setup, /analyze-performance


Infrastructure

Cloud operations and resource management.

PluginDescription
**aeo-infra**AWS CLI v2 and Azure CLI operations — authentication, credential management, service patterns, dangerous command awareness

Skills included: AWS CLI operations, Azure CLI operations, JMESPath queries, service patterns


How Plugins Work

Each plugin can contain any combination of:

code
plugin-name/
├── .claude-plugin/
│   └── plugin.json       # Metadata and version
├── skills/
│   └── topic/
│       └── SKILL.md      # Domain knowledge (loaded contextually)
├── agents/
│   └── role.md           # Autonomous workers (delegated via Task)
├── commands/
│   └── action.md         # Slash commands (invoked directly)
└── hooks/
    └── hooks.json        # Event automation
ComponentHow It Works
SkillsLoaded automatically when context matches trigger phrases
AgentsDelegated tasks via the Task tool for autonomous work
CommandsInvoked directly with /command-name
HooksRun automatically on events (tool use, session start, etc.)

Creating Your Own Plugin

  1. Create a directory at the marketplace root:

``bash mkdir -p my-plugin/.claude-plugin ``

  1. Add plugin.json:

``json { "name": "my-plugin", "version": "0.1.0", "description": "What your plugin does", "author": {"name": "You", "url": "https://github.com/you"}, "license": "MIT" } ``

  1. Add components (skills, agents, commands, hooks)
  1. Update .claude-plugin/marketplace.json to include your plugin
  1. Validate:

``bash claude plugin validate ./my-plugin ``


Project Goals

  • Reusable — Extract common patterns into shareable components
  • Composable — Mix and match plugins for your workflow
  • Maintainable — Versioned, documented, validated
  • Framework-agnostic — Works with any AI coding assistant that supports the plugin spec

Repository Structure

code
aeo-skill-marketplace/
├── .claude-plugin/
│   └── marketplace.json    # Plugin index
├── aeo-agile-tools/        # Agile team roles
├── aeo-architecture/       # System design
├── aeo-claude/             # Developer tools
├── aeo-dev/                # Repo governance & VS Code extensions
├── aeo-deployment/         # Release management
├── aeo-docs/               # Diataxis framework + d2/mermaid skills
├── aeo-epcc-workflow/      # Development methodology
├── aeo-infra/              # Cloud infrastructure (AWS & Azure)
├── aeo-n8n/                # Workflow automation
├── aeo-nous/               # Self-improving memory
├── aeo-performance/        # Profiling & optimization
├── aeo-python/             # Python tooling
├── aeo-requirements/       # Requirements gathering
├── aeo-security/           # Security & compliance
├── aeo-tdd-workflow/       # Test-driven development
├── aeo-testing/            # QA & quality gates
├── aeo-troubleshooting/    # Debugging
├── aeo-ux-design/                  # UX & accessibility
└── aeo-vsc-cc-sessions-sidecar/    # VSC session state hooks

Contributing

Contributions welcome. To add a plugin:

  1. Fork the repository
  2. Create your plugin following the structure above
  3. Ensure claude plugin validate passes
  4. Update marketplace.json
  5. Submit a pull request

License

MIT — see LICENSE.


Maintainer: AeyeOps

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/aeo-security.md https://raw.githubusercontent.com/AeyeOps/aeo-skill-marketplace/main/SKILL.md
3
Invoke in Claude Code
/aeo-security
View source on GitHub
securityagentauditcompliance

Frequently Asked Questions

What is aeo-security?

Security assessment agents for vulnerability scanning, compliance validation, code auditing, and remediation guidance

How to install aeo-security?

To install aeo-security, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /aeo-security.

What is aeo-security best for?

aeo-security is a community categorized under General. It is designed for: security, agent, audit, compliance. Created by AeyeOps.