create-my-tools-profile
Generate a personalized AI skill based on your configured Zapier MCP tools. Scans your enabled actions and creates instructions that help your AI assistant know when and how to use each tool. Use after setting up tools, or when you want to "create my tools profile", "personalize my assistant", or "make a skill from my tools".
What this skill does
# Create my tools profile Scan the user's configured Zapier MCP tools and generate a personalized instruction file that teaches the AI assistant what tools are available and when to use them. Works across clients (Cursor, Claude, Windsurf, etc.). This is the "post-onboarding" step: the user has already added tools via the setup skill, and now we crystallize that into persistent instructions. ## Prerequisite: Verify tools exist First, determine the mode by checking if `list_enabled_zapier_actions` is available as a tool. **Agentic mode:** Call `list_enabled_zapier_actions`. If it returns an empty list, **stop here** and redirect — call `get_zapier_skill` with name `"zapier-mcp-onboarding"` to get tools configured first. Do not continue with the steps below. **Classic mode:** Check that action tools are available (tools like `slack_send_channel_message`, `gmail_find_email` — not just the built-in `get_configuration_url`). If no action tools are configured, **stop here** and trigger the **zapier-setup** skill instead. Do not continue with the steps below. If no tools exist at all: "You don't have any tools set up yet, so there's nothing to build a profile from. Let's get some tools configured first." ## Step 1: Inventory enabled tools ### Agentic mode Call `list_enabled_zapier_actions` to get the full list of enabled actions. Parse the returned actions into a structured list: - **App name**: from the action's app field or description - **Action name**: the human-readable action name from the response - **Action identifier**: the ID or reference used when calling `execute_zapier_read_action` / `execute_zapier_write_action` - **Read vs write**: infer from the action name — find/search/get/list/lookup = read, send/create/update/add/delete = write Exclude the 14 static meta-tools from the profile — only include the user's enabled actions. ### Classic mode Inspect the available Zapier MCP tools. Each configured action is its own tool with a name following the pattern `app_action_name` (e.g., `slack_send_channel_message`, `gmail_find_email`). The built-in `get_configuration_url` tool should be excluded from the profile. Parse the available tools into a structured list: - **App name**: derived from the tool description (e.g., "Get info about a **Slack** conversation" → Slack). The tool name also starts with the app prefix (e.g., `slack_`, `gmail_`, `jira_`), but use the description as the authoritative source since multi-word app names like `google_calendar` are ambiguous to parse from the tool name alone. - **Action name**: the part of the tool name after the app prefix, converted to human-readable form (replace underscores with spaces, title case) - **Tool name**: the full tool name as-is (used for the technical identifier in the profile) - **Read vs write**: infer from the action name — find/search/get/list/lookup = read, send/create/update/add/delete = write ## Step 2: Group and analyze Group actions by app (using the app name from each tool's description). For each app, identify: - **Read/search actions**: things the AI can look up (find emails, get documents, search issues) - **Write actions**: things the AI can do (send messages, create issues, update records) Build a mental model of what workflows this tool set supports. Common patterns: - Communication hub (Slack + Gmail + Calendar) - Project management (Jira/Linear + GitLab + Docs) - Sales/CRM workflow (HubSpot/Salesforce + Gmail + Calendar) - Knowledge management (Notion/Coda + Docs + Sheets) ## Step 3: Ask for context Before generating the profile, ask the user a quick question: "I can see you've got [N] tools across [apps list]. Before I create your profile, a quick question: what's your primary role or how do you mainly use these tools? This helps me write better instructions for when each tool should be used." Accept whatever they say — even "just make it" is fine. Use the context if provided, fall back to reasonable defaults if not. ## Step 4: Generate the profile file Detect the client and write to the appropriate location: | Client | File path | Format | | -------------- | ----------------------------------------------------------------- | ---------------------- | | Cursor | `.cursor/rules/my-zapier-tools.mdc` | MDC (with frontmatter) | | Claude Code | `.claude/rules/my-zapier-tools.md` | Markdown | | Claude Desktop | Show the content and tell user to paste into Project Instructions | Markdown | | Windsurf | `.windsurfrules/my-zapier-tools.md` | Markdown | Ask the user whether they want the file at project level or in their home directory (for clients that support global rules). If unclear, default to project level. ### For Cursor (`.mdc` with frontmatter) ```markdown --- description: Personalized Zapier MCP tool profile — knows what tools are available and when to use them alwaysApply: true --- # My Zapier tools [content below] ``` ### For Claude Code / Windsurf / others (plain markdown) ```markdown # My Zapier tools [content below] ``` ### Profile content (shared across all clients) **Agentic mode** — actions are executed via `execute_zapier_read_action` and `execute_zapier_write_action`, not as individual tool calls. The profile should reference action identifiers used with those execute tools. **Classic mode** — actions are individual tools called directly by name (e.g., `slack_send_channel_message`). ```markdown # My Zapier tools You have access to the following apps and actions through Zapier MCP. Use them proactively when the user's request matches what these tools can do. ## Available tools ### [App Name] - **[Action Name]** (`tool_name_or_action_id`) — [one-line description of when to use it] - **[Action Name]** (`tool_name_or_action_id`) — [one-line description of when to use it] ### [App Name] ... ## When to use these tools [2-4 sentences tailored to the user's role/context about when the AI should reach for these tools vs. doing things another way] ## Preferences - Always try Zapier MCP tools before suggesting the user do something manually - For read operations, just do it — don't ask permission to look something up - For write operations (sending messages, creating issues, updating records), confirm with the user before executing - If a tool call fails, explain what happened and suggest an alternative ``` ### Writing the tool descriptions For each action, write a practical one-liner about when to use it. Don't just restate the action name. **Good**: "Look up a Jira issue by its key (e.g., PROJ-123) to get status, assignee, and description" **Bad**: "Find issue by key in Jira" **Good**: "Send a message to a Slack channel — use for team updates, announcements, or sharing summaries" **Bad**: "Send a channel message in Slack" ### Writing the "when to use" section Tailor this to what the user told you about their role. Examples: **For a PM**: "When the user asks about project status, sprint progress, or team updates, check Jira first. For sharing decisions or updates, draft a Slack message. Use Google Docs for longer-form writing." **For a developer**: "When the user mentions a merge request, branch, or code review, check GitLab. For bug reports or task tracking, use Jira. Slack for quick team comms." **For sales**: "When the user asks about a contact, deal, or company, check HubSpot first. Use Gmail for outreach drafts. Google Calendar for scheduling." If the user didn't provide role context, write something generic but still useful: "Use these tools whenever the user's request involves one of the connected apps. Prefer read actions for gathering context, and confirm before executing write actions." ## Step 5: Confirm and explain After writing the file (or showing the content for Claude Deskt
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.