Agent skill · DevOps & Cloud

eventbridge

AWS EventBridge serverless event bus for event-driven architectures. Use when creating rules, configuring event patterns, setting up scheduled events, integrating with SaaS, or building cross-account event routing.

itsmostafagithub.com/itsmostafaGitHub ↗
claude-codecodexMIT
Install
npx skills add itsmostafa/aws-agent-skills --skill eventbridge --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/eventbridge/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,139
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AWS EventBridge Amazon EventBridge is a serverless event bus that connects applications using events. Route events from AWS services, custom applications, and SaaS partners. ## Table of Contents - [Core Concepts](#core-concepts) - [Common Patterns](#common-patterns) - [CLI Reference](#cli-reference) - [Best Practices](#best-practices) - [Troubleshooting](#troubleshooting) - [References](#references) ## Core Concepts ### Event Bus Channel that receives events. Types: - **Default**: Receives AWS service events - **Custom**: Your application events - **Partner**: SaaS application events ### Rules Match incoming events and route to targets. Each rule can have up to 5 targets. ### Event Patterns JSON patterns that define which events match a rule. ### Targets AWS services that receive matched events (Lambda, SQS, SNS, Step Functions, etc.). ### Scheduler Schedule one-time or recurring events to invoke targets. ## Common Patterns ### Create Custom Event Bus and Rule **AWS CLI:** ```bash # Create custom event bus aws events create-event-bus --name my-app-events # Create rule aws events put-rule \ --name order-created-rule \ --event-bus-name my-app-events \ --event-pattern '{ "source": [

What's inside
Steps it walks through
  1. Table of Contents
  2. Core Concepts
  3. Event Bus
  4. Rules
  5. Event Patterns
  6. Targets
  7. Scheduler
  8. Common Patterns
  9. Create Custom Event Bus and Rule
  10. Publish Custom Events
  11. Scheduled Events
  12. EventBridge Scheduler (One-Time and Flexible)
  13. AWS Service Events
  14. CLI Reference
Ships with 1 file
  • event-patterns.md
Commands it runs
Create custom event bus
aws events create-event-bus --name my-app-events
Create rule
aws events put-rule \
Add Lambda target
aws events put-targets \
Add Lambda permission
aws lambda add-permission \
Run every 5 minutes
Run at specific times (cron)
More from aws-agent-skills
All skills →
About this skill
What does the eventbridge skill do?

AWS EventBridge serverless event bus for event-driven architectures. Use when creating rules, configuring event patterns, setting up scheduled events, integrating with SaaS, or building cross-account event routing.

How do I install it?

Run `npx skills add itsmostafa/aws-agent-skills --skill eventbridge --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From itsmostafa/aws-agent-skills, a repository with 1,139 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going