Claude Code Skills vs. Custom Agents: A Mental Model Based on Task Consistency

A Reddit post from a Claude Code user provides a clear mental model for distinguishing between skills and custom agents, based on practical experience after months of use.
The Core Distinction: Consistency vs. Judgment
The key question to ask is: does the task need consistency or judgment?
- Skills are for tasks that follow the same steps every time. The user's example is a
/meetingskill that always runs the same sequence: extract notes, cross-reference attendees, create a structured note, and propose Todoist tasks. No deviation is needed. - Custom Agents are for tasks that require reasoning. The example given is a trip planning agent that reads travel history, researches the destination, generates three route variants, and asks calibration questions. Every trip is different, so the agent adapts.
Additional Concepts from the Source
The original post also covers several related concepts for building agents in Claude Code:
- Parallel Subagents: Running tasks simultaneously, such as researching three competitors at the same time.
- Subagent Delegation: Offloading heavy context-gathering to keep the main workflow clean.
- Hooks as Personal Guardrails: Using
PreToolUseandPostToolUsehooks to control agent behavior. - Four Building Blocks in Enterprise AI Agents: The post maps common enterprise agent components to Claude Code concepts:
CLAUDE.mdcorresponds to the system prompt, MCP to tool descriptions, memory to short/long-term storage, and skills to technical guardrails.
The full article with more details is linked in the source.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw Integration with WhatsApp Cloud API
A developer has configured OpenClaw to communicate directly with WhatsApp using Meta's official Cloud API and documented the setup process to help others avoid scattered documentation.

Optimizing Qwen 3.6 27B/35B on RTX 3090: Flags, Quantization, and Auto-Routing
A user shares his llama-server flags for Qwen 3.6 27B and 35B GGUF models on an RTX 3090 (24GB), reporting slow speeds for the 35B and unreliable code output from the 27B. The post asks for better quant, flag tuning, and auto model switching.

Fixing OpenClaw Prompt Bloat and Slow Response Loops
Users experiencing long delays since 2026.4.26 can reclaim performance by reducing context bloat: trim always-injected files, limit visible skills, and avoid pasting huge tool outputs in main chat.

Designing Constraints for Production-Grade AI Agent Reliability
A Reddit post details a constraint-based approach to using Claude for complex codebase operations, emphasizing explicit failure mode enumeration, phased execution with checkpoints, and anti-shortcut rules to achieve zero broken builds when removing 140 files.