Two Worlds of Interaction: Collaborative Agents vs Autonomous Agents
5 minFrom 'consciousness emergence' to 'field establishment' — analyzing the design philosophy and development direction of collaborative and autonomous Agent paradigms.
Engineering Practices for Coding Agents: Lessons from OpenAI and Anthropic
4 minCore experiences distilled from OpenAI Codex and Anthropic Claude for building long-running, reliable Agent Harness systems.
Anthropic Hackathon Champion: Claude Code Configuration Guide
5 minCore patterns from the hackathon champion's Claude Code config collection — cross-session shared memory, continuous learning, checkpoint evaluation, code maps, and sub-agent orchestration.
Designing Browser Use for Your Agent
3 minFrom CUA and DOM CUA to Playwright — core implementation approaches for Agent-controlled browsers, comparing Codex, Open-Browser-Use, and ActSpace architectures.
Design Philosophy of the ActSpace Evaluation Module
3 minRelying on intuition and experience can get you started, but to go further, we need a rationale for optimization — the design practice of an Agent evaluation module.
Making Agents Proactive: Scheduled Tasks and KAIROS Mode
3 minFrom scheduled tasks to ClaudeCode's KAIROS mode — exploring designs that transform Agents from interactive to always-on background runners using Sleep tools and tick-driven events.
Agent Bash Tool Engineering: Background Execution and Sandbox Design
2 minFrom background mounting and incremental reading to macOS sandbox-exec three-layer sandbox — the two critical components for taking Agent Bash tools from demo to production.
Demystifying AI Agent Evaluation: Methods for Different Agent Types
5 minFrom coding Agents to conversational Agents, research Agents to computer-use Agents — evaluation methods, perspectives, and pass@k / pass^k metrics.
Tool Dispatch and Permission Module Development
2 minDesigning Agent tool execution dispatch — 7 state machine states, 4 permission modes, configuration file rule systems, and allowList mechanisms. Referencing ClaudeCode, Gemini-cli, OpenCode, and Kode.
Multi-Agent Collaboration: Agent Team and Agent Room
4 minExploring two core multi-agent collaboration patterns — Agent Team (temporary team tackling) and Agent Room (equal discussion), plus task scheduling and member design.
Bash Tool Implementation and Security Permission Design
4 minComplete Agent Bash tool implementation — tool definition, Generator execution pattern, return value design, 24 static security check rules, and three-layer permission verification.
Agent File System Search: Grep and Glob Tools
2 minGlob and Grep tool fallback strategies — glob package vs ripgrep, four Grep implementation priorities, ripgrep auto-download mechanism, and AbortController-based timeout control.
Studying Pi's LLM Module Design
4 minDeep analysis of Pi coding Agent's LLM module design: multi-provider adaptation, internal universal message format, EventStream, and Agent execution chains.
Agent System Building Strategy: Single-Agent vs Multi-Agent
5 minAnalyzing single-agent and multi-agent pros and cons from architecture design, context management, and tool interaction perspectives, proposing a progressive building strategy.
Context Compression Dispatch: Tool Output Trimming and History Compression
2 minPre-compression strategies — tool output trimming (max content limits, layered reading, LLM summarization, progressive reading) and fallback — session history compression.
Context Compression Prompts: ClaudeCode and Gemini Compression Strategies
4 minDeep analysis of ClaudeCode's 8-section compression algorithm and Gemini-cli's 5-point scratchpad approach, plus tool message trimming and middle/oldest strategy selection.
Agent Evaluation: Methods and Frameworks
4 minWhy Agent evaluation matters so much — the four components, complete workflow, and three scoring methods (code-based, human, model-based) explained in practice.
Integrating a Skill System into Your Agent
7 minCore steps for adding Skill support to your Agent — discovery, parsing, usage, management, and the practice of progressive disclosure strategy.