Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
f21427c
feat(skills): sync AGENTS.md to AI-specific formats
Alan-TheGentleman Jan 9, 2026
1eac7d9
feat(skills): add interactive menu and unit tests for setup.sh
Alan-TheGentleman Jan 9, 2026
73cc4ec
feat(skills): add skill-sync for auto-generating AGENTS.md Auto-invoke
Jan 12, 2026
be0c0dd
fix(skills): stable ordering in auto-invoke sync
Alan-TheGentleman Jan 12, 2026
7f84d77
test(skills): cover multi-action auto-invoke sync
Alan-TheGentleman Jan 12, 2026
21174ad
feat(skills): expand scopes and auto-invoke metadata
Alan-TheGentleman Jan 12, 2026
f14a5c8
feat(skills): add prowler-ci skill for PR CI gates
Alan-TheGentleman Jan 12, 2026
83a192c
feat(ai): improve compliance skills
pedrooot Jan 13, 2026
c2a938c
chore(changelog): update with latest changes
pedrooot Jan 12, 2026
117a0f6
chore(skills): update with compliance changes
pedrooot Jan 13, 2026
9eff350
chore(skills): update with compliance changes
pedrooot Jan 13, 2026
63d6f45
feat(skills): add prowler-compliance-review skill
andoniaf Jan 13, 2026
ef74be5
fix(skills): align prowler-compliance-review with repo patterns
andoniaf Jan 13, 2026
5ffdf26
fix(skills): use consistent command style in prowler-compliance-review
andoniaf Jan 13, 2026
747bbb8
fix(skills): fix sync.sh macOS compatibility and add missing metadata
andoniaf Jan 13, 2026
0cab0db
docs(skills): update Mermaid diagram with new skills
andoniaf Jan 13, 2026
0dffc7d
Merge branch 'master' into feat/ai-skills-sync-agents-md
pedrooot Jan 13, 2026
3ff14ab
chore(merge): fix format
pedrooot Jan 13, 2026
3628eeb
ci(sdk): skip CI for skills and agent docs changes
andoniaf Jan 13, 2026
622397c
ci(api,ui): skip CI for AGENTS.md changes
andoniaf Jan 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,10 @@ node_modules
# Persistent data
_data/

# Claude
# AI Instructions (generated by skills/setup.sh from AGENTS.md)
CLAUDE.md
GEMINI.md
.github/copilot-instructions.md

# Compliance report
*.pdf
Expand Down
15 changes: 15 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,21 @@ Use these skills for detailed patterns on-demand:
| `prowler-docs` | Documentation style guide | [SKILL.md](skills/prowler-docs/SKILL.md) |
| `skill-creator` | Create new AI agent skills | [SKILL.md](skills/skill-creator/SKILL.md) |

### Auto-invoke Skills

When performing these actions, ALWAYS invoke the corresponding skill FIRST:

| Action | Skill |
|--------|-------|
| Creating a PR | `prowler-pr` |
| Writing SDK tests | `prowler-test-sdk` |
| Writing API tests | `prowler-test-api` |
| Writing UI/E2E tests | `prowler-test-ui` |
| Creating a new check | `prowler-sdk-check` |
| Adding a new provider | `prowler-provider` |
| Writing documentation | `prowler-docs` |
| Adding compliance framework | `prowler-compliance` |

---

## Project Overview
Expand Down
Loading