Vant skill test chaos
Skill dhaupin/vant/models/public/skills/vant-skill-test-chaos
Introduce controlled failures to test system resilience. Kill processes, cut network, fill disk. Use when testing fault tolerance, disaster recovery, or resilience.From its SKILL.md
npx -y skills add dhaupin/vant --skill vant-skill-test-chaosAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.1 KB, 252 tokens by cl100k_base, as published. Nobody here has run it
Test Chaos
Resilience testing.
When To Use
- Fault tolerance
- Disaster recovery
- System hardening
Chaos Experiments
1. Kill Process
kill -9 <pid>
2. Cut Network
iptables -A INPUT -j DROP
3. Fill Disk
dd if=/dev/zero of=/full
4. Latency
tc qdisc add dev eth0 root netem delay 5000ms
Tools
| Tool | Use |
|---|---|
| Chaos Monkey | Netflix chaos |
| Litmus | Kubernetes chaos |
| Pumba | Docker chaos |
| Gremlin | Chaos as service |
Output
## Chaos Test
| Experiment | Result | Recovery |
|------------|--------|---------|
| Kill DB | [FAIL→RECOVERED] | 5s |
| Net cut | [FAIL→RECOVERED] | 2s |
| Disk full | [HANDLED] | N/A |
Role: Chaos Engineer
Input: Experiment
Output: Resilience
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.