webflow-mcp:site-activity
Query and summarize site activity logs for a Webflow enterprise site. Surfaces recent changes, identifies who made them, and generates human-readable activity reports. Use for site monitoring, change tracking, publish preparation, or weekly activity summaries. Enterprise plans only.
What this skill does
# Site Activity
Query, analyze, and summarize Webflow site activity logs for enterprise sites. Provides natural-language querying of recent changes, filtered summaries by event type or user, and formatted reports for team sharing.
## Important Note
**ALWAYS use Webflow MCP tools for all operations:**
- Use Webflow MCP's `data_sites_tool` with action `list_sites` for listing available sites
- Use Webflow MCP's `data_sites_tool` with action `get_site` for detailed site information
- Use Webflow MCP's `data_enterprise_tool` with action `list_site_activity_logs` for retrieving activity log events
- Use Webflow MCP's `webflow_guide_tool` to get best practices before starting
- DO NOT use any other tools or methods for Webflow operations
- All tool calls must include the required `context` parameter (15-25 words, third-person perspective)
**Enterprise Only:** Activity logs are only available for sites on Enterprise hosting plans. If the tool returns an error, inform the user that this feature requires an Enterprise plan.
**Tool Parameters for `list_site_activity_logs`:**
- `site_id` (required): The site's unique identifier
- `limit` (optional): Maximum records to return (max 100)
- `offset` (optional): Pagination offset for fetching beyond the first page
## Instructions
### Phase 1: Site Selection & Context
1. **Identify target site**: If the user does not provide a site ID, use `data_sites_tool` with action `list_sites`. Each site in the response has `displayName`, `lastPublished`, and `lastUpdated`.
**Sort order**:
1. ⚠️ sites (unpublished changes) before ✅ sites (up to date)
2. Within each group, most recently updated first (by `lastUpdated` descending)
**Truncation**: Show the top **10** sites only. If there are more than 10 total, append a line `…and N more sites. Reply "show all" to see the rest.` below the list. When the user replies "show all" (or similar), re-present the full list in the same format.
Present the list in this exact format:
```
📋 Site Activity — Site Selection
Available Enterprise Sites:
1. <Site Name> ⚠️ — last published <short date>, updated <short date> (<N> days unpublished)
2. <Site Name> ✅ — published & updated <short date>
3. <Site Name> ⚠️ — never published, updated <short date>
…and 4 more sites. Reply "show all" to see the rest.
Which site would you like to review?
```
Format rules:
- Dates: abbreviated ("Mar 6", "Apr 14"). Add the year only if it isn't the current year.
- Use ⚠️ when `lastUpdated > lastPublished` OR `lastPublished` is null; ✅ when `lastUpdated <= lastPublished`.
- When `lastPublished == lastUpdated`, collapse the right-hand side to "published & updated <date>".
- Omit the "…and N more sites" line when the workspace has 10 or fewer sites.
- Do not omit the status flag or the dates — they are required for every site.
2. **Fetch selected-site details**: After the user selects a site (or when a site ID was provided up front), call `data_sites_tool` with action `get_site` **once, for the selected site only**, to retrieve fields not returned by `list_sites` — in particular:
- Custom domains
- Locale / localization settings
- Any additional site metadata needed for the analysis
`lastPublished` and `lastUpdated` are already known from step 1 (or from `get_site` if the user provided a site ID directly). Keep these in memory for the pre-publish filter in Phase 3.
3. **Infer intent from the prompt** (do not ask a follow-up question if the prompt is clear). Map the request to one of:
- Recent activity summary ("what changed this week?")
- Specific user's activity ("what did Sarah change?")
- Specific activity type ("any CMS changes recently?")
- Pre-publish review ("what's changed since last publish?")
- General overview (default when the prompt is ambiguous)
Only ask a clarifying question if the request is genuinely ambiguous (e.g., "show me activity" with no time window, user, or event type context).
### Phase 2: Fetch Activity Logs
4. **Fetch activity logs**: Use `list_site_activity_logs` with the site ID
- Default to `limit: 100` (maximum per request) for comprehensive results
- The API returns events in reverse chronological order (newest first)
5. **Handle pagination**: If the user needs older activity or the results suggest more data exists:
- Use `offset` parameter to fetch additional pages
- Combine results across pages for analysis
- Warn the user if going back further than available data
### Phase 3: Analysis & Summarization
6. **Parse each activity log entry**: Each event contains:
- `id`: Unique event identifier
- `createdOn`: Timestamp (ISO 8601)
- `lastUpdated`: Last update timestamp
- `event`: Event type string (see Event Types below)
- `user`: Object with `id` and `displayName` (absent for system events like backups)
- `resourceOperation`: The operation performed (`CREATED`, `MODIFIED`, `DELETED`)
- `resourceId`: ID of the affected resource (when applicable)
- `resourceName`: Human-readable name of the affected resource
- `payload`: Additional event-specific details (see Payload Details below)
7. **Categorize events** into human-readable groups (41 event types):
**Page Changes:**
- `page_dom_modified` — Page structure/element changes
- `page_created` — New page creation
- `page_deleted` — Page deletion
- `page_duplicated` — Page duplication
- `page_renamed` — Page rename
- `page_settings_modified` — Page settings updates (SEO, slug, etc.)
- `page_custom_code_modified` — Page-level custom code changes
- `page_settings_custom_code_modified` — Page settings custom code changes
**Style & Variable Changes:**
- `styles_modified` — Style/class changes
- `variable_modified` — Single variable change
- `variables_modified` — Multiple variable changes
**Component Changes:**
- `symbols_modified` — Component/symbol created, modified, or deleted
**Interactions:**
- `ix2_modified_on_page` — Interaction changes on a page
- `ix2_modified_on_component` — Interaction changes on a component
- `ix2_modified_on_class` — Interaction changes on a class
**CMS Changes:**
- `cms_item` — Collection item created, modified, or deleted
- `cms_collection` — Collection schema created, modified, or deleted
**Site Management:**
- `site_published` — Site published
- `site_unpublished` — Site unpublished
- `site_custom_code_modified` — Site-level custom code changes
- `backup_created` — Automatic or manual backup
- `backup_restored` — Backup restored
**Localization:**
- `secondary_locale_page_content_modified` — Localized page content changed
- `locale_added` — New locale added
- `locale_removed` — Locale removed
- `locale_enabled` — Locale enabled
- `locale_disabled` — Locale disabled
- `locale_display_name_updated` — Locale display name changed
- `locale_subdirectory_updated` — Locale subdirectory changed
- `locale_tag_updated` — Locale tag changed
**Branches:**
- `branch_created` — Branch created
- `branch_merged` — Branch merged
- `branch_deleted` — Branch deleted
- `branch_review_created` — Branch review requested
- `branch_review_approved` — Branch review approved
- `branch_review_canceled` — Branch review canceled
**Library:**
- `library_shared` — Library shared with other sites
- `library_unshared` — Library unshared
- `library_installed` — Library installed from another site
- `library_uninstalled` — Library uninstalled
- `library_update_shared` — Library update published
- `library_update_accepted` — Library update accepted
Note: If an event type not listed above appears, categorize it as "Other" and display the raw `event` string.
8. **Apply filters** based on user's request:
- By event category (e.g., only CMS changesRelated 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.