Skip to main content

Natural Language Source Compiler - Compile .nl specs to executable code

Project description

Natural Language Source (NLS)

Tests CI Python License Docs

The source code is English. The compiled artifact is Python.

NLS is a programming language where specifications are written in plain English that anyone can read—managers, auditors, domain experts—not just programmers. The nlsc compiler translates .nl files into executable Python with full type hints, validation, and documentation.

Installation

# Basic install
pip install -e .

# With tree-sitter parser (faster, better error recovery)
pip install -e ".[treesitter]"

# With development tools
pip install -e ".[dev]"

Quick Start

# Initialize a new project
nlsc init my-project
cd my-project

# Create your first .nl file
cat > src/calculator.nl << 'EOF'
@module calculator
@target python

[add]
PURPOSE: Add two numbers together
INPUTS:
  - a: number
  - b: number
RETURNS: a + b

[divide]
PURPOSE: Divide two numbers safely
INPUTS:
  - numerator: number
  - divisor: number
GUARDS:
  - divisor must not be zero -> ValueError("Cannot divide by zero")
RETURNS: numerator / divisor

@test [add] {
  add(2, 3) == 5
  add(-1, 1) == 0
}
EOF

# Compile to Python
nlsc compile src/calculator.nl

# Run the tests
nlsc test src/calculator.nl

Example

Input: math.nl

@module math
@version 1.0.0
@target python

@type Point {
  x: number
  y: number
}

[distance]
PURPOSE: Calculate distance between two points
INPUTS:
  - p1: Point
  - p2: Point
LOGIC:
  1. dx = p2.x - p1.x
  2. dy = p2.y - p1.y
  3. squared = dx * dx + dy * dy
RETURNS: sqrt(squared)
DEPENDS: [sqrt]

@test [distance] {
  distance(Point(0, 0), Point(3, 4)) == 5.0
}

Output: math.py

"""math module - Generated by nlsc"""
from dataclasses import dataclass
from math import sqrt

@dataclass
class Point:
    """Point type"""
    x: float
    y: float

def distance(p1: Point, p2: Point) -> float:
    """Calculate distance between two points"""
    dx = p2.x - p1.x
    dy = p2.y - p1.y
    squared = dx * dx + dy * dy
    return sqrt(squared)

CLI Reference

Command Description
nlsc init <path> Initialize new NLS project
nlsc compile <file> Compile .nl to Python
nlsc verify <file> Validate syntax and dependencies
nlsc test <file> Run @test specifications
nlsc graph <file> Generate dependency diagrams
nlsc diff <file> Show changes since last compile
nlsc watch <dir> Continuous compilation on file changes
nlsc atomize <file.py> Extract ANLUs from existing Python

Global Options

--parser {regex,treesitter}  # Parser backend (default: regex)
--version                     # Show version
--help                        # Show help

Examples

# Compile with tree-sitter parser
nlsc --parser treesitter compile src/auth.nl

# Generate Mermaid dependency diagram
nlsc graph src/order.nl --format mermaid

# Visualize dataflow for specific function
nlsc graph src/order.nl --anlu process-order --dataflow

# Watch directory and run tests on changes
nlsc watch src/ --test

# Show what changed since last compile
nlsc diff src/api.nl --full

GitHub Action

Use the NLS Compiler Action in your CI/CD pipelines for zero-config validation:

# .github/workflows/nls.yml
name: NLS Validation

on: [push, pull_request]

jobs:
  validate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: Mnehmos/mnehmos.nls.lang/action@master
        with:
          verify: 'true'       # Verify all .nl files parse correctly
          compile: 'false'     # Compile .nl files to Python
          test: 'false'        # Run @test blocks
          lock-check: 'false'  # Verify lockfiles are current
          path: '.'            # Path to search for .nl files

Action Inputs

