customize

customize is a skill for Claude Code, Codex from sbusso/claudeclaw. It costs 60 tokens per session (1,579 once invoked), scanned A, original, MIT.

An interactive guide for adding features to ClaudeClaw, a service that connects Claude to communication channels and other integrations.

In plain words
What is it for?
It is for adding Telegram, Slack, or email input, changing triggers, adding integrations, modifying the router, and handling the required setup questions.
Why use it?
It helps clarify what the user wants before changing channels, triggers, routing, or configuration. It also determines whether the project can be edited directly or needs a developer fork.

Skill for Claude CodeCodex

Part of the claudeclaw plugin — 27 skills 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 skills/sbusso/claudeclaw/customize
Any agent
npx skills add sbusso/claudeclaw --skill customize
Clone the repo
git clone --depth 1 https://github.com/sbusso/claudeclaw

Made for: Claude Code, Codex.

Or install claudeclaw, the plugin that ships this one along with the rest of its 27 skills.

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 customize

README.md
[![agentmods](https://agentmods.dev/badge/skills/sbusso/claudeclaw/customize.svg)](https://agentmods.dev/skills/sbusso/claudeclaw/customize)
Your own site
<a href="https://agentmods.dev/skills/sbusso/claudeclaw/customize"><img src="https://agentmods.dev/badge/skills/sbusso/claudeclaw/customize.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,579 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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 $0.00060 $0.01579
Opus 5 $0.00030 $0.00790
Sonnet 5 $0.00012 $0.00316
Haiku 4.5 $0.00006 $0.00158

Measured 4d ago against content hash 5721b223f69d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

customize 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 4d 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.

skills/customize/SKILL.md · 142 lines

How it starts

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

ClaudeClaw Customization

This skill helps users add capabilities or modify behavior. Use AskUserQuestion to understand what they want before making changes.

Mode Detection

Check if .claude-plugin/plugin.json exists in cwd:

cat .claude-plugin/plugin.json 2>/dev/null | grep '"name": "claudeclaw"' && echo "DEVELOPER_MODE" || echo "PLUGIN_MODE"

If plugin mode, offer the user a choice via AskUserQuestion:

  • Fork to developer mode (Recommended) — Clone the repo into a new directory, copy state, full self-improvement and customization
  • Continue in plugin mode — Limited to channel setup and config changes (no code editing)

If "Fork to developer mode" is chosen, run the migration flow below. Otherwise, proceed with the normal workflow (limited to invoking existing skills like /add-slack, /add-telegram).

Migration: Plugin → Developer Mode

  1. AskUserQuestion: "To customize ClaudeClaw fully, you need your own fork. First, fork sbusso/claudeclaw on GitHub. What's your GitHub username?"
  2. AskUserQuestion: "Where should I clone the repo?" (default: ~/Code/claudeclaw)

Service name: Derived from the directory name: com.claudeclaw.<dirname> (macOS) / claudeclaw-<dirname> (Linux). For example, if cwd is my-assistant, the service is com.claudeclaw.my-assistant. Determine the correct service name before running service commands below.

  1. Stop running service (service name derived from current directory name):
    • macOS: launchctl unload ~/Library/LaunchAgents/com.claudeclaw.<dirname>.plist
    • Linux: systemctl --user stop claudeclaw-<dirname>
  2. Clone: git clone https://github.com/<username>/claudeclaw.git <clone-path>
  3. Copy state from current data directory: cp -r store groups .env <clone-path>/
  4. AskUserQuestion: "Copy logs too?" If yes: cp -r logs <clone-path>/
  5. Clear stale sessions: sqlite3 <clone-path>/store/messages.db "DELETE FROM sessions"
  6. Install and build: cd <clone-path> && npm install && npm run build
  7. Set up upstream: cd <clone-path> && git remote add upstream https://github.com/sbusso/claudeclaw.git
  8. Run service setup: cd <clone-path> && npx tsx setup/index.ts --step service
  9. Print: "Migration complete! Run cd <clone-path> && claude to use developer mode. Remove --plugin-dir from your Claude Code invocation."

Read the full file on GitHub · 142 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. 4d ago First seen · 142 lines · 60 tokens per session scan A 5721b223f69d

Subscribe to this mod's changes

customize is a skill published in the GitHub repository sbusso/claudeclaw (193 stars, last pushed 22d ago), licensed MIT. It adds 60 tokens to every session and 1,579 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

zeroclaw

Help users operate and interact with their ZeroClaw agent instance — through both the CLI (zeroclaw commands) and the REST/WebSocket gateway API. Use this skill whenever the user wants to: send messages to ZeroClaw, manage memory or cron jobs, check system status, configure channels or providers, hit the gateway API…

zeroclaw-labs/zeroclaw · 167 tokens

feature-matrix-parity

Update the OpenClaw and Hermes comparison columns of the ZeroClaw feature-and-support matrix. Use this skill when the user wants to refresh, fill, or verify parity data in docs/book/feature-matrix-parity.toml, add a new comparison row or section to the feature matrix, or re-walk the competitor repos for support…

zeroclaw-labs/zeroclaw · 127 tokens

github-issue-triage

Issue triage and lifecycle management agent for ZeroClaw. Use this skill whenever the user wants to: triage open issues, close stale/duplicate/fixed issues, apply labels, run a backlog sweep, enforce the current issue stale policy, or handle a specific issue. Trigger on: 'triage issues', 'issue triage', 'sweep…

zeroclaw-labs/zeroclaw · 140 tokens

morph-ppt

Use this skill when the user wants a .pptx with smooth cross-slide animation — PowerPoint Morph transitions, Keynote-style continuous motion, shapes that grow / move / rotate as the slide advances. Trigger on: 'morph', 'morph transition', 'smooth transition', 'continuous animation across slides', 'Keynote-style…

iOfficeAI/OfficeCLI · 169 tokens

officecli-academic-paper

Use this skill to build academic-style .docx output: journal / conference / thesis chapters carrying formal citation style (APA, Chicago, IEEE, MLA), numbered equations, figure & table cross-references, footnotes/endnotes, bibliography, or multi-column journal layout. Trigger on: 'research paper', 'journal paper'…

iOfficeAI/OfficeCLI · 141 tokens

officecli-word-form

Use this skill to create fillable Word forms (.docx) with real Content Controls (SDT) + legacy FormField checkboxes + MERGEFIELD mail-merge placeholders + document protection. Trigger on: 'fillable form', 'form fields', 'content controls', 'SDT', 'word form', 'fill in', 'only editable fields', 'protect document'…

iOfficeAI/OfficeCLI · 224 tokens