Skip to main content

Deterministic business application platform optimized for AI-assisted development

Project description

AILang

AI-first programming language — deterministic, specification-driven, and compiler-friendly.

Tests Python Version License

AILang is an AI-first programming language designed to be deterministic, specification-first, and easy for both humans and AI systems to reason about. It features a complete compiler pipeline, a 16-module standard library, and has been validated through 1079 tests, stress testing up to 10,000 LOC, and AI-generated program verification with 100% first-pass success.

Quick Start

# Install from PyPI
pip install ailang-lang

# Create a new project
ail new demo
cd demo

# Run it
ail run main.ail

Or install from source:

git clone https://github.com/akpersonal4/ailang-lang-AILang.git
cd ailang-lang-AILang
pip install -e .

# Create and run a project
ail new demo
cd demo
ail run main.ail

Core Commands

ail run <file.ail>       # Run a program
ail fmt <file.ail>       # Format code (one style, no config)
ail fmt --check <file>   # Check if formatted
ail doctor               # Diagnose environment issues
ail context --json       # Get machine-readable language context
ail docs <NAME>          # Read documentation (AGENTS, LANGUAGE_SPEC, STDLIB_REFERENCE)
ail test <file_or_dir>   # Run tests
ail mcp                  # Start MCP server for AI tool integration

Running Tests

# Run all tests in current directory
ail test

# Run tests for a specific application
ail test --root apps/inventory

# Run tests from application directory
cd apps/inventory
ail test

# Run a specific test file
ail test apps/inventory/tests/test_supplier.ail

# Run tests with verbose output
ail test --verbose

# Skip pre-flight ordering check
ail test --no-check

Supported test patterns:

  • test_*.ail
  • *_test.ail

Excluded directories:

  • .ail/ (internal backups)
  • backups/
  • __pycache__/
  • dist/
  • build/
  • .git/
  • node_modules/
  • .venv/

AI Agent Setup

For AI-assisted development, run this first:

# Get machine-readable language context
ail context --json

# Read the documentation
ail docs AGENTS
ail docs LANGUAGE_SPEC

Document hierarchy:

  1. LANGUAGE_SPEC.md — canonical language definition (authoritative)
  2. AGENTS.md — AI operational rules (derived from spec)
  3. AILANG_DEVELOPMENT_PLAYBOOK.md — coding patterns and conventions
  4. STDLIB_REFERENCE.md — library API documentation

If AGENTS.md conflicts with LANGUAGE_SPEC.md, the spec wins.

Language Tour

import string;
import math;
import list;

// Functions are top-level, recursion only (no loops)
fn factorial(n) {
    if (n <= 1) {
        return 1
    }
    return math.mul(n, factorial(math.sub(n, 1)))
}

// Import aliases
import map as m;

fn main() {
    // Variables with let
    let greeting = "Hello, AILang!";
    print(greeting);

    // Map operations
    let config = map.new();
    map.set(config, "version", "1.0");
    let v = map.get(config, "version");

    // Recursion
    let result = factorial(5);
    print(result);

    return 0
}

Documentation

Guide Description
Getting Started Step-by-step introduction
Language Tour Complete language feature tour
Standard Library Reference All 16 modules documented
MCP Quick Start AI tool integration via MCP
Compiler Architecture Pipeline and design
Contributor Guide How to contribute
Testing Guide Test patterns and practices
Quick Start 5-minute setup guide
Quick Start (concise) Minimal path: install → write → run
Onboarding Checklist Day-by-day guide for new developers
VS Code Extension AILang VS Code extension

VS Code Extension

Install the AILang extension for syntax highlighting, snippets, bracket matching, and more:

code --install-extension extensions/vscode-ailang

Or package and install from the VS Code Marketplace: extensions/vscode-ailang/.

Features

  • Simple, explicit syntax — functions, variables, conditionals, recursion
  • Deterministic compilation — same source always produces same output
  • 16-module Standard Library — string, math, collections, file I/O, JSON, CSV, time, random, environment, conversion
  • AI-native toolingail mcp exposes compiler to AI tools via Model Context Protocol
  • AI-friendly — validated with 23 AI-generated programs at 100% first-pass success
  • Fast compile times — 5000 LOC compiles in <2 seconds
  • Low memory usage — 5000 LOC uses <11 MB peak memory
  • Complete test coverage — 1079 tests across all compiler stages

