axint.cloud.check
Run a Cloud Check on Swift or Axint TypeScript source to get Apple-specific diagnostics, verdict, and repair prompts. Provides evidence for UI and runtime claims.
Instructions
Run an agent-callable Cloud Check against Swift or Axint TypeScript source. Accepts inline source or a sourcePath, then returns a Cloud-style verdict, Apple-specific findings, next... Use: use for Apple-aware source review and repair prompts; provide evidence for UI/runtime claims. Effects: read-only response from provided source/path; may use configured Cloud Check endpoint; no source is sent unless provided.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | No | Inline Swift or Axint TypeScript source to check. Prefer sourcePath when possible; inline source should be... | |
| sourcePath | No | Optional file path to read and check. Use this from Xcode agents after writing a generated Swift file. | |
| fileName | No | Optional display name for diagnostics when passing inline source. Defaults to sourcePath or <cloud-check>. | |
| language | No | Optional language override. Omit to infer from file extension and source contents. | |
| platform | No | Optional target platform hint. Use macOS to catch common iOS-only SwiftUI modifiers in Mac app work. | |
| expectedVersion | No | Optional expected Axint version for this project/session. Cloud Check also reads .axint/project.json when... | |
| localPackageVersion | No | Optional local CLI/package version when the caller knows it. Used only for version-truth reporting. | |
| cloudRulesetVersion | No | Optional hosted/cloud ruleset version when different from the local compiler package. | |
| xcodeBuildLog | No | Optional short Xcode build excerpt. Pass only the failing lines or focused proof summary; full logs should... | |
| testFailure | No | Optional short failing unit/UI-test excerpt. Use this when static checks pass but Xcode tests still fail;... | |
| runtimeFailure | No | Optional crash, freeze, hang, launch timeout, console, preview, or runtime failure text. Include the... | |
| expectedBehavior | No | Optional expected behavior for behavior-gap checks. Pair with actualBehavior when the bug is semantic rather... | |
| actualBehavior | No | Optional observed behavior for behavior-gap checks. Pair with expectedBehavior so Cloud Check can return a... | |
| projectContextPath | No | Optional path to a local .axint/context/latest.json pack written by axint.project.index. Omit when... | |
| format | No | Output format. markdown returns the report, json returns structured data, prompt returns only the repair... |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Primary Axint tool response text, matching the first text content block. | |
| isError | No | Whether Axint marked the tool response as an error. |