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.
- Host: GitHub
- URL: https://github.com/cess15/skills
- Owner: cess15
- License: mit
- Created: 2026-04-21T03:29:27.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-04-28T23:37:28.000Z (about 2 months ago)
- Last Synced: 2026-04-29T00:26:10.784Z (about 2 months ago)
- Topics: ai-agent, ai-security, anthropic, claude, code-review, compliance, gdpr, hipaa, owasp, pci-dss, sast, security, skills, soc2, vulnerability-detection
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AI Agent Skills
[](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).