Example

import string;
import math;
import list;

fn process(items) {
    let first = list.get(items, 0);
    return string.uppercase(first)
}

fn main() {
    let items = list.new();
    list.append(items, "hello");
    list.append(items, "world");
    let r = process(items);
    let s = math.add(1, 2);
    print(r, s);
    return 0
}

Standard Library

Module Operations
string concat, equals, uppercase, lowercase, length, contains, starts_with, ends_with, trim, substring, find, find_from, split, join, from_int, from_bool
math add, sub, mul, div, abs, min, max
list new, append, len, get, contains, remove, clear, sum, find_by_key, filter_by_key, filter_by_contains, collect_key, group_by_key, sum_by_key, take, skip, search_by_name, exists_by_key, sort, sort_by_key, copy
array new, push, len, get, contains, remove, clear
map new, set, get, has, delete, keys, clear, values, get_or_default, safe_get
set new, add, contains, len, remove, clear
file exists, read, write, append, remove, listdir
path join, basename, dirname, extension, normalize
json parse, stringify
csv parse, parse_header, stringify
time now, timestamp, sleep, format
random int, float, choice
environment get, cwd, args
convert to_string, to_int, to_bool, to_number
io write, writeln, println, read
system exit

Project Status

Metric Value
Python version 3.11+
Compiler LOC ~3,950 (39 Python files)
Stdlib modules 16
Tests 1079 passing
Example programs 55+
Application programs 43+
DX Tools ail context, ail doctor, ail static_analyzer, ail benchmark, ail testgen, ail docs, ail mcp
Quality gates black, ruff, mypy all clean
Validation Deterministic, AI-verified, stress-tested

Formatter

AILang includes a deterministic source code formatter. One style only — no configuration.

# Format a file in-place
ail fmt hello.ail

# Check if a file is formatted (exit 0 = yes, 1 = no)
ail fmt --check hello.ail

# Read from stdin, write formatted to stdout
cat hello.ail | ail fmt --stdin

Formatting rules:

  • 4-space indentation
  • Opening brace on same line (fn foo() {, if (cond) {)
  • } else { on one line
  • Spaces around all binary operators (a + b, x == y, a && b)
  • Space after , in parameter/argument lists
  • Single blank line between function declarations
  • Trailing whitespace removed
  • Newline at EOF
  • Comments preserved — inline and standalone comments are retained

Formatting is idempotent: formatting an already-formatted file produces no changes.

Development

# Install development tools
pip install pytest black ruff mypy

# Run all quality gates
python -m pytest
black --check .
ruff check .
mypy

License

This project is licensed under the Apache License 2.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ailang_lang-1.1.2.tar.gz (332.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ailang_lang-1.1.2-py3-none-any.whl (259.5 kB view details)

Uploaded Python 3

File details

Details for the file ailang_lang-1.1.2.tar.gz.

File metadata

  • Download URL: ailang_lang-1.1.2.tar.gz
  • Upload date:
  • Size: 332.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for ailang_lang-1.1.2.tar.gz
Algorithm Hash digest
SHA256 97bf04cffd3fb74b1d70fb348df5910e7eb88557e0a041fc105a2a53631221ef
MD5 ff77fdfff4c2bfdf378584949e7c716b
BLAKE2b-256 09b3833cda19615d21aa884127ddf98a7fdf0b193ddd9d5b03be7addc073a007

See more details on using hashes here.

File details

Details for the file ailang_lang-1.1.2-py3-none-any.whl.

File metadata

  • Download URL: ailang_lang-1.1.2-py3-none-any.whl
  • Upload date:
  • Size: 259.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for ailang_lang-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c787ee23991f1560498281773475a43ad4d804911fdc4336bbd5f9d6d9c70b5b
MD5 acf1268879eb2f7ba13cb40286f2884a
BLAKE2b-256 a5fd3ecc3d270448ad4c51d445b0a57f8ec7f196d108ca8397db5eccf218b1b6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page