proomt

Search

Search posts, papers, and topics

All posts

Lobsters

Quarkdown: Turing-complete Markdown typesetting system

Related reading

  1. Serving Markdown for AI Agents, Now as a Jekyll Plugin

    The author turned a one‑off script that rendered each Jekyll page to Markdown and added a `<link rel="alternate" type="text/markdown">` tag into a reusable Jekyll plugin (jekyll‑md). The gem hooks into the build, extracts the main content (defaulting to `<main>` or `[role="main"]`), converts it to Markdown, injects the discovery link, and requires no per‑page front‑matter. Configuration is option…

    Daniel Doubrovkine (dB.)dblock.org2 min
  2. Markdown in /src

    The essay argues that Markdown should be treated as source code and checked into a /src/md directory alongside the implementation it describes. Keeping intent in diffable, reviewable Markdown lets teams generate code and tests from it while preserving locality for both humans and AI agents.

    Lobstershtmx.org6 minlobste.rs10
  3. Build a Typed Context Compaction Gate for AI Agents

    A step‑by‑step tutorial showing how to build a typed context‑compaction gate for AI agents in TypeScript using LangChain and Zod. It defines a discriminated‑union schema for keep/summarize/discard actions, implements a fast gpt‑4o‑mini classifier, validates decisions at runtime, and wires the gate as middleware in an agent loop, with testing and production‑grade tuning advice.

    SitePointsitepoint.com16 min
  4. The 6 best AI writing generators in 2026

    Zapier’s blog post reviews six AI‑writing generators (Jasper, Anyword, Writer, Writesonic, Rytr, Sudowrite), explains how they work on top of LLMs, and outlines the author’s evaluation criteria (dedicated writing focus, control over output, ease of use, price, anti‑spam stance). The write‑up is a high‑level overview with no code, benchmarks, or deep technical analysis.

    Zapier Engineeringzapier.com19 min
  5. Eliminating AI Code Hallucinations with TypeScript Compiler Diagnostics and TDD Loops

    The article shows how to replace raw TypeScript compiler output with a programmatic JSON feedback loop that merges diagnostics and Vitest test failures, feeding the structured data back to an LLM coding agent for self‑correction. It provides concrete code for extracting, enriching, validating, and de‑duplicating errors, and demonstrates token savings and deterministic iteration until compilation…

    SitePointsitepoint.com15 min