Open-Source SDK for AI Knowledge Work

ClioAI has released the kw-sdk, an open-source Software Development Kit designed to bring structure to AI agents performing tasks in knowledge work sectors such as research, analysis, strategy, and writing. Unlike traditional code frameworks, which have natural verification signals through testing, knowledge work requires structured approaches for task verification and evaluation.
This SDK facilitates task execution through an orchestrator that manages subagents, web searches, code execution, and file I/O, followed by a verification step that checks the work against a pre-defined rubric, which remains hidden from the executor. This method simulates a reward function, ideal for reinforcement learning models applied to knowledge tasks.
Key to the framework are the concepts of Task Briefing, Rubric Creation, Execution, Verification, and Submission. The 'Explore mode' is particularly noteworthy; it allows the generation of multiple distinct approaches to a problem, providing insights into the solution space and highlighting gaps or trade-offs.
Another notable feature is Checkpointing, which aids in managing multi-agent systems by allowing you to save logical states during execution for further exploration or re-execution. This is beneficial when needing to rerun or iterate on specific stages of a process after initial tasks like searches have been conducted.
The SDK also supports remote execution environments. You can run commands within contexts such as local environments, Docker containers, or sandboxed browsers, making it versatile for different operational needs. This approach turns code execution into a protocol, giving flexibility in integration.
For installation, it is recommended to use Python and install directly from the GitHub repository: pip install git+https://github.com/ClioAI/kw-sdk.git. You can also add it to your pyproject.toml for development dependencies. An .env file is recommended for API keys like Gemini, OpenAI, and Anthropic.
📖 Read the full source: HN AI Agents
👀 See Also

Coding-Flashcards: 800+ Anki cards for Rust, SQLite, Godot, and Wolfram Language
Over 800 markdown flashcards covering Rust, SQLite, Godot, and Wolfram Language from first principles, with scripts to convert to Anki decks or PDFs.

ClawCode: Migrate OpenClaw Agents to Claude Code as a Plugin
ClawCode is a Node.js plugin for Claude Code that imports OpenClaw agents, including IDENTITY, SOUL, memory, skills, and crons from ~/.openclaw/workspace/. It provides SQLite+FTS5 searchable memory, messaging plugins for WhatsApp, Telegram, Discord, iMessage, and Slack, and a nightly 'dream' process for memory consolidation.

Heren Godot MCP: Persistent WebSocket Daemon Cuts AI–Godot Interaction Latency to ~20ms
Heren is a new MCP server for Godot that keeps a lightweight WebSocket daemon alive, achieving ~20ms operations instead of waiting for full engine cold starts. It provides 15 tools for scene management, debugging, GPU‑accelerated screenshots, and automatic shutdown after 3 minutes of inactivity.

Agent frameworks waste 350,000+ tokens per session resending static files
A benchmark on a local Qwen 3.5 122B setup revealed agent frameworks waste over 350,000 tokens per session by resending static files. A compile-time approach reduced query context from 1,373 tokens to 73, achieving a 95% reduction.