klotz: coding*

0 bookmark(s) - Sort by: Date ↓ / Title / - Bookmarks from other users for this tag

  1. MindMux presents brain.md, an open-source toolkit that provides a persistent memory layer for coding agents by storing project knowledge as plain Markdown files within a repository. This system ensures that critical decisions and constraints are durable across different LLM sessions and machines via version control. A zero-dependency CLI manages the reading and writing of these files to maintain data integrity through an append-only timeline.

    - Uses Markdown instead of databases like SQLite to facilitate easier diffing in git history.
    - Features a "correct by construction" design that prevents malformed edits by making the CLI the exclusive writer.
    - Supports integration with several agents including Claude Code, Codex, Cursor, and Pi.
  2. Anurag Singh writes that Cursor’s strength is its capacity for deep project understanding through efficient context management rather than simple model speed. Instead of pushing a whole repository into an LLM's window, the IDE employs search tools to provide only relevant code segments as tasks arise. This curated approach ensures models receive high-quality information and instructions tailored to their specific capabilities, allowing them to maintain existing architectural patterns more effectively.

    * The tool uses Instant Grep via a local text index instead of scanning every file from scratch.
    * Cursor is significantly more effective in complex or large projects where it can identify and reuse established implementations.
    * Its search ability helps prevent the common problem of generating redundant helper functions that already exist within the codebase.
  3. The author explains how enabling the built-in sandbox feature in Claude Code has transformed their productivity by allowing for an autonomous workflow. By activating auto-allow mode via the /sandbox command, users can permit AI agents to execute repetitive tasks like running tests or installing dependencies without needing constant manual approval for every individual command, which reduces mental overhead and time spent waiting on prompts.


    - Claude Code provides a built-in sandbox that uses macOS Seatbelt on Mac and Bubblewrap on Linux/WSL2.
    - The environment restricts file writing primarily to the current project directory and temporary session files.
    - Network access is controlled, requiring manual approval when the agent attempts to connect to a new domain.
    - For maximum security and complete isolation from a system, using Docker containers or virtual machines remains more robust than the built-in sandbox features.
  4. A distillation of the Claude Fable 5 workflow into actionable skills designed to guide AI agents through a systematic think, act, and prove methodology. The framework improves agentic reliability by enforcing specific sequences like classifying tasks, gathering parallel evidence from primary sources, making surgical edits rather than broad changes, and undergoing adversarial verification via an automated judge. It includes specialized domain adapters for sectors such as coding, research, marketing, and DevOps to tailor the reasoning process to specific professional requirements. The method is specifically designed to mitigate common LLM failures like reward hacking, silent code errors in tests, and false claims of task completion.


    >"Before Fable 5 was deprecated, it wrote down its own problem-solving method. Step by step. How it classifies a task, defines "done," gathers evidence, commits to one recommendation, makes the smallest correct change, verifies by observation, and reports the outcome honestly."

    - Core skills: fable-method (thinking), fable-loop (orchestration), fable-judge (verification), and fable-domain (adapter generation)
    - Focuses on preventing unauthorized staging or "reward hacking" through strict observation cycles
    - Validated against 260+ agent runs using blind LLM judges to verify results via code execution rather than reports
    2026-07-15 Tags: , , , , , , by klotz
  5. Simon Willison reviews Ornith-1.0, a new series of open-weights models from DeepReinforce designed for agentic coding. Built on Gemma 4 and Qwen 3.5, these models range from 9B to 397B parameters and demonstrate high proficiency in coding benchmarks and tool-use tasks.
    - Available in 9B Dense, 31B Dense, 35B MoE, and 397B MoE variants
    - Capable of navigating codebases and executing complex tool calls
    - Built on Apache 2.0 licensed base models
  6. From installing Ollama to launching OpenCode with a local model, step by step.

    This guide explains how to build a fully local AI coding agent by integrating Ollama, Google's Gemma 4, and OpenCode to ensure data privacy, cost control, and local experimentation. The workflow involves installing Ollama to serve the edge-optimized `gemma4:e4b` model, setting up OpenCode as the agent runtime via npm, and linking them through a local API configuration with a 128K context window. This setup provides a capable, offline development assistant that handles code generation, repository analysis, and file operations without transmitting any data to the cloud.

    * **Core Stack:** Uses Ollama for model serving, Gemma 4 (`gemma4:e4b`) as the local LLM, and OpenCode as an open-source agent interface.
    * **Setup Steps:** Install Ollama, pull the Gemma 4 model, install OpenCode via `npm install -g opencode-ai`, and connect them by creating a Modelfile for the context window and configuring `opencode.json`.
    * **Capabilities:** The local agent supports 128K context, enables coding tasks and workspace automation, and operates entirely offline for maximum security.
    2026-06-27 Tags: , , by klotz
  7. This article explores the concept of harness engineering, arguing that a functional AI agent is defined not just by its underlying model, but by the scaffolding built around it—including prompts, tools, sandboxes, and feedback loops. The author suggests shifting focus from picking the smartest model to designing robust systems that turn raw models into reliable agents. By treating mistakes as signals for new constraints rather than simple failures, engineers can create a ratchet effect that continuously improves agent performance through better configuration.

    Main topics:
    - Defining an agent as the combination of a model and its harness
    - Reframing model errors as configuration or skill issues
    - Using failure history to implement permanent rules via hooks and documentation
    - Core primitives including filesystems, bash execution, sandboxes, and memory management
    - Managing context rot through compaction and tool offloading
    - Achieving long-horizon work through planning, verification, and agent splits
  8. A zero-dependency Python CLI tool designed to provide AI coding agents with persistent session memory. It solves the problem of context window degradation and the "lost in the middle" phenomenon by allowing agents to perform efficient, read-only recalls from local SQLite session stores. Instead of burning thousands of tokens on project exploration or re-orientation, auto-memory enables targeted retrieval of recent files and task history using minimal token overhead.
    Key features and technical details:
    - Zero dependencies using only Python standard libraries.
    - Read-only access to Copilot CLI's local SQLite database to ensure safety.
    - Progressive disclosure mechanism ranging from cheap scans (~50 tokens) to full session details.
    - Schema-aware design with built-in validation for tool updates.
    - Compatible with GitHub Copilot CLI, Claude Code, Cursor, and other instruction-file supporting agents.
  9. An exploration of the new Qwen3.6-27B open weight model, which claims flagship-level agentic coding performance that surpasses previous larger MoE models while being significantly smaller in size. The author tests a quantized version using llama-server and demonstrates its impressive ability to generate complex SVG graphics locally.
    Key points:
    - Qwen3.6-27B outperforms the older Qwen3.5-397B-A17B on coding benchmarks.
    - Dramatic reduction in model size from 807GB to approximately 55.6GB for the base version.
    - Successful local execution using a 16.8GB quantized GGUF version via llama.cpp.
    - High-quality SVG generation capabilities for complex prompts like a pelican riding a bicycle.
  10. As AI agents evolve from writing simple code snippets to building entire systems, the traditional focus on learning programming syntax like Python or Java is becoming less critical. The author argues that we are shifting from an era of manual coding—described as digital bricklaying—to an era of intent architecture, where the primary skill is knowing what to build and how to direct AI to do it. To prepare for this future, focus should shift toward high-level logic, critical discernment, and creative synthesis rather than memorizing syntax.
    Key points:
    * Transition from syntax-based coding to intent-based architecture.
    * The importance of iterative logic in refining AI outputs.
    * Developing a "BS detector" through domain knowledge to spot AI hallucinations.
    * Using creative synthesis to combine human ideas that LLMs cannot independently connect.
    * Moving from being a technical executor to a supervisor or manager of AI agents.

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: Tags: coding

About - Propulsed by SemanticScuttle