One command from idea to front page.
Write your intent in TypeScript or Python, add an axint.json, run axint publish. The package is hash-verified, compiler-stamped, and indexed — live URL in your clipboard.
It really is this simple.
- 01
Scaffold
$ axint init my-intentCreates axint.json, an intent file, and a README. Zero decisions.
- 02
Write
$ edit intents/create-event.tsDescribe the intent in strongly-typed TS or Python. Axint compiles it to native Swift.
- 03
Publish
$ axint publishYour template is validated, indexed, and live on the Registry. Share the URL.
{
"$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"]
}Shipping to the Registry is safe by default.
Hash-verified bundles
Every package carries SHA256-backed metadata and compiler version info. The install flow verifies package payloads before unpacking.
Namespace-first-claim
Your GitHub handle is your namespace. First claimer wins, nobody can impersonate you.
Built on open source
Built on Axint, the open-source compiler. View the source, file issues, and contribute on GitHub.
Ready to ship?
Install the CLI, run axint init, and you're 60 seconds from your first published template.