Input Default Description
verify true Verify all .nl files parse correctly
compile false Compile .nl files to target language
test false Run @test blocks from .nl files
lock-check false Check that lockfiles are up to date
path . Path to search for .nl files
python-version 3.12 Python version to use
fail-on-warning false Fail the action if there are warnings

Action Outputs

Output Description
verified-files Number of verified .nl files
compiled-files List of compiled output files
test-results Test pass/fail summary
warnings Number of warnings

Language Features

ANLU Blocks (Functions)

[function-name]
PURPOSE: What this function does
INPUTS:
  - param1: type
  - param2: type, optional
GUARDS:
  - validation condition -> ErrorType("message")
LOGIC:
  1. step description -> variable
  2. another step
EDGE CASES:
  - condition -> behavior
RETURNS: expression
DEPENDS: [other-function], [another]

Type Definitions

@type Order {
  id: string, required
  items: list of OrderItem
  total: number, "Order total in cents"
  status: string
}

@type OrderItem extends BaseItem {
  quantity: number
  price: number
}

Test Specifications

@test [add] {
  add(1, 2) == 3
  add(0, 0) == 0
  add(-5, 5) == 0
}

Directives

@module name           # Module name
@version 1.0.0         # Semantic version
@target python         # Target language
@imports other_module  # Import dependencies

The Philosophy

"The conversation is the programming. The .nl file is the receipt. The code is the artifact."

  • .nl files — Human-readable specifications anyone can review
  • .py files — Compiled artifacts (like assembly from C)
  • .nl.lock files — Deterministic hashes for reproducible builds

Why NLS?

  1. Readable by everyone — Non-programmers can review business logic
  2. Auditable — Clear mapping from intent to implementation
  3. Testable — Specifications include test cases
  4. Versionable — Lock files ensure reproducibility
  5. Toolable — Tree-sitter grammar enables IDE support

Project Status

Component Status
Parser (regex) ✅ Complete
Parser (tree-sitter) ✅ Complete
Python emitter ✅ Complete
Type generation ✅ Complete
Guard validation ✅ Complete
Dataflow analysis ✅ Complete
Test runner ✅ Complete
Watch mode ✅ Complete
GitHub Action ✅ Complete
VS Code extension 🔜 Planned
TypeScript target 🔜 Planned
LSP server 🔜 Planned

228 tests passing — Production-ready for Python target. See GitHub Issues for roadmap.

Documentation

📚 Full Documentation — Hosted on GitHub Pages

Contributing

# Clone and install
git clone https://github.com/Mnehmos/mnehmos.nls.lang.git
cd mnehmos.nls.lang
pip install -e ".[dev,treesitter]"

# Run tests
pytest tests/ -v

# Run tree-sitter grammar tests
cd tree-sitter-nl && npx tree-sitter test

License

MIT

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

nlsc-0.1.0.tar.gz (73.2 kB view details)

Uploaded Source

Built Distribution

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

nlsc-0.1.0-py3-none-any.whl (50.6 kB view details)

Uploaded Python 3

File details

Details for the file nlsc-0.1.0.tar.gz.

File metadata

  • Download URL: nlsc-0.1.0.tar.gz
  • Upload date:
  • Size: 73.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for nlsc-0.1.0.tar.gz
Algorithm Hash digest
SHA256 03d52f34631da562c2adbf46a28352ad9c112cdd305f1e347dc110edc5edc00f
MD5 97f002f1f6445c0092986312dae155b6
BLAKE2b-256 8aa93ad3da124b2730d62d8e437a8f224f4dc898906c96b172a7d8ba8c1febad

See more details on using hashes here.

File details

Details for the file nlsc-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: nlsc-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 50.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for nlsc-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3cd4c987b27a90cc2f9156735cf5053b84310d3b878d2b5753d26aa7c4c5e10d
MD5 536d2b22bc3806ea8b528d1462abd38f
BLAKE2b-256 e45d4f7798eaea9e4918447cf05bfac080e7e2a63cbdbbf133ae72161ca4b2a5

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