Skip to content
Merged
Changes from all commits
Commits
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
18 changes: 12 additions & 6 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,19 @@ Copilot, and by Cursor, Codex, and Claude (via `CLAUDE.md` β†’ `@AGENTS.md`).
```text
.github/
└── workflows/
β”œβ”€β”€ ci.yaml # Validate skills (gh skill publish --dry-run) + agentskills.io spec validation
β”œβ”€β”€ release.yaml # Calculate next version on push to main; trigger CD when a release is warranted
└── cd.yaml # gh skill publish the in-house skills against the new tag
β”œβ”€β”€ ci.yaml # Validate skills (gh skill publish --dry-run) + agentskills.io spec validation + lint-scripts
β”œβ”€β”€ release.yaml # Calculate next version on push to main; trigger CD when a release is warranted
β”œβ”€β”€ cd.yaml # gh skill publish the in-house skills against the new tag
└── check-upstream-skills.yaml # πŸ”— Upstream skill targets β€” weekly + on index-touch PRs; warns on outage, fails on real drift
scripts/
└── install.sh # Install every README-listed skill for one or more agents (user scope)
ways-of-working/
└── SKILL.md # In-house skill: devantler-tech engineering practices
β”œβ”€β”€ install.sh # Install every README-listed skill for one or more agents (user scope)
β”œβ”€β”€ check-readme-index.sh # lint-scripts gate: README ## Skills index ↔ on-disk skills + cross-column consistency
β”œβ”€β”€ check-upstream-skills.sh # πŸ”— workflow: resolve each upstream index row against its source repo
└── *.test.sh # Hermetic self-test beside each script above (all in the lint-scripts gate)
agent-instructions/ # In-house skill (each dir holds a conformant SKILL.md)
conventional-release/ # In-house skill
gitops-tenant-onboarding/ # In-house skill
ways-of-working/ # In-house skill: devantler-tech engineering practices
README.md # The curated index β€” the single source of truth (see below)
```

Expand Down