Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugins/build-ios-apps/.mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"env": {
"XCODEBUILDMCP_ENABLED_WORKFLOWS": "simulator,ui-automation,debugging,logging"
}
},
"swiftdoc": {
"type": "http",
"url": "https://sosumi.ai/mcp"
}
}
}
2 changes: 2 additions & 0 deletions plugins/build-ios-apps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ It currently includes these skills:
- building and refactoring SwiftUI UI using current platform patterns
- reviewing or adopting iOS 26+ Liquid Glass APIs
- auditing SwiftUI performance and guiding profiling workflows
- looking up Swift and Apple-platform API docs through SwiftDoc MCP
- debugging iOS apps on simulators with XcodeBuildMCP-backed flows
- restructuring large SwiftUI views toward smaller, more stable compositions

Expand All @@ -35,6 +36,7 @@ with this shape:
- `.mcp.json`
- plugin-local MCP config
- wires in XcodeBuildMCP for simulator build/run/debug workflows
- wires in SwiftDoc MCP for Swift and Apple-platform documentation lookup

- `agents/`
- plugin-level agent metadata
Expand Down
1 change: 1 addition & 0 deletions plugins/build-macos-apps/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"oslog"
],
"skills": "./skills/",
"mcpServers": "./.mcp.json",
"interface": {
"displayName": "Build macOS Apps",
"shortDescription": "Build, debug, instrument, and implement macOS apps with SwiftUI and AppKit guidance",
Expand Down
8 changes: 8 additions & 0 deletions plugins/build-macos-apps/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"swiftdoc": {
"type": "http",
"url": "https://sosumi.ai/mcp"
}
}
}
9 changes: 7 additions & 2 deletions plugins/build-macos-apps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ It currently includes these skills:
- triaging failing unit, integration, and UI-hosted macOS tests
- debugging launch failures, crashes, linker problems, and runtime regressions
- inspecting signing identities, entitlements, hardened runtime, and Gatekeeper issues
- looking up Swift and Apple-platform API docs through SwiftDoc MCP
- preparing packaging and notarization workflows for distribution

## What It Does Not Cover
Expand All @@ -52,6 +53,10 @@ with this shape:
- required plugin manifest
- defines plugin metadata and points Codex at the plugin contents

- `.mcp.json`
- plugin-local MCP config
- wires in SwiftDoc MCP for Swift and Apple-platform documentation lookup

- `agents/`
- plugin-level agent metadata
- currently includes `agents/openai.yaml` for the OpenAI surface
Expand All @@ -66,8 +71,8 @@ with this shape:

## Notes

This plugin is currently skills-first at the plugin level. It does not ship a
plugin-local `.mcp.json`, matching the public `plugins/build-ios-apps` shape.
This plugin combines skills with a small plugin-local `.mcp.json` for
documentation lookup.

The default posture is shell-first. Unlike the iOS build plugin, this plugin
does not assume simulator tooling or touch-driven UI inspection for its main
Expand Down