Skip to content
Development
Skill

/aws-fault-injection-service

Plans, builds, runs, and analyzes fault injection experiments with AWS Fault Injection Service (AWS FIS) to validate application resilience through chaos engineering. Covers experiment templates (actions, targets, stop conditions), the FIS actions catalog and action selection,

From plugin
agent-toolkit-for-aws
2.7k132 skills9 commands3 MCP
Install
$ npx -y skills add aws/agent-toolkit-for-aws --skill aws-fault-injection-service --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/aws-fault-injection-service

Context preview

The summary Claude sees to decide when to auto-load this skill.

Plans, builds, runs, and analyzes fault injection experiments with AWS Fault Injection Service (AWS FIS) to validate application resilience through chaos engineering. Covers experiment templates (actions, targets, stop conditions), the FIS actions catalog and action selection,

SKILL.md

aws-fault-injection-service.SKILL.md
name: aws-fault-injection-service
description: >
  Plans, builds, runs, and analyzes fault injection experiments with AWS Fault Injection Service
  (AWS FIS) to validate application resilience through chaos engineering. Covers experiment
  templates (actions, targets, stop conditions), the FIS actions catalog and action selection,
  the scenario library (AZ power interruption, cross-Region connectivity, EC2/EKS/EBS stress),
  experiment lifecycle and monitoring, logging and reports, multi-account experiments, the
  experiment IAM role, and blast-radius safety. Applies when a user mentions AWS FIS or fault
  injection, asks what experiment to run for a failure mode (AZ, Region, API errors/throttling,
  instance/pod/DB/cache failure, latency, packet loss), wants to author an experiment template or
  CLI/CloudFormation, or needs to safely run chaos experiments in pre-production or production.
  For the broader resilience program across Resilience Hub and ARC, see aws-resilience-lifecycle;
  for ARC routing controls and zonal shift, see recovery-controller-setup.
version: 1

AWS Fault Injection Service (FIS) Experiments

Overview

Domain expertise for AWS Fault Injection Service (AWS FIS) — a managed chaos-engineering service that runs controlled fault injection experiments on real AWS resources so you can observe how an application responds to disruption and improve its resilience.

This skill lets an agent do three things:

1. **Suggest the right experiment** — map a user's failure scenario or resilience question to the correct FIS action(s), scenario, or experiment design, and explain the trade-offs. 2. **Build and run experiments** — author experiment templates (actions, targets, stop conditions, logging, reports), wire up the experiment IAM role, and drive the run/monitor/stop lifecycle via CLI, SDK, or CloudFormation. 3. **Inform the user** — answer conceptual questions about FIS terminology, safety, pricing, supported services, and how FIS fits into a resilience program.

> **AWS FIS carries out real actions on real AWS resources.** Before running any experiment in > production, plan it, run it first in pre-production, and always bound the blast radius with a > stop condition. Treat fault injection as a privileged, potentially disruptive operation. > > The AWS MCP server is recommended for executing this skill's AWS API calls — it provides > sandboxed execution and audit logging — but it is not required; all operations also work with > the AWS CLI (`aws fis ...`) directly.

Guardrail — where this skill's own files live (MCP vs local install)

Before reading a reference file, determine how this skill was loaded:

  • **Loaded via the AWS MCP `retrieve_skill` tool:** the skill's reference files are not on the

local filesystem. Fetch each one through `retrieve_skill` with the `file` parameter (e.g. `file="references/fis-concepts.md"`) — do NOT `file_read` these paths locally or search the filesystem for them.

  • **Installed locally** (e.g. `.kiro/skills/aws-fault-injection-service/` or

`~/.claude/skills/aws-fault-injection-service/`): read reference files from the local skill directory using the relative paths shown here.

This applies only to the skill's own reference files; always read and write user or session data in the working directory, never through `retrieve_skill`.

Start here — route the request

  • **"What is FIS / when should I use it / what does X term mean / does it support Y?"** →

read [references/fis-concepts.md](references/fis-concepts.md).

  • **"What experiment/action should I run to test a failure mode?"** →

read [references/fis-actions-reference.md](references/fis-actions-reference.md) (action selection map + full catalog) and suggest an action or scenario.

  • **"Build / create / run an experiment"** (template, targets, stop conditions, logging,

reports, scenarios, multi-account, monitoring) → follow [references/fis-workflow.md](references/fis-workflow.md) exactly.

  • **Any AWS CLI or API command for FIS** → consult

[references/fis-api-reference.md](references/fis-api-reference.md) FIRST — it is the canonical operation/parameter reference and includes a hallucination-rejection table.

  • **IAM role, permissions, trust policy, confused-deputy, blast-radius safety** →

read [references/fis-security.md](references/fis-security.md).

API Reference (READ FIRST before producing any AWS CLI command)

The exact `aws fis` operation names and template parameters are documented in [references/fis-api-reference.md](references/fis-api-reference.md), including a table mapping common wrong API/action names to correct ones. **Always consult it before generating commands.** Action IDs and resource types evolve — verify with `aws fis list-actions` and `aws fis get-action --id <action-id>` rather than trusting memory.

Suggesting experiments (behavioral contract)

When the user describes a failure they want to test rather than a command they want run:

1. Identify the **failure mode** (AZ impairment, Region isolation, API errors/throttling, compute/DB/cache loss, latency, packet loss, resource exhaustion). 2. Map it to a **scenario** (preferred when one fits — pre-built and AWS-owned) or a specific **action** using the selection map in [references/fis-actions-reference.md](references/fis-actions-reference.md). 3. State the **target** (resource type + how to scope it) and a **stop condition** (CloudWatch alarm on your steady-state metric) so the blast radius is bounded. 4. Recommend running in **pre-production first**, then production under change management. 5. Offer to generate the experiment template — then follow [references/fis-workflow.md](references/fis-workflow.md).

Do not invent action IDs, resource types, or parameters. If unsure, say so and verify with `aws fis list-actions` / `aws fis get-action` or the FIS documentation.

Troubleshooting

"Experiment failed immediately / no targets found"

FIS resol

Read more
Ships withagent-toolkit-for-aws

Help AI coding agents build, deploy, and manage applications on AWS. The Agent Toolkit for AWS gives AI coding agents the tools, knowledge, and guardrails they need to work with AWS services.

Get the whole plugin

Other skills on agent-toolkit-for-aws.