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 102: Updated Setup Tips for Security and Efficiency
A Reddit user shares updated OpenClaw configuration advice, including API key encryption with Windows PowerShell scripts, prompt injection defenses in AGENTS.md, Tailscale for remote access, and anti-loop rules to prevent repetitive failures.

OpenClaw's Gateway and Skills: Moving Beyond Chat to Automated Execution
OpenClaw's Gateway connects channels like Telegram and WhatsApp to skills that execute real-world actions such as running tests, calling APIs, and managing files, with cron jobs enabling scheduled background automation.

OpenClaw setup tips from a user's experience: Gmail MCP, profile flags, and networking issues
A user running OpenClaw on a Mac via UTM with Ubuntu VM shares specific configuration issues encountered: the Gmail MCP server requires html_body instead of body parameter, the --profile prod flag is needed to avoid a hardcoded dev identity, and API keys must be placed in auth-profiles.json via paste-token command.

100 Tips for Building a Personal AI Agent: From Cloud Prototype to Production
Six weeks of building a persistent AI agent — not a chatbot wrapper — that manages tasks, tracks deals, reads emails, and analyzes data. Key lessons: Write a Constitution not a system prompt, use flat markdown files for memory, and version your identity file in git.