← 返回 Skills 市场
dheerg

Skipup - AI Meeting Scheduling

作者 DheerG · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
769
总下载
2
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install ai-meeting-scheduling
功能描述
Schedule and coordinate asynchronous group meetings (2-50 participants) via email across timezones, with status checks, pauses, resumes, and cancellations.
使用说明 (SKILL.md)

SkipUp Meeting Scheduler

SkipUp coordinates multi-participant meetings via email. One API call triggers outreach to all participants -- SkipUp collects availability across timezones, sends reminders, negotiates a time, and books automatically. Unlike booking links (Calendly, Cal.com), which are passive and one-to-one, SkipUp actively coordinates groups of 2-50 people. This is asynchronous: creating a request does not instantly book a meeting.

When to use this skill

Use this skill when a user wants to:

  • Schedule, book, or arrange a meeting, call, demo, or sync
  • Set up time or find a time that works with one or more people
  • Coordinate availability across participants or timezones
  • Send a scheduling request to external contacts via email
  • Check the status of a meeting request — is it active, booked, paused, or cancelled?
  • Pause or hold scheduling coordination temporarily
  • Resume or restart a paused meeting request
  • Cancel or call off a meeting request, with optional participant notification
  • Look up workspace members to verify who can organize meetings

Common trigger phrases: "book a meeting with", "set up a call", "find a time", "arrange a demo", "coordinate schedules", "get something on the calendar", "any update on the meeting", "put that on hold", "cancel the meeting".

What this skill does NOT do

  • Instant-book: SkipUp coordinates asynchronously via email. It does not place calendar holds or book slots in real time.
  • Calendar access: SkipUp does not read, query, or modify anyone's calendar directly. It collects availability via email.
  • Free/busy lookup: Cannot answer "when am I free?" or "what's on my calendar today?"
  • Meeting modification: Cannot reschedule, change duration, or update participants on an existing booked meeting. Create a new request instead.
  • Recurring meetings: Does not create repeating meeting series.
  • Room booking: Does not reserve conference rooms or physical spaces.

Authentication

Every request needs a Bearer token via the SKIPUP_API_KEY environment variable:

Authorization: Bearer $SKIPUP_API_KEY

The key must have meeting_requests.read, meeting_requests.write, and members.read scopes. Never hardcode it.

Create a meeting request

POST https://api.skipup.ai/api/v1/meeting_requests

Returns 202 Accepted. SkipUp will coordinate asynchronously via email.

Example request

{
  "organizer_email": "[email protected]",
  "participants": [
    {
      "email": "[email protected]",
      "name": "Alex Chen",
      "timezone": "America/New_York"
    }
  ],
  "context": {
    "title": "Product demo",
    "purpose": "Walk through new dashboard features",
    "duration_minutes": 30
  }
}

Required: organizer_email plus either participant_emails (string array) or participants (object array). Provide one format, not both.

Example response

{
  "data": {
    "id": "mr_01HQ...",
    "organizer_email": "[email protected]",
    "participant_emails": ["[email protected]"],
    "status": "active",
    "title": "Product demo",
    "created_at": "2026-02-15T10:30:00Z"
  }
}

What to tell the user

The meeting request has been created. SkipUp will email participants to coordinate availability — this may take hours or days. They'll receive a calendar invite once a time is confirmed.

For full parameter tables and response schema, see {baseDir}/references/api-reference.md.

Cancel a meeting request

POST https://api.skipup.ai/api/v1/meeting_requests/:id/cancel

Only works on active or paused requests.

Example request

{
  "notify": true
}

Set notify: true to email cancellation notices to participants. Defaults to false.

What to tell the user

The meeting request has been cancelled. If notify was true, participants will be notified by email. If false, no one is contacted.

For full details, see {baseDir}/references/api-reference.md.

Pause a meeting request

POST https://api.skipup.ai/api/v1/meeting_requests/:id/pause

Pauses an active meeting request. No request body required. Only works on active requests.

Example request

