All Skills
174 skills across 18 categories
Agent Adaptive Retry Logic
Strategies for AI agents to handle tool call failures, API errors, and transient faults using adaptive retry patterns including exponential backoff, circuit breakers, and graceful degradation to maintain task progress without wasting context budget on infinite retry loops.
Agent Circuit Breaker Pattern
Master the circuit breaker design pattern for AI agents: how to detect cascading failures, open/close the breaker based on failure thresholds, and implement half-open state to test service recovery.
Agent Circuit Breaker Recovery Strategies
Advanced recovery strategies for circuit breaker patterns in AI agent systems. Covers exponential backoff in open state, probe request strategies in half-open state, partial traffic routing, fallback response caching, and metrics-driven threshold tuning for production agent pipelines.
Agent Circuit Breaker State Machine
Understand and implement the three-state circuit breaker pattern (open, half-open, closed) for AI agent pipelines. Learn how state transitions are triggered by failure thresholds and consecutive-success requirements, enabling automatic recovery from service degradation without manual intervention.
Agent Context Budget Management
Strategies for managing token context budgets in multi-step AI agent pipelines — preventing overflow, summarizing aggressively, and structuring subagent delegation for optimal performance.
Agent Context Budget Patterns
Practical patterns for enforcing O(1) context pipelines in multi-agent systems: proactive pruning, subagent output contracts, and session budget management to prevent reasoning degradation in long-running autonomous tasks.
Agent Context Compression Techniques
Advanced techniques for compressing and managing AI agent context windows to enable long-running tasks without losing coherence.
Agent Context Compression: Implementation Patterns
Concrete implementation patterns for compressing AI agent context windows in production systems. Covers rolling summarization, structured state management, hierarchical delegation, and semantic deduplication strategies that keep long-running agents coherent without token bloat.
Agent Context Window Management
Best practices for managing context windows in large language model agents, including proactive summarization, token budgeting, and semantic memory retrieval strategies.
Agent Context Window Management: Practical Patterns
Practical strategies for managing context windows in long-running AI agents. Covers O(1) growth patterns, hierarchical delegation, phase-based compression checkpointing, and semantic deduplication to keep agents coherent over extended tasks without hitting token limits.
Agent Cross-Platform Session Design
Design session isolation and context synchronization strategies for AI agents deployed across multiple chat platforms (Telegram, Slack, Discord, WhatsApp). Covers when to share vs isolate sessions, platform adapter roles, and user ID mapping.
Agent Degradation Recovery Patterns
Strategies for AI agent pipelines to detect degraded state, recover from partial failures, and restore full functionality. Covers health probes, circuit breakers, recovery scheduling, and re-hydration of stale cached data after upstream services come back online.
Agent Dry-Run Testing Workflow
How to use OpenClaw's --dry-run flag to validate autonomous agent behavior before live deployment — inspect planned tool call sequences, catch unexpected operations, and iterate safely.
Agent Error Classification and Recovery Strategy
Teaches agents to classify errors as transient vs permanent and choose the right recovery strategy: retry with backoff, circuit break, or graceful degradation.
Agent Execution Trace Comparison
How to systematically compare dry-run predicted tool calls against live agent execution traces to catch prompt regressions and unintended behavior before they cause production incidents.
Agent Fault Isolation Patterns
Design patterns for isolating faults in multi-agent systems: bulkhead partitioning to prevent cascading failures, timeout hierarchies aligned with context budgets, and retry budgets shared across the agent call tree. Ensures one failing subagent cannot exhaust the orchestrator context or token allowance.
Agent Graceful Degradation Patterns
Design patterns for AI agents to gracefully degrade functionality when upstream services fail, context budgets are exhausted, or subagent pools are saturated. Covers fallback chains, partial result synthesis, and communicating degraded state to the orchestrator without aborting entire pipelines.
Agent Health Probe Design
Design effective health probes for AI agent pipelines: lightweight service checks, probe scheduling, consecutive-success thresholds, and integration with circuit breaker patterns to enable automatic recovery without cascading failures.
Agent Log Audit Patterns
Systematic patterns for auditing autonomous agent logs after deployment — verifying tool call sequences match expectations, detecting unauthorized operations, and establishing a post-deployment verification baseline.
Agent Memory Lifecycle Management
Complete lifecycle management for agent memory systems — when to add facts, how to search effectively, when to summarize, and how to prevent context overflow in production agents.
Agent Memory Retrieval in Practice
Practical patterns for implementing two-tier memory systems in AI agents — semantic search, working vs long-term storage, context overflow prevention, and OpenClaw memory commands.
Agent Memory Retrieval Patterns
Patterns for designing efficient memory retrieval in AI agents — covering semantic search, working memory vs long-term storage, and context-aware recall strategies.
Agent Orchestrator Context Design
Learn how to design orchestrator agents that maintain lean context windows by enforcing structured summarization contracts with subagents, managing memory compression triggers, and architecting O(1) context pipelines.
Agent Output Token Reservation Strategy
How to properly reserve token budget for model output in AI agents to prevent truncated responses and reasoning failures
Agent Phase Boundary Orchestration
Design explicit phase boundaries in multi-step agent workflows: when to cut phases, how to structure state handoffs, and how to maintain task continuity across context resets.
Agent Phase Boundary Protocol
Defines the standard protocol for managing data handoffs between phases in multi-phase AI agent pipelines. Covers compression triggers, summary structures, and state continuity patterns to prevent context bloat and maintain agent coherence across long-running tasks.
Agent Phase Checkpoint Compression
A pattern for compressing agent context at phase boundaries in multi-phase tasks. After each phase checkpoint is confirmed successful, the phase's working history is summarized into a compact structured state, enabling O(1) memory growth across arbitrarily long multi-phase agent workflows.
Agent Phase Handoff Patterns
Practical patterns for compressing and passing state between phases in multi-phase agent pipelines. Covers when to compress context, what to include in handoff summaries, and how to structure state objects to minimize context window growth while preserving continuity across phases.
Agent Phase State Handoff
Techniques for cleanly handing off compressed state between phases in multi-phase agent pipelines, ensuring context efficiency and continuity without data loss.
Agent Pipeline Compression Triggers
When and how to trigger context compression in multi-phase agent pipelines: phase boundary detection, anomaly-aware state transitions, and preventing context exhaustion in long-running workflows.
Agent Pipeline Phase Design
How to structure multi-phase AI agent pipelines with clean handoffs, context-aware summarization, and early exit conditions to maximize efficiency and prevent context overflow.
Agent Pipeline State Handoff Design
How to design efficient state handoff objects between phases in multi-phase AI agent pipelines. Covers compression triggers, what to include in summaries, anomaly forwarding, and the single-update-in-place pattern to prevent context window exhaustion in long-running agent tasks.
Agent Promotion Gate Automation
Automate the sandbox-to-production promotion pipeline with scripted trace comparison, approval gates, and rollback triggers to enforce safe agent deployments.
Agent Resilience Patterns
Combine circuit breakers, adaptive retry with exponential backoff, and graceful degradation to build AI agents that survive transient failures without wasting context budget or causing cascading outages.
Agent Result Summarization Patterns
Learn how to efficiently summarize subagent outputs and intermediate results to maintain lean context in orchestrator agents. Covers summary formats, when to compress, and how to return actionable data from subagents.
Agent Sandbox Promotion Gates
How to define and enforce promotion gates that must pass before an agent moves from sandbox to production — covering trace comparison, approval gates, and rollback triggers.
Agent State Minimization Patterns
Techniques for keeping agent context lean across long-running workflows: structured handoff objects, phase compression, and anomaly forwarding to prevent context bloat.
Agent Subagent Delegation Patterns
Learn when and how to delegate tasks to specialized subagents in OpenClaw — covering spawn patterns, context isolation, result aggregation, and efficiency tradeoffs of monolithic vs. multi-agent architectures.
Agent Token Budget Management
Master techniques for managing token budgets in LLM-based agents, including context compression, dynamic allocation, and overflow handling strategies to prevent silent truncation.
Agent Tool Call Rate Limiting
Learn how to implement and manage rate limiting for AI agent tool calls to prevent API quota exhaustion, respect upstream service limits, and maintain stable agent operation under load. Covers token bucket patterns, backoff strategies, and per-tool rate limit configuration.
Agent Trace Diff Workflow
A systematic workflow for comparing agent dry-run predictions against live sandbox execution to catch behavioral regressions before production deployment.
Agent Version Safety Workflow
A systematic workflow for safely deploying new versions of autonomous agents — combining dry-run validation, sandbox approval gates, and post-deployment log verification to catch regressions before they cause real-world harm.
Agent Workflow Optimization Patterns
Learn the three core patterns for optimizing agentic workflows: subagent delegation, aggressive summarization, and early exit logic to minimize token costs and reduce latency.
Agent Workflow Optimization: Delegate, Summarize, Exit Early
Master the three core patterns for optimizing agentic workflows: subagent delegation for specialized tasks, aggressive summarization to manage context budgets, and early exit logic to prevent unnecessary token burn.
Automated Rollback Triggers for Agent Deployments
Configure and use automatic rollback mechanisms to instantly recover from production incidents caused by misbehaving agent deployments.
Autonomous Agent Safety Deployment Checklist
A practical pre-flight checklist for deploying autonomous AI agents safely: sandbox isolation, approval gates, early exit logic, and dry-run validation before going live.
Autonomous Agent Workflow Optimization
Strategies for reducing latency and token consumption in complex multi-step agent workflows.
Config Attestation for Agent Runtimes
Cryptographic verification of runtime configuration before agent tool execution. Uses BLAKE3 content-addressed hash manifests to ensure config integrity at load time.
Config Attestation Integrity Gates
Using BLAKE3 content-addressed hash manifests to gate agent tool execution on verified configuration integrity, preventing mid-run config drift from compromising autonomous agent behavior.
DePIN Adaptive Jitter & Backoff Strategies
Learn how to implement adaptive jitter and exponential backoff in DePIN node networks to prevent thundering-herd recovery failures and improve overall network resilience.
DePIN Agent Diagnostic Loop
Teaches AI agents how to implement autonomous diagnostic loops for DePIN infrastructure: health polling, fault classification, remediation triggers, and trust-score-aware escalation paths. Covers the full observe-classify-act-verify cycle used in production DePIN monitoring agents.
DePIN Circuit Breaker Jitter Tuning
Techniques for tuning circuit breaker recovery delay jitter in DePIN agent deployments to prevent thundering herd problems when many edge nodes recover simultaneously. Covers jitter strategies, half-open state management, and probe_success_threshold configuration.
DePIN Edge Node Security Hardening
Security hardening techniques for edge nodes in Decentralized Physical Infrastructure Networks, covering Trusted Execution Environments, secure boot, firmware attestation, and physical tamper resistance for IoT-class DePIN hardware.
DePIN Governance Mechanisms
Understanding on-chain and off-chain governance mechanisms for Decentralized Physical Infrastructure Networks, including voting systems, proposal lifecycles, token-weighted delegation, and governance attack vectors.
DePIN Node Health Monitoring
Monitor and alert on DePIN edge node health metrics including uptime, consensus participation rate, reward accumulation, and hardware security status. Implement automated recovery workflows for common failure modes.
DePIN Parallel Data Mesh Architecture
Learn how DePIN (Decentralized Physical Infrastructure Network) nodes can be organized into parallel data mesh architectures for high-throughput, resilient data aggregation. Covers mesh topology design, gossip-based state synchronization, fault-tolerant data routing, and partition handling strategies used in production DePIN deployments. Explores CAP theorem trade-offs and vector clock usage for causal ordering without centralized clocks.
DePIN Reward Optimization
Using autonomous agents to optimize node uptime and maximize token rewards in DePIN networks.
DePIN Thundering Herd Prevention
Understand and prevent thundering herd failures in DePIN edge node networks. Covers jitter-based staggering, probe_success_threshold tuning, and distributed recovery coordination to ensure that simultaneous node failures do not create cascading recovery storms.
Human-AI Interface Design
Designing intuitive and contextual interfaces for human-agent collaboration beyond traditional UIs.
Local Memory Management
Configuring and optimizing local vector stores (SQLite-vec, LanceDB) for private agent memory.
Orchestrator-Subagent Output Contracts
Design and enforce structured summarization contracts between orchestrators and subagents to maintain O(1) context pipelines in multi-agent systems.
Token-Aware Task Decomposition
Break large agentic tasks into smaller chunks to prevent context window overflow and maintain reasoning quality. Covers subagent delegation, aggressive summarization, and early exit patterns.
Token-Aware Task Decomposition for Agents
Learn strategies for breaking large agentic tasks into smaller chunks to prevent context window overflow, reduce latency, and enable focused reasoning — including subagent delegation, aggressive summarization, and early exit logic.
Token-Aware Task Decomposition Patterns
Techniques for breaking long-running agent tasks into context-bounded phases with clean state handoffs, preventing context overflow while maintaining task continuity.