用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/BuilderIO/agent-native --skill workflows命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Continue a coding session on a paired always-on computer. Use when work must survive closing the primary laptop, needs remote computer-use testing, or should run on a scheduled/self-hosted execution host.
How to look up version-matched Agent Native framework docs and source in node_modules. Use before coding against @agent-native/core APIs or advanced features.
Complete the Slack feedback cycle: read every thread and linked evidence, fix verified repo-owned issues, and reply in-thread with honest status, clarification questions, and release follow-up. Use when the user asks to address feedback and respond as themselves.
基于 SOC 职业分类
正在显示 SKILL.md
| name | workflows |
| description | Trigger-based automations — reminders, follow-ups, webhooks — across the booking lifecycle. |
new-booking — fires when a booking is createdbefore-event — offset minutes BEFORE startTimeafter-event — offset minutes AFTER endTimereschedule — booking rescheduledcancellation — booking cancelledno-show — a host marked an attendee as no-show| Action | Sends |
|---|---|
email-host | Email to the organizer |
email-attendee | Email to the attendee |
email-address | Email to a fixed address (e.g. ops@example.com) |
sms-attendee | SMS to the attendee's phone (requires attendee phone custom field) |
sms-host | SMS to the host |
sms-number | SMS to a fixed number |
webhook | HTTP POST to a URL |
Step offsetMinutes is relative to the trigger time. For before-event
use positive values (we apply them with a minus sign internally).
In email subjects / bodies and SMS bodies:
{eventName} — event type title{attendeeName}, {attendeeEmail} — first attendee{hostName}, {hostEmail} — organizer{startTime}, {endTime} — formatted in host's timezone{location} — meeting URL or address{cancelUrl}, {rescheduleUrl} — public magic linksWhen a booking fires a trigger, the hook dispatcher materializes rows in
scheduled_reminders. A recurring job processes due rows and fires the
actual emails/SMS/webhooks. Framework-side recurring jobs handle the
polling.
| User | Action |
|---|---|
| "Email attendees 24h before the meeting" | create-workflow --trigger before-event --steps '[{action: email-attendee, offsetMinutes: 1440}]' |
| "Text me when someone books" | create-workflow --trigger new-booking --steps '[{action: sms-host, ...}]' |
| "Stop all reminders on an event type" | toggle-workflow to disable |