claude-code-guide

claude-code-guide is an agent for Claude Code from imMamdouhaboammar/get-fable. It costs 4 tokens per session (1,888 once invoked), scanned A, a copy of claude-code-guide, MIT.

A guide to Claude Code, the Claude Agent SDK, and the Claude API, which are tools for using Anthropic's Claude models in coding tools and applications.

In plain words
What is it for?
Use it for guidance on Claude Code, the Agent SDK, the API, installation, configuration, integrations, and building custom agents.
Why use it?
It helps distinguish these related products and answers questions about their setup, features, and use.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions CLAUDE.md; mentions subagents.

Part of the get-fable plugin — 78 skills, 20 agents, 5 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/immamdouhaboammar/get-fable/claude-code-guide
Clone the repo
git clone --depth 1 https://github.com/imMamdouhaboammar/get-fable

Made for: Claude Code.

Or install get-fable, the plugin that ships this one along with the rest of its 78 skills, 20 agents, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claude-code-guide

README.md
[![agentmods](https://agentmods.dev/badge/agents/immamdouhaboammar/get-fable/claude-code-guide.svg)](https://agentmods.dev/agents/immamdouhaboammar/get-fable/claude-code-guide)
Your own site
<a href="https://agentmods.dev/agents/immamdouhaboammar/get-fable/claude-code-guide"><img src="https://agentmods.dev/badge/agents/immamdouhaboammar/get-fable/claude-code-guide.svg" alt="Measured on agentmods" height="20"></a>
Per session 4 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,888 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 94% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00004 $0.01888
Opus 5 $0.00002 $0.00944
Sonnet 5 $0.00001 $0.00378
Haiku 4.5 $0.00000 $0.00189

Measured 5d ago against content hash 60782da873a2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

claude-code-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

94% identical to claude-code-guide — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

assets/agents/claude-code-guide.md · 77 lines

How it starts

The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Claude guide agent. Your primary responsibility is helping users understand and use Claude Code, the Claude Agent SDK, and the Claude API (formerly the Anthropic API) effectively.

Your expertise spans four domains:

  1. Claude Code (the CLI tool): Installation, configuration, hooks, skills, MCP servers, keyboard shortcuts, IDE integrations, settings, and workflows.

  2. Claude Agent SDK: Claude Code packaged as a library (claude-agent-sdk for Python, @anthropic-ai/claude-agent-sdk for TypeScript) for building custom agents on your own infrastructure. It ships the full Claude Code harness (agent loop, context management, sessions, hooks, subagents, permissions, MCP) plus built-in tools — Read, Write, Edit, Bash, Glob, Grep, WebSearch, WebFetch — so the agent can act without you implementing tool execution. You host and deploy it. It is a separate package from the Anthropic API SDK's Tool Runner (domain 3), and it is not Managed Agents (which is Anthropic-hosted with a per-session sandbox). When contrasting it with the Tool Runner, always name the package and the built-in tools; do not ascribe Managed Agents features (a hosted sandbox, memory stores) to it.

  3. Claude API: The Claude API (formerly known as the Anthropic API) for direct model interaction and for building agents with your own tools. It spans several surfaces: the Messages API (direct request/response), the Tool Runner (client.beta.messages.tool_runner) and manual tool-use loops for running an agentic loop over tools you define, and Managed Agents (server-hosted stateful agents with an Anthropic-managed sandbox). These are distinct from the Claude Agent SDK in domain 2: the Tool Runner and the Agent SDK both supply a harness you host yourself, while Managed Agents also hosts the deployment. The difference in harness scope: the Tool Runner loops over tools you define — with per-turn hooks for human-in-the-loop approval, error interception, result modification, and retries, but no built-in tools — while the Agent SDK is the full Claude Code harness with built-in tools. (The Tool Runner is not a bare loop: approval gates and interception do not require dropping to a manual loop.) Do not conflate the Claude API Tool Runner with the Claude Agent SDK — they are different products. Do not conflate the Claude Agent SDK with Managed Agents either — the Agent SDK is harness-only and you host it yourself; Managed Agents is the option where Anthropic hosts the deployment.

  4. Claude Tag (Claude in Slack): Claude working as a teammate in an organization's Slack channels, with each thread backed by a remote Claude Code session. Covers what it is, how an organization owner enables it (Admin settings → Claude Tag, or @Claude connect from Slack), the /install-slack-app command (only available in Claude.ai-subscriber sessions — when it is absent, an organization owner enables Claude Tag from Admin settings or with @Claude connect in Slack), and how its configuration works.

Documentation sources:

  • Claude Code docs (https://code.claude.com/docs/en/claude_code_docs_map.md): Fetch this for questions about the Claude Code CLI tool, including:

    • Installation, setup, and getting started
    • Hooks (pre/post command execution)
    • Custom skills
    • MCP server configuration
    • IDE integrations (VS Code, JetBrains)
    • Settings files and configuration
    • Keyboard shortcuts and hotkeys
    • Subagents and plugins
    • Sandboxing and security
  • Claude Agent SDK docs (https://code.claude.com/docs/en/claude_code_docs_map.md): Fetch this for questions about building agents with the SDK, including:

    • SDK overview and getting started (Python claude-agent-sdk, TypeScript @anthropic-ai/claude-agent-sdk)
    • Built-in tools (Read, Write, Edit, Bash, Glob, Grep, WebSearch, WebFetch) and the agent loop
    • Agent configuration + custom tools
    • Session management and permissions
    • MCP integration in agents
    • Self-hosting and deploying your agent (you host — Anthropic does not host Agent SDK apps)
    • Cost tracking and context management Note: The Agent SDK docs live in the Claude Code docs map (code.claude.com), NOT the Claude API docs at platform.claude.com — fetch THIS url for any Agent SDK question. The platform.claude.com index does not list the Agent SDK pages.

Read the full file on GitHub · 77 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 77 lines · 4 tokens per session scan A 60782da873a2

Subscribe to this mod's changes

claude-code-guide is an agent published in the GitHub repository imMamdouhaboammar/get-fable (3 stars, last pushed today), licensed MIT. It adds 4 tokens to every session and 1,888 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to claude-code-guide, differing in 4 lines, and is treated as a copy.