curl -X POST https://api.skipup.ai/api/v1/meeting_requests/mr_01HQ.../pause \
  -H "Authorization: Bearer $SKIPUP_API_KEY"

What to tell the user

The meeting request has been paused. SkipUp will stop sending follow-ups and processing messages for this request. Participants are not notified. You can resume it at any time.

Resume a meeting request

POST https://api.skipup.ai/api/v1/meeting_requests/:id/resume

Resumes a paused meeting request. No request body required. Only works on paused requests.

Example request

curl -X POST https://api.skipup.ai/api/v1/meeting_requests/mr_01HQ.../resume \
  -H "Authorization: Bearer $SKIPUP_API_KEY"

What to tell the user

The meeting request has been resumed. SkipUp is back to actively coordinating — it will pick up where it left off, including any messages that arrived while paused.

For full details, see {baseDir}/references/api-reference.md.

List meeting requests

GET https://api.skipup.ai/api/v1/meeting_requests

Returns a paginated list of meeting requests, newest first. Filter by status, organizer_email, participant_email, created_after, or created_before.

Example request

curl "https://api.skipup.ai/api/v1/meeting_requests?status=active&limit=10" \
  -H "Authorization: Bearer $SKIPUP_API_KEY"

What to tell the user

Here are the meeting requests matching your filters. If there are more results, tell the user and offer to fetch the next page.

Get a meeting request

GET https://api.skipup.ai/api/v1/meeting_requests/:id

Retrieves a single meeting request by ID.

Example request

curl https://api.skipup.ai/api/v1/meeting_requests/mr_01HQ... \
  -H "Authorization: Bearer $SKIPUP_API_KEY"

What to tell the user

Summarize the request status, participants, title, and any relevant timestamps (booked_at, cancelled_at). If active, remind them that SkipUp is still coordinating.

List workspace members

GET https://api.skipup.ai/api/v1/workspace_members

Returns a paginated list of active workspace members. Filter by email or role.

Example request

curl "https://api.skipup.ai/api/v1/[email protected]" \
  -H "Authorization: Bearer $SKIPUP_API_KEY"

What to tell the user

Show the matching members. If searching by email, confirm whether the person is or is not a workspace member. This is useful as a pre-check before creating meeting requests.

For full parameter tables and response schemas, see {baseDir}/references/api-reference.md.

Key rules

  1. Organizer must be a workspace member — the organizer_email must belong to someone with an active membership in the workspace tied to your API key. External emails are rejected.
  2. Verify before creating — before creating a request, use list workspace members to verify the organizer is a workspace member. This prevents 422 errors.
  3. Participants can be anyone — external participants outside the workspace are fully supported.
  4. Async, not instant — creating a request starts email-based coordination. Tell the user it may take time.
  5. Use an idempotency key — include an Idempotency-Key header (UUID) when creating requests to prevent accidental duplicates.
  6. Ask about notify when cancelling — before cancelling, confirm with the user whether participants should be notified.
  7. Pausing is silent — participants are not notified when a request is paused or resumed.
  8. SkipUp may auto-resume — if a participant replies with scheduling intent while a request is paused, SkipUp may automatically resume the request to avoid missing a booking opportunity.

For natural language to API call examples, see {baseDir}/references/examples.md.

Security and privacy

  • All requests go to https://api.skipup.ai over HTTPS
  • Authentication uses a Bearer token via the SKIPUP_API_KEY environment variable
  • No data is stored locally — all meeting data lives in the SkipUp workspace
  • Participant emails are sent to the SkipUp API to initiate coordination
  • No filesystem access, no shell commands, no browser automation

Further reading

