An open API service indexing awesome lists of open source software.

https://github.com/cess15/skills

Reusable AI agent skills for code review, security analysis, and compliance validation. SAST, GDPR, HIPAA, SOC2, PCI-DSS compliance across any programming language.
https://github.com/cess15/skills

ai-agent ai-security anthropic claude code-review compliance gdpr hipaa owasp pci-dss sast security skills soc2 vulnerability-detection

Last synced: about 19 hours ago
JSON representation

Reusable AI agent skills for code review, security analysis, and compliance validation. SAST, GDPR, HIPAA, SOC2, PCI-DSS compliance across any programming language.

Awesome Lists containing this project

README

          

# AI Agent Skills

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Reusable AI agent skills for code review, security analysis, and JIRA alignment validation.

## Skill Catalog

| Skill | Purpose | Blocking |
|---|---|---|
| [pr-preflight](skills/pr-preflight/) | Parse PR URL + validate git/MCP environment | BLOCKING |
| [security-compliance-review](skills/security-compliance-review/) | SAST + compliance analysis on PR diffs | NON-BLOCKING |
| [alignment-analyzer](skills/alignment-analyzer/) | JIRA scope alignment via semantic matching | NON-BLOCKING |
| [jira-context](skills/jira-context/) | JIRA ticket enrichment + prompt injection detection | NON-BLOCKING |

## Quick Install

```bash
# Install a specific skill
npx skills add https://github.com/cess15/skills --skill
```

## Pipeline

These skills are designed to run together in a PR review pipeline:

```
PR URL
└─► pr-preflight — parse URL + validate env [BLOCKING]
└─► jira-context — fetch JIRA ticket data
└─► security-compliance-review — SAST + compliance
└─► alignment-analyzer — evaluate scope coverage
└─► verdict: APPROVE / REQUEST_CHANGES
```

## Repository Structure

```
skills/
├── README.md
├── LICENSE
├── skills/
│ ├── security-compliance-review/
│ │ ├── README.md
│ │ ├── SKILL.md
│ │ └── examples/
│ ├── pr-preflight/
│ │ ├── README.md
│ │ └── SKILL.md
│ ├── alignment-analyzer/
│ │ ├── README.md
│ │ └── SKILL.md
│ └── jira-context/
│ ├── README.md
│ └── SKILL.md
├── spec/
│ └── agent-skills-spec.md
└── template/
└── SKILL.md
```

## Contributing

1. Copy `template/SKILL.md`
2. Create your skill under `skills/your-skill-name/`
3. Add `README.md` and `SKILL.md`
4. Submit a PR

## License

MIT — see [LICENSE](LICENSE).