{
  "markdown": "<p align=\"center\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"docs/assets/mark-dark.svg\" />\n    <img src=\"docs/assets/mark.svg\" alt=\"Axint mark\" width=\"52\" height=\"52\" valign=\"middle\" />\n  </picture>\n  &nbsp;\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"docs/assets/wordmark-dark.svg\" />\n    <img src=\"docs/assets/wordmark.svg\" alt=\"Axint\" height=\"32\" valign=\"middle\" />\n  </picture>\n</p>\n\n<h1 align=\"center\">Agents can write Swift. Axint makes them prove it.</h1>\n\n<p align=\"center\">\n  <strong>The proof and repair layer for Apple coding agents.</strong>\n</p>\n\n<p align=\"center\">\n  Axint checks the Swift your agent wrote, runs the real Xcode build and tests,<br />\n  reconciles findings with Apple tooling, and returns signed proof with the exact repairs to make next.<br />\n  <strong>No project rewrite. No source upload.</strong>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://www.npmjs.com/package/@axint/compiler\"><img src=\"https://img.shields.io/npm/v/@axint/compiler?color=f05138&label=npm\" alt=\"npm package\" /></a>\n  <a href=\"https://www.npmjs.com/package/@axint/compiler\"><img src=\"https://img.shields.io/npm/dm/@axint/compiler?color=2f3431&label=downloads\" alt=\"monthly npm downloads\" /></a>\n  <a href=\"https://pypi.org/project/axint/\"><img src=\"https://img.shields.io/pypi/v/axint?color=3775a9&label=PyPI\" alt=\"PyPI package\" /></a>\n  <a href=\"https://github.com/agenticempire/axint/actions/workflows/ci.yml\"><img src=\"https://github.com/agenticempire/axint/actions/workflows/ci.yml/badge.svg\" alt=\"continuous integration\" /></a>\n  <a href=\"LICENSE\"><img src=\"https://img.shields.io/badge/license-Apache%202.0-2f3431\" alt=\"Apache 2.0 license\" /></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"#prove-an-existing-project\"><strong>Prove a project</strong></a> ·\n  <a href=\"https://axint.ai/cloud/preview\">Try Cloud Preview</a> ·\n  <a href=\"#connect-your-agent\">Connect an agent</a> ·\n  <a href=\"https://docs.axint.ai\">Docs</a> ·\n  <a href=\"https://github.com/agenticempire/axint-examples\">Examples</a> ·\n  <a href=\"#contribute\">Contribute</a>\n</p>\n\n<p align=\"center\">\n  <img src=\"media/intro.gif\" alt=\"Axint discovers an Apple project, checks Swift, runs Xcode proof, reconciles findings, and produces a signed source-free receipt\" width=\"960\" />\n</p>\n\n<p align=\"center\"><sub>Local by default. Open source. Ordinary Swift.</sub></p>\n\n## A plausible patch is not proof.\n\nApple software is a graph of contracts. SwiftUI state, App Intents, Siri and\nShortcuts metadata, widgets, entitlements, privacy declarations, concurrency,\nbuild settings, tests, and runtime behavior all have to agree. Code that looks\nright can still fail to compile, miss an interaction, or violate a platform\ncontract.\n\nAxint puts static analysis and Apple tooling into one repair loop. Static checks\nidentify leads; Xcode build and test output can confirm, contextualize, or\nsuppress them. The result stays compact enough for the next agent turn while\nfull logs and artifacts remain on disk.\n\n| Evidence class | What it means                                                                                                               |\n| -------------- | --------------------------------------------------------------------------------------------------------------------------- |\n| **Confirmed**  | Deterministic analysis or matching compiler, build, or test evidence supports the finding.                                  |\n| **Probable**   | Strong static evidence identifies a likely problem, but decisive Apple-tooling evidence is incomplete.                      |\n| **Advisory**   | A heuristic identifies a quality, accessibility, privacy, interaction, design, or runtime concern for review.               |\n| **Suppressed** | Stronger evidence or a project-local review contradicts the finding; it remains in the receipt without blocking the result. |\n\n## Prove an existing project\n\n```bash\nnpx -y -p @axint/compiler axint prove --dir /path/to/MyApp\n```\n\nAxint discovers the Xcode project and scheme, checks existing Swift, runs the\navailable build and tests, reconciles the findings, and writes proof under\n`.axint/proof`.\n\nThe default local run requires no account or configuration. It does not change\nSwift, upload source, install project instructions, install memory or MCP\nconfiguration, apply fixes, or rewrite the project.\n\nWhen a failure needs another turn, Axint returns a\n[**Fix Packet**](docs/FIX_PACKET.md): a compact repair artifact with the finding,\nlikely files, exact next action, and rerun command. It also writes a\n**source-free receipt**: a signed proof file containing evidence, results,\nhashes, and repair information without project source.\n\n```bash\naxint prove --dir /path/to/MyApp --fix\naxint receipt verify /path/to/MyApp/.axint/proof/latest.proof.json\n```\n\n`--fix` opts into supported deterministic rewrites and reruns the proof loop.\nReceipt verification checks payload integrity and the embedded Ed25519 signer.\nA locally signed receipt does not establish an externally trusted identity\nunless CI or the receiving team pins the signer fingerprint or a managed\nsigning key.\n\n## One proof contract\n\nGenerate, Check, Run, Team, and Cloud are different entry points into the same\ncontract: verdict, evidence, findings, next actions, and artifact paths.\n\n| Mode         | Role in the proof loop                                                                                                            |\n| ------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n| **Check**    | Validate generated or existing Swift with evidence-aware diagnostics and appropriate abstention.                                  |\n| **Run**      | Orchestrate resumable build, test, runtime, and `.xcresult` evidence on a local or your own Mac runner.                           |\n| **Generate** | Compile smaller contracts into inspectable App Intents, SwiftUI views, widgets, Live Activities, app shells, metadata, and tests. |\n| **Team**     | Preserve project context, sessions, file claims, repair packets, and handoffs across agents.                                      |\n| **Cloud**    | Run hosted checks and preserve shared proof history when local Apple tooling is unavailable.                                      |\n\n## Generate when it helps\n\nGeneration is optional for existing projects. When a feature is easier to\ndescribe as a smaller contract, Axint can emit ordinary Swift and the companion\nmetadata required by the selected Apple surface.\n\n```typescript\nimport { defineIntent, param } from \"@axint/compiler\";\n\nexport default defineIntent({\n  name: \"CreateCalendarEvent\",\n  title: \"Create Calendar Event\",\n  description: \"Creates a calendar event for the user.\",\n  domain: \"productivity\",\n  params: {\n    title: param.string(\"Event title\"),\n    date: param.date(\"Event date\"),\n    duration: param.duration(\"Event duration\"),\n    location: param.string(\"Location\", { required: false }),\n  },\n  perform: async ({ title, date }) => ({\n    success: true,\n    message: `Created ${title} on ${date}`,\n  }),\n});\n```\n\n```bash\naxint compile create-calendar-event.ts --out ios/Intents/\n```\n\nTypeScript, Python, JSON IR, and the experimental `.axint` authoring surface\nlower into inspectable Apple-native output. The TypeScript pipeline also\nsupports views, widgets, apps, Live Activities, App Enums, UnionValue schemas,\nApp Shortcuts, and extension scaffolds; see the [coverage map](docs/COVERAGE.md)\nfor the implementation and proof boundary of each surface.\n\n## Connect your agent\n\nAxint ships an MCP server for standards-compatible hosts:\n\n```json\n{\n  \"mcpServers\": {\n    \"axint\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"-p\", \"@axint/compiler\", \"axint-mcp\"]\n    }\n  }\n}\n```\n\nStart a fresh tool session, then call `axint.status` and `axint.activate` to\nverify that the server and compiler are connected.\n\nThe hosted endpoint at `https://mcp.axint.ai/mcp` supports both established MCP\nclients and the current stateless protocol generation. Compatibility is\ncontinuously checked with official SDK clients; see the\n[protocol compatibility contract](docs/MCP_2026_COMPATIBILITY.md).\n\nFor orchestrators that delegate durable work between agents, Axint also ships\nan authenticated [A2A server](docs/A2A.md). MCP exposes individual tools; A2A\nexposes complete check, diagnosis, proof, and repair-planning tasks with status,\nstreaming updates, cancellation, and source-free result artifacts.\n\n```bash\nnpx -y -p @axint/compiler axint-a2a --project-root /path/to/MyApp\n```\n\nThe Agent Card is served at `/.well-known/agent-card.json`. Loopback use works\nwithout setup; non-loopback deployments require bearer authentication by\ndefault.\n\n<details>\n<summary><strong>MCP tool and prompt inventory</strong></summary>\n\n### Start, recover, and inspect\n\n`axint.status` · `axint.activate` · `axint.upgrade` · `axint.doctor` ·\n`axint.session.start` · `axint.context.memory` · `axint.context.docs` ·\n`axint.workflow.check`\n\n### Generate and discover\n\n`axint.feature` · `axint.project.pack` · `axint.project.index` ·\n`axint.project.syncVersion` · `axint.suggest` · `axint.registry.search` ·\n`axint.scaffold` · `axint.compile` · `axint.validate` · `axint.tokens.ingest` ·\n`axint.schema.compile` · `axint.templates.list` · `axint.templates.get`\n\n### Check and repair\n\n`axint.xcode.guard` · `axint.xcode.write` · `axint.fix-packet` ·\n`axint.cloud.check` · `axint.repair` · `axint.feedback.create` ·\n`axint.swift.validate` · `axint.swift.fix`\n\n### Coordinate and run\n\n`axint.agent.install` · `axint.agent.advice` · `axint.agent.claim` ·\n`axint.agent.release` · `axint.run` · `axint.run.status` · `axint.run.cancel`\n\n### Built-in prompts\n\n`axint.quick-start` · `axint.project-start` · `axint.context-recovery` ·\n`axint.create-widget` · `axint.create-intent`\n\n</details>\n\n## Public proof\n\n- [Live product metrics](metrics.json) are regenerated from the codebase.\n- The real, CI-gated [brownfield benchmark](benchmarks/brownfield/README.md) publishes labeled precision, recall, and abstention cases.\n- [Coverage](docs/COVERAGE.md) maps supported surfaces to implementation, tests, and proof boundaries.\n- [Apple platform compatibility](docs/APPLE_27_COMPATIBILITY.md) tracks current\n  Xcode, Swift, Siri, App Intents, Foundation Models, SwiftUI, UIKit, and App\n  Store changes against implemented checks and canaries.\n- [Accessibility-label proof](docs/ACCESSIBILITY_LABELS.md) turns common-task\n  accessibility evidence into a reviewable App Store readiness report.\n- [MCP compatibility](docs/MCP_2026_COMPATIBILITY.md) documents the hosted\n  server's dual-era transport contract and verification path.\n- [A2A](docs/A2A.md) documents durable agent-to-agent proof delegation,\n  authentication, task isolation, and the local execution boundary.\n- [Architecture](ARCHITECTURE.md) explains the compiler, proof, MCP, A2A, Python, and runtime boundaries.\n- [Release notes](docs/RELEASE_NOTES.md) record shipped behavior and compatibility changes.\n- [Security](SECURITY.md) documents reporting, supported releases, telemetry, and dependency policy.\n\n## Ecosystem\n\n| Surface                                                     | Use it for                                                                   |\n| ----------------------------------------------------------- | ---------------------------------------------------------------------------- |\n| [npm](https://www.npmjs.com/package/@axint/compiler)        | CLI, TypeScript SDK, compiler, proof runtime, MCP server, and A2A server     |\n| [PyPI](https://pypi.org/project/axint/)                     | Native Python authoring, validation, generation, and its focused MCP surface |\n| [Cloud Preview](https://axint.ai/cloud/preview)             | Explore the remote proof and macOS build workflow from any operating system  |\n| [Registry](https://registry.axint.ai)                       | Discover reusable Apple capability packages                                  |\n| [Examples](https://github.com/agenticempire/axint-examples) | Inspect compact App Intent, SwiftUI, and WidgetKit generation examples       |\n| [Editor integrations](extensions)                           | Connect Xcode, VS Code, Cursor, JetBrains, Neovim, and other hosts           |\n\n## Contribute\n\nThe highest-value contributions improve existing-project precision, Xcode\nevidence, repair quality, Apple API coverage, and reproducible examples.\n\n- Start with a [`good first issue`](https://github.com/agenticempire/axint/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).\n- Pick up a [`help wanted`](https://github.com/agenticempire/axint/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) problem.\n- Read the [contribution guide](CONTRIBUTING.md).\n- Ask, propose, or show your work in [Discussions](https://github.com/agenticempire/axint/discussions).\n\n## Requirements and license\n\nThe JavaScript package follows the Node.js engine declared in\n[`package.json`](package.json). Swift generation runs anywhere Node runs. Xcode\nbuild, test, simulator, and runtime proof require macOS with a compatible Xcode\ntoolchain.\n\nAxint is [Apache-2.0 licensed](LICENSE). Fork it, extend it, and ship with it.\nThe Axint name and visual identity remain protected; see [NOTICE](NOTICE) and\n[TRADEMARKS.md](TRADEMARKS.md).\n",
  "bytes": 13360,
  "sha": "2747ab4e2f80ca8a49b90fdea5a07a57a65786e6c5340514e9f928e422f55dd1",
  "repo_slug": "agenticempire/axint",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_agenticempire_axint_axint_5e211a51/readme"
}