feat: add Agent Resilience and Fuzzing skill#232
Open
LorenzaVolponi wants to merge 2 commits into
Open
Conversation
nucliweb
reviewed
Jun 10, 2026
| @@ -0,0 +1,61 @@ | |||
| ```markdown | |||
Contributor
There was a problem hiding this comment.
A SKILL cannot be placed within a Markdown block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 Summary
This PR adds a new skill agent-resilience-and-fuzzing that guides agents through resilience and fuzzing testing for any skill, plus a helper script (fuzz-skill.sh) to automate simple fuzz tests. 🛡️
💡 Motivation
While agent-skills already covers many quality dimensions (TDD, code review, security, etc.), there is no explicit workflow for ensuring that skills themselves are resilient to unexpected or adversarial inputs. 📉
As agents get more autonomous, a malformed input or an unexpected API response can cascade into a broken state. This skill:
🛡️ Defines a concrete process for identifying and testing edge cases in any skill.
🤖 Ships a generic fuzzing helper script that can be reused across the repo.
🧩 Integrates with the existing skill anatomy by adding fuzz-cases.md, RESILIENCE.md, and resilience-related verification steps.
🧪 How to test
Run the included script against an existing skill:
./skills/agent-resilience-and-fuzzing/scripts/fuzz-skill.sh \ --skill skills/incremental-implementation/SKILL.md \ --arg "limit" \ --type number \ --fuzz-type boundary,mismatch,overflow
Verify that the script generates and runs fuzz cases, clearly showing which cases are OK vs FAILED. ✅
✅ Checklist
New skill under skills/ with kebab-case name
SKILL.md follows docs/skill-anatomy.md
YAML frontmatter with valid name and description
Description starts with what the skill does, then Use when triggers
Skill is specific, verifiable, and minimal
No duplicate content; other skills are referenced by name
No empty scripts/ directory; this skill ships a concrete, usable script