ios-agent-mcp 2.5.0 → 2.6.0
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 +14 -11
- package/data/knowledge.json +1 -1
- package/data/local-library.mjs +2 -2
- package/dist/analyzers/app-intents.d.ts +9 -0
- package/dist/analyzers/app-intents.js +105 -0
- package/dist/analyzers/app-intents.js.map +1 -0
- package/dist/analyzers/skill.js +1 -1
- package/dist/analyzers/skill.js.map +1 -1
- package/dist/app-loop.d.ts +7 -0
- package/dist/app-loop.js +548 -0
- package/dist/app-loop.js.map +1 -0
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/dist/resources.js +2 -0
- package/dist/resources.js.map +1 -1
- package/dist/result.d.ts +16 -16
- package/dist/unified.js +10 -1
- package/dist/unified.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/mcp.json +5 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# iOS Agent MCP
|
|
2
2
|
|
|
3
|
-
## One install, one MCP connection
|
|
3
|
+
## One install, one MCP connection
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
claude mcp add ios-agent -- npx -y ios-agent-mcp@
|
|
6
|
+
claude mcp add ios-agent -- npx -y ios-agent-mcp@latest
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
The default server exposes
|
|
9
|
+
The default server exposes 35 tools: 12 review/metadata tools, 8 Apple reference tools, 14 simulator tools, and `create_app`. 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
10
|
|
|
11
11
|
Create a starter directly:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx -y ios-agent-mcp@
|
|
14
|
+
npx -y ios-agent-mcp@latest new MyApp --brief "A reading list with local storage" --xcodegen
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Requires Node.js 20+. Simulator operations require macOS and Xcode; XcodeGen is required to generate an Xcode project from the starter specification. The agent implements app features using the starter, source tools and verification tools. One install is not autonomous app generation. The default connection now includes tools that write files and operate the simulator; review and reference tools remain read-only.
|
|
@@ -162,18 +162,13 @@ The root comes from `--project`, then `IOS_AGENT_PROJECT`, then the working
|
|
|
162
162
|
directory the client spawned the server in. **Every payload reports which root it
|
|
163
163
|
used**, so an empty project is never mistaken for a wrong path.
|
|
164
164
|
|
|
165
|
-
|
|
166
|
-
`xcodebuild`, which needs macOS and Xcode and breaks the
|
|
167
|
-
`filesystem: read, network: none` contract that lets this package install
|
|
168
|
-
anywhere in ~26 KB. Build and simulator state belong in the separate package that
|
|
169
|
-
already requires a full toolchain — see [ROADMAP.md](../ROADMAP.md).
|
|
165
|
+
Project resources remain read-only snapshots. Build, test and simulator actions are available as tools in the unified connection; they require macOS/Xcode.
|
|
170
166
|
|
|
171
167
|
---
|
|
172
168
|
|
|
173
169
|
## What it does and does not do
|
|
174
170
|
|
|
175
|
-
**
|
|
176
|
-
`project.pbxproj` under the path you give it. No network, no writes.
|
|
171
|
+
**Review tools:** read project files without modifying them. **App creation:** writes a new starter. **Simulator tools:** build/test projects and operate devices; builds can fetch dependencies, and preview starts a loopback server.
|
|
177
172
|
|
|
178
173
|
**Does not:** prove your app builds or behaves correctly. Run `swift build` and
|
|
179
174
|
`swift test` for that — the tools say so in their own output.
|
|
@@ -272,3 +267,11 @@ before, which is exactly how 2.0.1 shipped with a manifest reading 1.0.0.
|
|
|
272
267
|
## License
|
|
273
268
|
|
|
274
269
|
MIT — see [LICENSE](./LICENSE).
|
|
270
|
+
|
|
271
|
+
## App-building loop preview (source checkout)
|
|
272
|
+
|
|
273
|
+
The CLI now provides `loop init`, `loop resume` and `loop status` alongside the unified MCP connection. See the [workflow guide](../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
|
+
|
|
275
|
+
## 2.6.0
|
|
276
|
+
|
|
277
|
+
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).
|