yet-another-agentic-chat: Skill for Claude Code

.claude/skills/updating-mcp-tools/SKILL.md

updating-mcp-tools is a skill for Claude Code from amyodov/yet-another-agentic-chat. It costs 0 tokens per session (673 once invoked), scanned A, original, MIT.

A workflow for adding, removing, renaming, or revising YAAC's MCP tools and their documentation. MCP tools are the callable actions that an AI client can use through the server.

In plain words
What is it for?
Use it whenever YAAC tool definitions, parameters, field descriptions, or server instructions change.
Why use it?
It keeps the tool descriptions and generated documentation synchronized, including instructions needed for message polling and replies.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is amyodov/yet-another-agentic-chat's own configuration. It tells Claude Code how to work on yet-another-agentic-chat itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything yet-another-agentic-chat configures →

Reuse

Borrowing it

Nothing to install: this file belongs to amyodov/yet-another-agentic-chat. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/amyodov/yet-another-agentic-chat/main/.claude/skills/updating-mcp-tools/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/amyodov/yet-another-agentic-chat

Made for: Claude Code.

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 updating-mcp-tools

README.md
[![agentmods](https://agentmods.dev/badge/skills/amyodov/yet-another-agentic-chat/updating-mcp-tools/github.svg)](https://agentmods.dev/skills/amyodov/yet-another-agentic-chat/updating-mcp-tools)
Your own site
<a href="https://agentmods.dev/skills/amyodov/yet-another-agentic-chat/updating-mcp-tools"><img src="https://agentmods.dev/badge/skills/amyodov/yet-another-agentic-chat/updating-mcp-tools/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for updating-mcp-tools

Your own site · 80×15
<a href="https://agentmods.dev/skills/amyodov/yet-another-agentic-chat/updating-mcp-tools"><img src="https://agentmods.dev/badge/skills/amyodov/yet-another-agentic-chat/updating-mcp-tools.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 673 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.00673
Opus 5 $0.00000 $0.00336
Sonnet 5 $0.00000 $0.00135
Haiku 4.5 $0.00000 $0.00067

Measured 11d ago against content hash 56e7688715f3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

updating-mcp-tools 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/generate.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/updating-mcp-tools/SKILL.md · 49 lines

How it starts

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

Updating the MCP tool surface

Two steps, in order: get the descriptions right, then sync the generated docs. The order matters because the docs are generated from the descriptions — polishing prose after regenerating means regenerating twice.

1. Description quality

The economics decide where words go: a tool description rides in every request while the server is connected, and a tool result is paid once per call. So:

  • Permanent duties go in descriptions, tersely; situational nudges go in results. A sentence in a description is charged to every turn of every session that has the server installed, joined or not.
  • Descriptions must carry the whole usage flow unaided — no client is obliged to surface server instructions, and no skill is installed on the far side. The two flow-critical facts they must keep alive: joining commits the model to polling check_inbox every turn, and a reply only ever arrives through check_inbox. Weakening either turns a working radio into an apparently deaf one.
  • Dormant-visible tools (list_channels, join_channel) are the whole context cost YAAC imposes on sessions that never join; be strictest about their length.
  • Parameter Field descriptions are part of the surface too — a model fills arguments from them.

2. Sync the docs

docs/tools.md is generated, never hand-written. The generator imports yaac.frontend and reads the tool registry itself — the same registration path that answers tools/list — so the file shows exactly what a connected client sees: names, availability (dormant vs on-air), descriptions, parameter schemas, and the server instructions. Editing it by hand would only create a version of the truth that the next regeneration deletes.

  1. From the repository root, run:

    uv run python ${CLAUDE_SKILL_DIR}/scripts/generate.py
    
  2. git diff docs/tools.md and read the diff. It should contain precisely the change made in step 1 — an unexpected hunk means either the docs were stale (fine, that is the point) or the change had a wider blast radius than intended (worth telling the user about).

Read the full file on GitHub · 49 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 49 lines · 0 tokens per session scan A 56e7688715f3

Subscribe to this mod's changes

updating-mcp-tools is a skill published in the GitHub repository amyodov/yet-another-agentic-chat (4 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 673 tokens. 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-31.

Related

Other skills, from other repositories

agent-self-scheduling

Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.

sickn33/agentic-awesome-skills · 24 tokens

choosing-swarm-patterns

Use when coordinating multiple AI agents with Agent Relay's workflow engine and need to pick the right orchestration pattern - covers the 10 core patterns (fan-out, pipeline, hub-spoke, consensus, mesh, handoff, cascade, dag, debate, hierarchical) plus 14 specialized ones, with decision framework and accurate…

AgentWorkforce/relay · 76 tokens

deploying-to-staging-environment

Use when deploying changes to staging across relay, relay-dashboard, and relay-cloud repos - coordinates multi-repo branch syncing using git worktrees, automatically triggers staging deployments via GitHub Actions.

AgentWorkforce/relay · 44 tokens

using-agent-relay

Use when you are a registered relay agent (a spawned worker, or a lead that called registeragent) coordinating with peers in real time over current Agent Relay MCP tools - messaging, channels, threads, reactions, search, inbox, actions, and worker spawn/release. For role selection and orchestrator startup…

AgentWorkforce/relay · 85 tokens

review-fix-signoff-loop

Use when writing Agent Relay or Ricky workflows that must loop review, fix, and validation with fresh agent context until independent signoff agents, typically Claude and Codex, both agree the work is comprehensively complete. Covers fresh-context iterations, repairable gates, dual reviewer verdict contracts…

AgentWorkforce/relay · 77 tokens

browser-testing-with-screenshots

Use when testing web applications with visual verification - automates Chrome browser interactions, element selection, and screenshot capture for confirming UI functionality.

AgentWorkforce/relay · 32 tokens