thinkfleetai/thinkfleet-engine

aws-eventbridge

Manage AWS EventBridge rules, event buses, and targets.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill aws-eventbridge

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,477 B
  • docs SUMMARY.md 78 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

AWS EventBridge

Manage event-driven architectures with EventBridge.

List rules

aws events list-rules --query 'Rules[].{Name:Name,State:State,Schedule:ScheduleExpression,Description:Description}' --output table

Describe rule

aws events describe-rule --name my-rule | jq '{Name, State, ScheduleExpression, EventPattern}'

List targets for rule

aws events list-targets-by-rule --rule my-rule --query 'Targets[].{Id:Id,Arn:Arn}' --output table

Put event

aws events put-events --entries '[{
  "Source": "my.app",
  "DetailType": "OrderCreated",
  "Detail": "{\"orderId\":\"123\",\"amount\":99.99}",
  "EventBusName": "default"
}]' | jq '.Entries[] | {EventId}'

Enable/disable rule

aws events enable-rule --name my-rule
echo "Rule enabled"
aws events disable-rule --name my-rule
echo "Rule disabled"

List event buses

aws events list-event-buses --query 'EventBuses[].{Name:Name,Arn:Arn}' --output table

Notes

  • Event patterns and schedule expressions use different rule types.
  • Schedule expressions use cron or rate syntax: rate(5 minutes) or cron(0 12 ? *).
  • Confirm before enabling/disabling rules or sending events.