Skip to content

publish · under 60 seconds

One commandfrom idea to front page.

Write the capability in TypeScript or Python, add an axint.json, run axint publish. The package is hash-verified, compiler-stamped, indexed — live URL in your clipboard.

three steps

Scaffold. Write.Publish.

  1. 01

    Scaffold

    $ axint init my-intent

    Creates axint.json, a starter intent file, and a README. Zero decisions to make first.

  2. 02

    Write

    $ edit intents/create-event.ts

    Describe the capability in strongly-typed TypeScript or Python. axint compiles it to native Swift.

  3. 03

    Publish

    $ axint publish

    Validated, indexed, and live. The install URL goes straight to your clipboard.

axint.jsondefinition
{
  "$schema": "https://docs.axint.ai/schema/axint.json",
  "namespace": "@nimatime",
  "slug": "create-event",
  "version": "1.0.0",
  "name": "Create Event",
  "description": "Creates a calendar event from natural language",
  "primary_language": "typescript",
  "entry": "intents/create-event.ts",
  "license": "Apache-2.0",
  "tags": ["calendar", "productivity"],
  "surface_areas": ["Calendar"]
}
~ / my-intentterminal
$ axint publish
Compiling intent → Swift…
Validated IR (type-check)
Ran SPM sandbox build
Built bundle (2.1 KB compressed)
Signed with SHA-256 manifest
Uploaded to registry.axint.ai
 
Published @nimatime/create-event@1.0.0
registry.axint.ai/nimatime/create-event

safe by default

Shipping a packageis not a leap of faith.

Hash-verified bundles

Every package carries a SHA-256 manifest and the compiler version that produced it. The install path verifies payloads before unpacking.

Namespace-first claim

Your GitHub handle is your namespace. First claimer wins, nobody can impersonate you.

Built on open source

The compiler is open source on GitHub. View the source, file issues, contribute upstream.

ready to ship

60 seconds fromempty repo to live package.

Install the CLI, run axint init, publish.