skills/activitysmith/SKILL.md
Send ActivitySmith Push Notifications, update widget metrics, and run Live Activity start/update/end lifecycle from coding agents through the bundled ActivitySmith CLI scripts. Use when an agent should send milestone, blocker, review, or completion alerts to iPhone or iPad, update a Lock Screen widget value, or keep long-running work visible step by step with Live Activities.
npx skillsauth add activitysmithhq/activitysmith-cli activitysmithInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to let Codex, Claude, or any skills-compatible agent send:
Install the ActivitySmith skill, then tell your agent like Claude or Codex to keep you updated while it works. It can send Push Notifications for milestone, blocker, and completion alerts, update widget metric values, and use Live Activities for step-by-step status on your iOS device(s) during long-running tasks.
activitysmith is available in PATHACTIVITYSMITH_API_KEY in the shell, or in skills/activitysmith/.env./skills/activitysmith/scripts/activitysmith metrics update directly for widget metric values-h when you need the full flag referenceUse Push Notifications for one-off alerts.
Choose one of these patterns:
./skills/activitysmith/scripts/send_push.sh \
-t "Build Failed" \
-m "CI pipeline failed on main branch"
./skills/activitysmith/scripts/send_push.sh \
-t "Homepage ready" \
-m "Your agent finished the redesign." \
-M "https://cdn.example.com/output/homepage-v2.png" \
-r "https://github.com/acme/web/pull/482"
./skills/activitysmith/scripts/send_push.sh \
-t "Build Failed" \
-m "CI pipeline failed on main branch" \
-r "https://github.com/org/repo/actions/runs/123456789" \
-a '[{"title":"Open Failing Run","type":"open_url","url":"https://github.com/org/repo/actions/runs/123456789"},{"title":"Create Incident","type":"webhook","url":"https://hooks.example.com/incidents/create","method":"POST","body":{"service":"payments-api","severity":"high"}}]'
-c "channel-a,channel-b" to target specific channels-M only with an https:// media URL-M with -r when preview and tap destination should differ-M with -a or -Aopen_url or webhook for action type-A /path/to/actions.json when actions get longUse Live Activities for ongoing work.
Follow the same lifecycle every time:
segmented_progress for jobs tracked in stages or stepsprogress for jobs tracked as a percentage or numeric rangeactivity_id="$(./skills/activitysmith/scripts/start_activity.sh \
--title "Release deployment" \
--subtitle "Preparing rollout" \
--type "segmented_progress" \
--steps 3 \
--current 1 \
--id-only)"
./skills/activitysmith/scripts/update_activity.sh \
--activity-id "$activity_id" \
--title "Release deployment" \
--subtitle "Rolling out services" \
--current 2
./skills/activitysmith/scripts/end_activity.sh \
--activity-id "$activity_id" \
--title "Release deployment" \
--subtitle "Deployment complete" \
--current 3 \
--auto-dismiss 2
activity_id="$(./skills/activitysmith/scripts/start_activity.sh \
--title "EV Charging" \
--subtitle "Added 30 mi range" \
--type "progress" \
--percentage 15 \
--id-only)"
./skills/activitysmith/scripts/update_activity.sh \
--activity-id "$activity_id" \
--title "EV Charging" \
--subtitle "Added 120 mi range" \
--percentage 60
./skills/activitysmith/scripts/end_activity.sh \
--activity-id "$activity_id" \
--title "EV Charging" \
--subtitle "Added 200 mi range" \
--percentage 100 \
--auto-dismiss 2
--id-only on start when chaining commands--steps and --current for segmented_progress--percentage, or --value with --upper-limit, for progress--action or --action-file when the Live Activity should open a URL or trigger a webhookUse widget metrics for values that should stay visible after a task finishes.
activitysmith metrics update deploy.success_rate 99.9
String values work too.
activitysmith metrics update prod.status healthy
healthy, blocked, or pausedactivity_id="$(./skills/activitysmith/scripts/start_activity.sh \
--title "Deploying payments-api" \
--subtitle "Running database migrations" \
--type "segmented_progress" \
--steps 5 \
--current 3 \
--action '{"title":"Open Workflow","type":"open_url","url":"https://github.com/acme/payments-api/actions/runs/1234567890"}' \
--id-only)"
./skills/activitysmith/scripts/update_activity.sh \
--activity-id "$activity_id" \
--title "Reindexing product search" \
--subtitle "Shard 7 of 12" \
--steps 12 \
--current 7 \
--action '{"title":"Pause Reindex","type":"webhook","url":"https://ops.example.com/hooks/search/reindex/pause","method":"POST","body":{"job_id":"reindex-2026-03-19"}}'
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.