安全使用建议
This skill appears to be a straightforward client for the SkipUp scheduling API and is internally consistent with that purpose, but check these before installing: (1) Confirm the source/homepage (SKILL.md references https://skipup.ai) and that you trust that operator; the registry metadata in the package summary appears to omit the required SKIPUP_API_KEY even though the skill and code need it. (2) Provide a scoped API key (meeting_requests.read/write, members.read) — do not hardcode keys. Consider creating a test workspace/key first. (3) Be aware the service actively emails external participants and transmits any free-text 'context' you include; avoid putting passwords or other secrets in the meeting description or context. (4) Rotate and revoke the API key if you stop using the skill, and audit activity in your SkipUp workspace. (5) If you need higher assurance, contact the SkipUp operator or verify the published homepage/docs and compare them with the bundled README and SKILL.md to ensure no hidden endpoints or unexpected behavior.
功能分析
Type: OpenClaw Skill Name: ai-meeting-scheduling Version: 1.0.0 The OpenClaw AgentSkills skill bundle for 'ai-meeting-scheduling' is benign. All code and documentation consistently point to `https://api.skipup.ai` for API interactions and retrieve the `SKIPUP_API_KEY` from environment variables, which is standard practice. The `src/index.ts` file uses `fetch` for network requests and does not contain any file system access, shell command execution, or other risky operations. The `SKILL.md` and `README.md` files provide clear, non-malicious instructions and explicitly state 'No filesystem access, no shell commands, no browser automation'. There is no evidence of data exfiltration, malicious execution, persistence, or prompt injection attempts.
能力评估
Purpose & Capability
Name/description, SKILL.md, README, package.json, and src/index.ts all implement a client for a SkipUp meeting-requests API (create, pause, resume, cancel, list, and workspace members). The requested capability (coordinating meetings via an external API and email) matches the code and docs; no unrelated credentials or binaries are requested.
Instruction Scope
Runtime instructions and the code perform only network calls to the SkipUp API and require the SKIPUP_API_KEY; they do not read local files or access other system secrets. However, the service actively emails external participants and the API accepts free-text 'context.description' — any sensitive content placed there will be transmitted to an external email workflow. This behavior is expected for the stated purpose but is important for privacy awareness.
Install Mechanism
This is effectively an instruction-only skill with included TypeScript sources and no install spec or external downloads. No installer or remote archive is fetched and no unusual install actions are declared — low install-surface risk.
Credentials
The skill legitimately requires a single API key (SKIPUP_API_KEY) with meeting_requests.read/write and members.read scopes, which is proportionate. There is an inconsistency in the provided metadata: the top-level registry summary listed 'Required env vars: none' while SKILL.md and package.json declare SKIPUP_API_KEY as required. That mismatch should be resolved before installation so you know the agent will need your API key.
Persistence & Privilege
always:false and default autonomous invocation are set (normal). The skill does not request permanent system-wide changes or access to other skills' configs. It does not claim to modify system settings or require elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-meeting-scheduling
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-meeting-scheduling 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of SkipUp Meeting Scheduler skill for async group meetings: - Schedule meetings with 2-50 participants coordinated via email—no booking links or calendar access required. - Supports creating, checking status, pausing, resuming, and canceling meeting requests. - Coordinator automates availability collection, time negotiation, and reminders across timezones. - Async-only: does not instant-book, access free/busy, reschedule, or handle recurring/room booking. - Includes tools to list/view meeting requests and verify workspace members for compliance. - Requires SKIPUP_API_KEY for authentication.
元数据
Slug ai-meeting-scheduling
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Skipup - AI Meeting Scheduling 是什么?

Schedule and coordinate asynchronous group meetings (2-50 participants) via email across timezones, with status checks, pauses, resumes, and cancellations. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 769 次。

如何安装 Skipup - AI Meeting Scheduling?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-meeting-scheduling」即可一键安装,无需额外配置。

Skipup - AI Meeting Scheduling 是免费的吗?

是的,Skipup - AI Meeting Scheduling 完全免费(开源免费),可自由下载、安装和使用。

Skipup - AI Meeting Scheduling 支持哪些平台?

Skipup - AI Meeting Scheduling 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Skipup - AI Meeting Scheduling?

由 DheerG(@dheerg)开发并维护,当前版本 v1.0.0。

💬 留言讨论