tetherscript

tetherscript

Generated from markdown by tetherscript, with first-class syntax highlighting for the scripts that build and validate agent workflows.

// Capability-scoped automation
fn main() {
    let mut tasks = ["lint", "test"]
    for name in tasks {
        println("running {name}")
    }
    let report = fs_read("report.json")?
    println(json_parse(report)?.status)
    return Ok("ready")
}

Agent Tools Without Node

2026-05-12 - agents, automation, cli

# Agent Tools Without Node Node.js is often used for static site generators, JSON pipelines, and content automation. This example does the

Hello from TetherScript

2026-05-11 - tetherscript, demo, static-site

# Hello from TetherScript This is the first post in a tiny content site generated by a TetherScript program. It reads markdown files, extr

Build Reports as Data

2026-05-13 - reports, json, html

# Build Reports as Data A practical automation script should produce artifacts that other tools can consume. This generator writes HTML, R