ios-agent-mcp 2.7.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 +23 -6
- 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/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/issue-report.d.ts +4 -4
- package/dist/issue-report.js +3 -3
- package/dist/issue-report.js.map +1 -1
- 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 +21 -2
- 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 +5 -3
package/README.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
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
4
|
|
|
5
|
-
## Version 2.7.
|
|
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.
|
|
6
8
|
|
|
7
9
|
Includes real appearance-aware color catalogs and offline SVG-layer app icons,
|
|
8
10
|
Muse Code setup with verified MCP discovery, and refreshed public Apple references
|
|
@@ -18,7 +20,7 @@ the skills package or a separately configured MCP connection. See the
|
|
|
18
20
|
claude mcp add ios-agent -- npx -y ios-agent-mcp@latest
|
|
19
21
|
```
|
|
20
22
|
|
|
21
|
-
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.
|
|
22
24
|
|
|
23
25
|
Create a starter directly:
|
|
24
26
|
|
|
@@ -32,7 +34,7 @@ Requires Node.js 20+. Simulator operations require macOS and Xcode; XcodeGen is
|
|
|
32
34
|
|
|
33
35
|
# Local source retrieval in 2.4.0
|
|
34
36
|
|
|
35
|
-
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).
|
|
36
38
|
|
|
37
39
|
## New in 2.4.0: Apple knowledge tools for more clients
|
|
38
40
|
|
|
@@ -159,7 +161,7 @@ npm install && npm run build
|
|
|
159
161
|
| `review_swift_architecture` | Live-implementation default arguments, presentation naming `URLSession`/`APIClient`/`ModelContext`, singletons in view models, domain importing SwiftUI, nested `NavigationStack`, `NavigationView` |
|
|
160
162
|
| `review_swiftui` | Fixed font sizes and heights, `AnyView`, `.cornerRadius`, literal spacing, materials over solid backgrounds, view state on models, `ObservableObject`, `@EnvironmentObject`, `try!` |
|
|
161
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 |
|
|
162
|
-
| `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 |
|
|
163
165
|
| `review_swift_memory` | Repeating `Timer` and `NotificationCenter` blocks capturing self, Combine sinks, non-`weak` delegates, stored closures, `unowned self` |
|
|
164
166
|
| `review_swift_security` | Hardcoded secrets, credentials in `UserDefaults`, disabled ATS, cleartext HTTP, TLS trust accepted without evaluation, MD5/SHA-1, Keychain accessibility |
|
|
165
167
|
| `review_swift_testing` | **Test files only.** Sleeping, tests with no assertion, live `URLSession`, `await` in an `XCTAssert` autoclosure, order-dependent static state |
|
|
@@ -315,12 +317,27 @@ MIT — see [LICENSE](./LICENSE).
|
|
|
315
317
|
|
|
316
318
|
## App-building loop preview (source checkout)
|
|
317
319
|
|
|
318
|
-
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.
|
|
319
321
|
|
|
320
322
|
## 2.6.0
|
|
321
323
|
|
|
322
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).
|
|
323
325
|
|
|
324
|
-
## Local issue previews (
|
|
326
|
+
## Local issue previews (2.7.0)
|
|
325
327
|
|
|
326
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).
|