Workspace Agents
This workspace defines Cursor agents (custom subagents) organised by tool or theme. Agents complement Project Rules in .cursor/rules/ and provide repeatable workflows for specific tasks.
Sync: Every agent in .cursor/agents/ must have a doc page here. Run npm run verify-agents-sync (in docusaurus/) to check. See .cursor/plans/README.md → "When you create a new agent".
Agent Types
| Type | Workspace | Context source | MCP required |
|---|---|---|---|
| Full-workspace | TechStackMain (this repo) | Local files, rules, docs | Varies by agent |
| MCP only | Minimal (client projects) | pacing-docs search | pacing-docs; Webflow for Webflow agents |
MCP-only agents run in workspaces with only pacing-docs MCP (and Webflow MCP for Webflow agents). They search for context instead of reading local files. Copy .cursor/agents/mcp-*.md into the client workspace.
Categories
Agents are organised by the tool they use or their main theme:
| Category | Overview | Agents |
|---|---|---|
| Documentation | Auditing and fixing markdown docs | Docs Page Auditor, Docs Page Fixer |
| Webflow | Content, keywords, SEO metadata | Keyword Content Page, SEO Metadata Auditor (+ MCP versions) |
| n8n | Workflow design and review | n8n Workflow Designer (+ MCP version) |
| GTM | Tracking implementation audits | GTM Tracking Auditor (+ MCP version) |
| Strategy | Tech stack proposals | Client Tech Stack Proposal (+ MCP version) |
Each category has an overview page listing all agents with Workspace (Full vs MCP only) and MCP required.
MCP Requirements Summary
| MCP | Used by |
|---|---|
| pacing-docs | All MCP-only agents (search for context) |
| Webflow | Webflow Keyword Content Page, Webflow SEO Metadata Auditor (full and MCP) |
Core References (for MCP agents)
These IDs and search hints help MCP agents find context via pacing-docs:
| Area | ID / Value | Search hint |
|---|---|---|
| Webflow site | 669e9035529a7f101e149eca | "Webflow site ID pacing.agency" |
| GTM web | GTM-PGPK24VR | "GTM web container" |
| GTM server | GTM-NHVBMP3D | "GTM server sGTM" |
| GA4 | G-TPFS2Z0HNJ | "GA4 measurement ID" |
| Identity | _c_pca | "GTM _c_pca client ID" |
| n8n | n8n.pacing.agency | "n8n pacing agency" |
| Webflow Services | 676058e3b03e90853d8d8ceb | "Webflow Services collection" |
| Webflow Case Studies | 68763c05b86dd4610d8d02b5 | "Webflow case studies" |
| Webflow Blog | 669e9035529a7f101e149f62 | "Webflow blog post collection" |
| Webflow Landing Pages | 6904dcb47ebff962cc495004 | "Webflow landing pages lp1" |
Core Design Pattern (Audit → Approve → Apply)
For docs automation that could change source files:
- Audit agent reads the target, loads context, checks against standards, and writes an audit + proposed draft.
- Human review happens in the queue folder.
- Fixer agent applies only approved drafts, creates backups, and verifies parity.
Setup Patterns (How to Create New Agents)
- Agent files live in
.cursor/agents/(lowercase, hyphenated names). - Make outputs explicit (e.g. queue under
.cursor/plans/). - For MCP agents: include core references and a mandatory search step.
- Enforce source-of-truth mapping for any agent that touches docs.
Related Documentation
- Project Rules (see Project Rules and Workspace Agents sections)
- Repository Structure
- Content Editing Prompt
- Cursor Workspace Setup (MCP configuration)