sales-motion
Motion platform help — AI-powered calendar, task auto-scheduling, project management, meeting notes, and docs in one workspace. Use when tasks keep getting shuffled and you can't pin them to a time, AI calendar is double-booking across personal and work calendars, you want to auto-create Motion tasks from email or Slack via API or Zapier, the mobile app feels laggy or missing features compared to desktop, AI credit consumption is increasing your bill unexpectedly, Zapier integration is one-way and you need event triggers, or you're evaluating Motion vs Reclaim vs Sunsama for AI scheduling. Do NOT use for general scheduling strategy across tools (use /sales-meeting-scheduler) or choosing a dedicated AI note-taker (use /sales-note-taker).
What this skill does
# Motion Platform Help ## Step 1 — Gather context If `references/learnings.md` exists, read it first for accumulated platform knowledge. Ask the user: 1. **What's your Motion challenge?** - A) Setting up Motion for the first time (calendar, tasks, projects) - B) Controlling how Motion auto-schedules my tasks - C) Integrating Motion with other tools (API, Zapier, CRM) - D) Managing AI credits and billing - E) Mobile app issues - F) Evaluating Motion vs alternatives - G) Something else 2. **What's your setup?** - A) Solo user (individual plan) - B) Small team (2-14 seats) - C) Larger team (15+ seats) 3. **Which Motion modules do you use?** - A) Calendar + Tasks only - B) Calendar + Tasks + Projects - C) Full suite (including Meeting Notes, Docs, Workflows) **If the user's request already provides most of this context, skip directly to the relevant step.** ## Step 2 — Route or answer directly | If the question is about... | Route to... | |---|---| | Scheduling strategy across multiple tools | `/sales-meeting-scheduler [question]` | | Choosing a dedicated AI note-taker | `/sales-note-taker [question]` | | CRM integration patterns | `/sales-integration [question]` | | Everything else | Answer directly using Step 3 | When routing, provide the exact command. ## Step 3 — Motion platform reference **Read `references/platform-guide.md`** for the full platform reference — capabilities, pricing, data model, integration recipes, code examples. Answer the user's question using only the relevant section. Don't dump the full reference. ## Step 4 — Actionable guidance You no longer need the platform guide — focus on the user's specific situation. - For task scheduling control: explain do-dates vs due-dates, deadline types, and the "not auto-scheduled" escape hatch - For integrations: check API rate limits (12 req/min individual, 120 team) and recommend Zapier for simple flows, API for custom pipelines - For billing: estimate AI credit usage based on their workflow and recommend the right plan tier If you discover a gotcha, workaround, or tip not covered in `references/learnings.md`, append it there. ## Gotchas > *Best-effort from research — review these, especially items about plan-gated features and integration gotchas that may be outdated.* - **Task shuffling is by design.** Motion's optimizer continuously reschedules tasks to fit deadlines. If you need a task at a specific time, set it as "not auto-scheduled" or use a calendar event instead. This is the #1 user complaint. - **No webhook support.** The API is one-directional — you can create/read/update/delete but can't receive event notifications. Use Zapier polling or build a cron-based sync instead. - **Zapier has no triggers.** Only actions (Create Task, Create Project, Update Task, Find Task). You cannot trigger external workflows from Motion events natively. - **AI credits increase bills.** Pro gets 7,500 credits/mo, Business gets 15,000. Heavy AI Chat, Docs, and meeting notes usage can push bills up 20-40%. Monitor usage in Settings. - **Mobile app lags behind desktop.** Missing features like task snoozing, full notification options, and some views. Use desktop for setup and configuration. - **Rate limits are low for individuals.** 12 requests/min on individual plans vs 120 on team plans. Batch operations need throttling and retry logic. - **Setup takes 2-4 weeks.** Full value requires calibrating task durations, priorities, and schedules. Start with just Calendar + Tasks before adding Projects and Docs. ## Related skills - `/sales-meeting-scheduler` — Cross-platform scheduling strategy (booking pages, no-shows, round-robin) - `/sales-note-taker` — AI meeting note-taker comparison and API integration - `/sales-reclaim` — Reclaim.ai platform help (main competitor — AI task scheduling with free tier) - `/sales-vimcal` — Vimcal platform help (keyboard-first calendar) - `/sales-integration` — Connect Motion to CRM and other tools - `/sales-do` — Not sure which skill to use? The router matches any sales objective to the right skill. Install: `npx skills add sales-skills/sales --skill sales-do` ## Examples ### Example 1: Solo founder setting up Motion for the first time **User says**: "I just signed up for Motion. How should I set it up as a solo founder?" **Skill does**: 1. Recommends starting with Pro AI plan ($19/mo annual) and Calendar + Tasks only 2. Walks through connecting Google Calendar and setting working hours 3. Explains the do-date vs due-date concept for task scheduling 4. Sets up a simple task workflow: email → task creation, with duration estimates 5. Configures Zoom integration for auto-generated meeting links 6. Advises waiting 1-2 weeks before adding Projects module **Result**: Clean first-week setup focused on calendar + task scheduling — avoids overwhelm ### Example 2: Syncing Motion tasks to a CRM via the API **User says**: "How do I automatically sync completed Motion tasks to HubSpot?" **Skill does**: 1. Reads platform-guide.md for API details 2. Explains that Motion has no webhooks — must use polling approach 3. Provides a Python script that polls `GET /v1/tasks` every 5 minutes with cursor pagination, filters for completed tasks, and creates HubSpot activities via HubSpot API 4. Notes the 12 req/min rate limit for individual plans and recommends upgrading to team for 120 req/min if polling frequently 5. Suggests Zapier as a simpler alternative if the workflow is straightforward **Result**: Working polling-based sync pipeline with rate limit handling ### Example 3: Evaluating Motion vs Reclaim for a small team **User says**: "Should my 5-person team use Motion or Reclaim?" **Skill does**: 1. Compares core approaches: Motion auto-schedules aggressively (tasks placed on calendar automatically), Reclaim defends existing schedule (focus time, habits, buffer) 2. Notes pricing: Motion $19-29/seat/mo (annual), Reclaim free tier available then $8-15/seat/mo 3. Highlights Motion's project management advantage (Gantt, dashboards, capacity planning on Business plan) 4. Highlights Reclaim's advantage for calendar defense and free tier 5. Recommends Motion if team needs project management + scheduling in one tool, Reclaim if team already has a PM tool and wants calendar optimization **Result**: Clear decision framework based on team's existing tooling and primary need ## Troubleshooting ### Tasks show "Could not fit" at the top of calendar **Cause**: Task can't be scheduled within the auto-scheduling window due to conflicting events, too many high-priority tasks, or unrealistic duration estimates **Solution**: Check task duration estimates — are they realistic? Reduce priority on lower-importance tasks. Extend deadlines where possible. If a task truly can't fit, Motion is telling you your schedule is overcommitted. Consider delegating or removing tasks. Check that working hours are correctly configured. ### Double-booking across personal and work calendars **Cause**: Personal calendar not connected, or calendar sync is one-directional **Solution**: Connect all calendars (Google, Outlook, iCloud) in Motion Settings → Calendars. Verify bi-directional sync is active for each. Personal calendar events should show as "busy" blocks that Motion schedules around. If using multiple Google accounts, connect each one separately. ### Zapier tasks created without correct scheduling **Cause**: Zapier's Motion connector is in beta and doesn't expose all API fields **Solution**: Set `autoScheduled` to true and provide `dueDate`, `duration`, and `schedule` fields. If Zapier doesn't expose these, switch to the API directly — create tasks via `POST /v1/tasks` with full control over scheduling parameters. Use Zapier only for simple task creation where auto-scheduling defaults are acceptable.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.