Tech News
← Home  ·  All topics

Markdown

7 GoKawiil briefs on this topic

Carson Gross argues Markdown files are becoming software's true source code

In an essay, Montana State University professor and consultant Carson Gross describes a shift he has observed in client organizations adopting agentic coding: Markdown documents are increasingly the source of truth for systems, with LLM-generated code treated as a derived, low-level artifact. He cites Hartley Brody's earlier essay 'Markdown is the new source code' to support the observation, and argues that Markdown specs should be checked into /src alongside the code and tests they generate, rather than living only in transient prompt sessions.

OKF Agent Memory brings Git-native persistent storage to AI coding agents

A new open-source project called OKF Agent Memory gives AI coding agents a standardized way to retain project knowledge across sessions, storing it as plain Markdown files with YAML frontmatter directly inside a repository's knowledge/ folder. Built on the Open Knowledge Format v0.2, it combines a spec, behavioral conventions, an agent skill layer, and a Go-based CLI/library for parsing, validation and search.

LWN Raises Subscription Prices by 20% to Match Inflation Since 2022

LWN, the Linux and open-source news site that has run on a reader-subscription model since 2002, announced its first price increase since early 2022. The new monthly rates rise by about 20%, mirroring US consumer-price inflation over that period, moving to $6, $11, $19 and $55 across its four subscriber tiers. Existing prepaid subscriptions remain valid until they expire, and current monthly subscribers keep the old rate for six more months.

Emacs 31 ships experimental markdown-ts-mode built on tree-sitter

The newly released Emacs 31 includes a tree-sitter-based mode for editing Markdown files, called markdown-ts-mode, though it is not enabled by default and is labeled experimental. Despite that label, the mode already supports the full CommonMark spec and most of GitHub Flavored Markdown, plus extras like code block editing, table-of-contents tools, and integration with converters such as pandoc. Users must manually load the library, for example via use-package or autoload, since Emacs won't switch to it automatically when opening .md files.

Sites Can Serve Lean Markdown Versions to AI Agents via Accept Headers

A proposed technique lets websites detect AI agents through HTTP Accept headers and respond with stripped-down Markdown instead of full HTML pages. This version omits navigation bars, stylesheets, scripts, and layout elements, leaving only the core textual content for automated systems to process.

Obsidian founder-adjacent writer warns against filling notes with AI-generated summaries

A writer reflecting on using AI with Obsidian argues that while the app's open Markdown format makes it easy to hook up AI agents, flooding a personal vault with AI-generated summaries is a mistake. He recommends using the Obsidian CLI for faster agent-based search and file access, but cautions against letting generated text blend in with one's own notes.

New macOS app Ambient Context logs on-screen text to daily Markdown files for LLMs

Ambient Context is a macOS menu bar utility that periodically reads the text of your active window through the accessibility API and appends it to a local, per-day markdown file. It's designed so tools like Claude Code or other agents can read that folder later to answer questions about your work history or draft summaries such as standups.