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.
npx skills add itsmostafa/aws-agent-skills --skill eventbridge --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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": [
- Table of Contents
- Core Concepts
- Event Bus
- Rules
- Event Patterns
- Targets
- Scheduler
- Common Patterns
- Create Custom Event Bus and Rule
- Publish Custom Events
- Scheduled Events
- EventBridge Scheduler (One-Time and Flexible)
- AWS Service Events
- CLI Reference
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)
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.
