agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when needing Xcode build automation or Apple API/WWDC documentation lookup via XcodeBuildMCP or apple-docs MCP servers.
$ npx -y skills add fusengine/agents --skill mcp-tools --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mcp-toolsContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when needing Xcode build automation or Apple API/WWDC documentation lookup via XcodeBuildMCP or apple-docs MCP servers.
name: mcp-tools description: Use when needing Xcode build automation or Apple API/WWDC documentation lookup via XcodeBuildMCP or apple-docs MCP servers. user-invocable: false references: references/xcodebuild-mcp.md, references/apple-docs-mcp.md related-skills: swift-core, ios, macos
<objective> Documents the two MCP servers that power the Swift/Apple workflow: XcodeBuildMCP for Xcode project automation and build validation (discover projects, build for macOS/iOS Simulator/device, list schemes, clean builds, scaffold new projects, and autonomous build-fix-rebuild loops), and Apple Docs MCP for official documentation with offline WWDC access (all frameworks, symbol details, WWDC sessions 2014-2025 with transcripts, sample code, API availability/deprecation).
Defines the mandatory research-first priority order (Apple Docs MCP first, then Context7 for third-party libraries, then Exa web search) and the mandatory build-validation loop after every code change (build, read errors, fix, rebuild, only commit on zero errors).
Includes installation snippets for both servers and a quick-reference table mapping tasks to the right tool. </objective>
**Model Context Protocol servers for enhanced Swift/Xcode workflows.**
**Purpose**: Xcode project automation and build validation
**Documentation**: `xcode-build-mcp.md`
**Key features**:
**Installation**:
{
"mcpServers": {
"XcodeBuildMCP": {
"command": "npx",
"args": ["-y", "xcodebuildmcp@latest"]
}
}
}**Use when**:
---
**Purpose**: Official Apple documentation with offline WWDC access
**Documentation**: `apple-docs-mcp.md`
**Key features**:
**Installation**:
{
"mcpServers": {
"apple-docs": {
"command": "npx",
"args": ["-y", "@kimsungwhee/apple-docs-mcp"]
}
}
}**Use when**:
---
Priority order: 1. ⭐ Apple Docs MCP (official Apple docs + WWDC) 2. Context7 (third-party libraries) 3. Exa web search (community tutorials)
After EVERY code change: 1. XcodeBuildMCP: Build project 2. If errors → Read error messages 3. Fix issues 4. Rebuild to validate 5. Only commit if zero errors
---
1. Feature request received ↓ 2. Apple Docs MCP: Search API/WWDC ↓ 3. Read existing codebase (DRY principle) ↓ 4. Implement following Apple patterns ↓ 5. XcodeBuildMCP: Build to validate ⭐ ↓ 6. If build errors: - Read error messages - Fix issues - Rebuild ↓ 7. Run tests (if available) ↓ 8. Commit changes
---
✅ Autonomous error detection and fixing ✅ Zero tolerance for compilation errors ✅ Lightning-fast incremental builds ✅ Project scaffolding automation ✅ Build validation before commits
✅ Official Apple documentation (most accurate) ✅ WWDC sessions offline (2014-2025) ✅ Zero network latency ✅ Complete API coverage ✅ Deprecation and availability info
---
**XcodeBuildMCP**:
**Apple Docs MCP**:
---
| Task | MCP Tool | Documentation | |------|----------|---------------| | Search Apple API | `apple-docs` | `apple-docs-mcp.md` | | Find WWDC session | `apple-docs` | `apple-docs-mcp.md` | | Get code example | `apple-docs` | `apple-docs-mcp.md` | | Build project | `XcodeBuildMCP` | `xcode-build-mcp.md` | | Validate changes | `XcodeBuildMCP` | `xcode-build-mcp.md` | | Clean build | `XcodeBuildMCP` | `xcode-build-mcp.md` | | Create project | `XcodeBuildMCP` | `xcode-build-mcp.md` |
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every…
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional…
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).