
ActivitySmith now provides a skill you can install with npx skills add to send Push Notifications and trigger Live Activities from your coding agents.
npx skills add ActivitySmithHQ/activitysmith-cli --skill activitysmithRepository: github.com/activitysmithhq/activitysmith-cli
./skills/activitysmith/scripts/send_push.sh \ -t "Codex task finished" \ -m "Implemented OAuth callback fix, added regression tests, and opened PR #128."
activity_id="$(./skills/activitysmith/scripts/start_activity.sh \ --title "Codex: migrate billing webhooks" \ --subtitle "Analyzing handlers" \ --type "segmented_progress" \ --steps 4 \ --current 1 \ --id-only)"./skills/activitysmith/scripts/update_activity.sh \ --activity-id "$activity_id" \ --title "Codex: migrate billing webhooks" \ --subtitle "Implementing + tests" \ --current 2./skills/activitysmith/scripts/end_activity.sh \ --activity-id "$activity_id" \ --title "Codex: migrate billing webhooks" \ --subtitle "Done" \ --current 4 \ --auto-dismiss 2
Use ACTIVITYSMITH_API_KEY for auth in your shell or environment.