ios-agent-mcp 2.6.0 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +76 -10
- package/data/knowledge.json +1 -1
- package/dist/analyzers/launch-screen.d.ts +12 -0
- package/dist/analyzers/launch-screen.js +377 -0
- package/dist/analyzers/launch-screen.js.map +1 -0
- package/dist/analyzers/performance.js +2 -2
- package/dist/analyzers/performance.js.map +1 -1
- package/dist/development-feedback.d.ts +3 -0
- package/dist/development-feedback.js +12 -0
- package/dist/development-feedback.js.map +1 -0
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/issue-report.d.ts +70 -0
- package/dist/issue-report.js +41 -0
- package/dist/issue-report.js.map +1 -0
- package/dist/private-feedback.d.ts +90 -0
- package/dist/private-feedback.js +55 -0
- package/dist/private-feedback.js.map +1 -0
- package/dist/release/model.d.ts +360 -0
- package/dist/release/model.js +546 -0
- package/dist/release/model.js.map +1 -0
- package/dist/release/package.d.ts +16 -0
- package/dist/release/package.js +166 -0
- package/dist/release/package.js.map +1 -0
- package/dist/release/project.d.ts +4 -0
- package/dist/release/project.js +45 -0
- package/dist/release/project.js.map +1 -0
- package/dist/result.d.ts +8 -8
- package/dist/unified.js +35 -4
- package/dist/unified.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/mcp.json +9 -1
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
# iOS Agent MCP
|
|
2
2
|
|
|
3
|
+
[Explore the website](https://nagarjuna2997.github.io/ios-agent-skill/) · [Choose your AI and install](https://nagarjuna2997.github.io/ios-agent-skill/install.html)
|
|
4
|
+
|
|
5
|
+
## Version 2.7.1
|
|
6
|
+
|
|
7
|
+
Adds conservative launch-screen checks and local `apple analyze` / `apple prepare` drafts. See [release notes](https://nagarjuna2997.github.io/ios-agent-skill/releases.html) for scope and evidence.
|
|
8
|
+
|
|
9
|
+
Includes real appearance-aware color catalogs and offline SVG-layer app icons,
|
|
10
|
+
Muse Code setup with verified MCP discovery, and refreshed public Apple references
|
|
11
|
+
through September 16, 2026 (27.0 releases and separately labeled 27.2 betas).
|
|
12
|
+
The CLI is included automatically. User accounts, signing profiles and credentials
|
|
13
|
+
are not package resources. Gemini CLI uses the repository extension; ChatGPT uses
|
|
14
|
+
the skills package or a separately configured MCP connection. See the
|
|
15
|
+
[client setup guide](https://nagarjuna2997.github.io/ios-agent-skill/install.html).
|
|
16
|
+
|
|
3
17
|
## One install, one MCP connection
|
|
4
18
|
|
|
5
19
|
```bash
|
|
6
20
|
claude mcp add ios-agent -- npx -y ios-agent-mcp@latest
|
|
7
21
|
```
|
|
8
22
|
|
|
9
|
-
The
|
|
23
|
+
The published 2.7.1 server exposes 37 tools: 12 review/metadata tools, 8 Apple reference tools, 14 simulator tools, `create_app`, the local `prepare_issue_report` tool, and experimental `private_feedback`. App scaffolding and simulator packages install automatically as dependencies; no separate installation or MCP connection is needed. Remove the separate knowledge/simulator connections if you previously configured them to avoid duplicate tools.
|
|
10
24
|
|
|
11
25
|
Create a starter directly:
|
|
12
26
|
|
|
@@ -20,7 +34,7 @@ Requires Node.js 20+. Simulator operations require macOS and Xcode; XcodeGen is
|
|
|
20
34
|
|
|
21
35
|
# Local source retrieval in 2.4.0
|
|
22
36
|
|
|
23
|
-
The knowledge server now searches bundled repository source, templates and guides, outlines sections, and reads exact content with bounded output and continuation offsets. It exposes eight knowledge tools separately from the eleven analyzer tools. No runtime browsing is needed for local source retrieval. See [offline source workflow](
|
|
37
|
+
The knowledge server now searches bundled repository source, templates and guides, outlines sections, and reads exact content with bounded output and continuation offsets. It exposes eight knowledge tools separately from the eleven analyzer tools. No runtime browsing is needed for local source retrieval. See [offline source workflow](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/tooling/offline-source-library.md).
|
|
24
38
|
|
|
25
39
|
## New in 2.4.0: Apple knowledge tools for more clients
|
|
26
40
|
|
|
@@ -30,7 +44,7 @@ This package includes two MCP binaries: `ios-agent-mcp` for local Swift project
|
|
|
30
44
|
npx -y --package=ios-agent-mcp@2.4.0 ios-agent-knowledge
|
|
31
45
|
```
|
|
32
46
|
|
|
33
|
-
Knowledge tools search 405 technologies and 96 update/release-note sources, retrieve guides, plan an app implementation, and specify separate Icon Composer layers. They do not write apps, access arbitrary project paths or claim native icon generation. [Setup](https://github.
|
|
47
|
+
Knowledge tools search 405 technologies and 96 update/release-note sources, retrieve guides, plan an app implementation, and specify separate Icon Composer layers. They do not write apps, access arbitrary project paths or claim native icon generation. [Setup](https://nagarjuna2997.github.io/ios-agent-skill/install.html).
|
|
34
48
|
|
|
35
49
|
# ios-agent-mcp
|
|
36
50
|
|
|
@@ -58,6 +72,8 @@ Claude → review_swift_concurrency
|
|
|
58
72
|
|
|
59
73
|
## Install
|
|
60
74
|
|
|
75
|
+
Choose your client: [Claude](#claude-code) · [ChatGPT / Codex](#chatgpt--codex) · [Gemini CLI](#gemini-cli) · [Muse Code](#muse-code). One server package; client connection methods differ.
|
|
76
|
+
|
|
61
77
|
### Claude Code
|
|
62
78
|
|
|
63
79
|
```bash
|
|
@@ -79,28 +95,59 @@ claude mcp add ios-agent -- npx -y ios-agent-mcp
|
|
|
79
95
|
}
|
|
80
96
|
```
|
|
81
97
|
|
|
82
|
-
###
|
|
98
|
+
### ChatGPT / Codex
|
|
99
|
+
|
|
100
|
+
**Codex** connects to the local unified server:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
codex mcp add ios-agent -- npx -y ios-agent-mcp@latest
|
|
104
|
+
```
|
|
83
105
|
|
|
84
|
-
|
|
106
|
+
**ChatGPT** has a different setup: use the skills-only release package where your account supports it, or configure a hosted HTTPS knowledge server/private MCP tunnel through a supported developer-mode flow. ChatGPT web does not run this local `npx` command itself. This project does not provide a public hosted endpoint. See the [ChatGPT setup guide](https://nagarjuna2997.github.io/ios-agent-skill/install.html#chatgpt) for account requirements and connection limits.
|
|
107
|
+
|
|
108
|
+
### Gemini CLI
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
gemini mcp add ios-agent -- npx -y ios-agent-mcp@latest
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
This adds a local MCP connection; Gemini web chat is a different product. The repository extension additionally supplies `GEMINI.md`, but its version pin must be available on npm before installing it. Use one connection method to avoid duplicate tools. [Gemini setup and verification](https://nagarjuna2997.github.io/ios-agent-skill/install.html#gemini).
|
|
115
|
+
|
|
116
|
+
### Muse Code
|
|
117
|
+
|
|
118
|
+
Install outside the agent sandbox:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
npm install -g ios-agent-mcp@latest
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Merge this into `~/.config/muse/settings.json`, preserving your existing settings:
|
|
85
125
|
|
|
86
126
|
```json
|
|
87
127
|
{
|
|
128
|
+
"schema_version": 1,
|
|
88
129
|
"mcpServers": {
|
|
89
130
|
"ios-agent": {
|
|
90
|
-
"command": "
|
|
91
|
-
"args": [
|
|
131
|
+
"command": "ios-agent-mcp",
|
|
132
|
+
"args": []
|
|
92
133
|
}
|
|
93
134
|
}
|
|
94
135
|
}
|
|
95
136
|
```
|
|
96
137
|
|
|
138
|
+
Restart Muse. If the executable is not found, use its absolute path from `command -v ios-agent-mcp`. MCP discovery and a Stop hook have been verified; complete model-driven app creation has not. [Muse setup and evidence](https://nagarjuna2997.github.io/ios-agent-skill/install.html#muse).
|
|
139
|
+
|
|
140
|
+
### Other clients, including Cursor
|
|
141
|
+
|
|
142
|
+
Our primary client families are **Claude, ChatGPT/Codex, Gemini CLI and Muse**. Cursor and other MCP-compatible clients may use the generic `mcpServers` configuration shown above, but are not actively verified in this support scope. [Request another client or vote on an existing issue](https://github.com/Nagarjuna2997/ios-agent-skill/issues/new?template=client_support.md).
|
|
143
|
+
|
|
97
144
|
### From source
|
|
98
145
|
|
|
99
146
|
```bash
|
|
100
147
|
git clone https://github.com/Nagarjuna2997/ios-agent-skill.git
|
|
101
148
|
cd ios-agent-skill/mcp-server
|
|
102
149
|
npm install && npm run build
|
|
103
|
-
# then point your client at: node /absolute/path/to/mcp-server/dist/
|
|
150
|
+
# then point your client at: node /absolute/path/to/mcp-server/dist/unified.js
|
|
104
151
|
```
|
|
105
152
|
|
|
106
153
|
---
|
|
@@ -114,7 +161,7 @@ npm install && npm run build
|
|
|
114
161
|
| `review_swift_architecture` | Live-implementation default arguments, presentation naming `URLSession`/`APIClient`/`ModelContext`, singletons in view models, domain importing SwiftUI, nested `NavigationStack`, `NavigationView` |
|
|
115
162
|
| `review_swiftui` | Fixed font sizes and heights, `AnyView`, `.cornerRadius`, literal spacing, materials over solid backgrounds, view state on models, `ObservableObject`, `@EnvironmentObject`, `try!` |
|
|
116
163
|
| `check_availability_guards` | Missing guards, **over-restrictive guards** (an iOS 26 API guarded at iOS 27 silently drops every iOS 26 device), Foundation Models without a runtime availability check |
|
|
117
|
-
| `audit_app_store_readiness` | Permission frameworks with no Info.plist purpose string, missing `PrivacyInfo.xcprivacy`, unlocalized strings, unlabeled icon buttons, `print()
|
|
164
|
+
| `audit_app_store_readiness` | Permission frameworks with no Info.plist purpose string, missing `PrivacyInfo.xcprivacy`, unlocalized strings, unlabeled icon buttons, `print()`; source builds also check launch configuration, storyboards and assets |
|
|
118
165
|
| `review_swift_memory` | Repeating `Timer` and `NotificationCenter` blocks capturing self, Combine sinks, non-`weak` delegates, stored closures, `unowned self` |
|
|
119
166
|
| `review_swift_security` | Hardcoded secrets, credentials in `UserDefaults`, disabled ATS, cleartext HTTP, TLS trust accepted without evaluation, MD5/SHA-1, Keychain accessibility |
|
|
120
167
|
| `review_swift_testing` | **Test files only.** Sleeping, tests with no assertion, live `URLSession`, `await` in an `XCTAssert` autoclosure, order-dependent static state |
|
|
@@ -270,8 +317,27 @@ MIT — see [LICENSE](./LICENSE).
|
|
|
270
317
|
|
|
271
318
|
## App-building loop preview (source checkout)
|
|
272
319
|
|
|
273
|
-
The CLI now provides `loop init`, `loop resume` and `loop status` alongside the unified MCP connection. See the [workflow guide](
|
|
320
|
+
The CLI now provides `loop init`, `loop resume` and `loop status` alongside the unified MCP connection. See the [workflow guide](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/tooling/app-building-loop.md) and [reading-list demo](../samples/ReadingList/README.md) for reproducible acceptance checks, bounded Claude repairs, simulator evidence and saved progress. Real Claude repair is not yet integration-verified; the published npm version does not include this preview.
|
|
274
321
|
|
|
275
322
|
## 2.6.0
|
|
276
323
|
|
|
277
324
|
Adds `review_app_intents` with conservative SiriKit migration advice and opt-in Apple Intelligence schema/onscreen checks. Apple snapshots refreshed after the iOS 27 release. Includes the preview `loop` CLI; real Claude repair remains unverified. See [release verification](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/apple/ios-27-release-verification.md) and [complete tools](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/mcp/tools.md).
|
|
325
|
+
|
|
326
|
+
## Local issue previews (2.7.0)
|
|
327
|
+
|
|
328
|
+
`prepare_issue_report` is included in 2.7.0. It creates a local preview from fixed failure categories and links to this project’s issue tracker. It does not collect diagnostics, open a browser, make network calls or submit issues. Show the preview to the user before opening any link. GitHub sign-in and user submission are required.
|
|
329
|
+
|
|
330
|
+
## Private chat feedback — experimental
|
|
331
|
+
|
|
332
|
+
Version 2.7.1 includes `private_feedback` as a 37th tool. It requires an operator-configured HTTPS receiver, a local preview, and explicit user approval before sending fixed categories to a private repository. Hosting is not configured; private delivery is not live by default. No user GitHub sign-in is needed once deployed. No source, logs or credentials are accepted, and there is no automatic public fallback. See [the reporting workflow](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/tooling/issue-reporting.md).
|
|
333
|
+
|
|
334
|
+
### Launch-screen review (2.7.1)
|
|
335
|
+
|
|
336
|
+
The existing App Store audit and project analysis include target-aware static launch-screen checks. Unresolved settings are reported as coverage gaps. See [checks and limitations](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/tooling/launch-screen-review.md). Included in npm 2.7.1.
|
|
337
|
+
|
|
338
|
+
### Local release-package foundation (2.7.1)
|
|
339
|
+
|
|
340
|
+
`npx -y ios-agent-mcp@latest apple analyze|prepare --project /path/to/app --target App --configuration Release --json`
|
|
341
|
+
collects selected-target facts, conservative feature/screen candidates, questions
|
|
342
|
+
and hashed local draft packages. No Apple connection, AI provider, build, upload
|
|
343
|
+
or submission is performed. See the [Phase 1 workflow and limitations](https://github.com/Nagarjuna2997/ios-agent-skill/blob/main/docs/tooling/local-release-package.md).
|