ToolsConnector: Skill for Claude Code

.agents/skills/health_watcher/SKILL.md

health_watcher is a skill for Claude Code, Codex from sachinshelke/ToolsConnector. It costs 11 tokens per session (275 once invoked), scanned A, original, Apache-2.0.

An agent role for checking whether upstream software libraries and APIs have changed. An API is the interface one program uses to work with another.

In plain words
What is it for?
It checks official release information, assesses the effect on connector files, and prepares focused fixes for affected code.
Why use it?
It helps detect connector breakage when a dependency removes parameters, changes login requirements, or adds new behavior.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is sachinshelke/ToolsConnector's own configuration. It tells Claude Code and Codex how to work on ToolsConnector 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 ToolsConnector configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sachinshelke/ToolsConnector. 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/sachinshelke/ToolsConnector/main/.agents/skills/health_watcher/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sachinshelke/ToolsConnector

Made for: Claude Code, Codex.

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 health_watcher

README.md
[![agentmods](https://agentmods.dev/badge/skills/sachinshelke/toolsconnector/health_watcher/github.svg)](https://agentmods.dev/skills/sachinshelke/toolsconnector/health_watcher)
Your own site
<a href="https://agentmods.dev/skills/sachinshelke/toolsconnector/health_watcher"><img src="https://agentmods.dev/badge/skills/sachinshelke/toolsconnector/health_watcher/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 health_watcher

Your own site · 80×15
<a href="https://agentmods.dev/skills/sachinshelke/toolsconnector/health_watcher"><img src="https://agentmods.dev/badge/skills/sachinshelke/toolsconnector/health_watcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 275 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.00011 $0.00275
Opus 5 $0.00005 $0.00138
Sonnet 5 $0.00002 $0.00055
Haiku 4.5 $0.00001 $0.00028

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

Security

Grade A, and why

health_watcher 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.

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.

.agents/skills/health_watcher/SKILL.md · 21 lines

What it actually says

Connector Health Watcher Persona

Overview

You represent the proactive maintenance engine for ToolsConnector. The biggest risk to this project is "Connector Rot." Your role is to detect when underlying SDKs and APIs change, and generate Pull Requests to patch the affected files in our connectors/ folder.

Rules

  1. Source of Truth Check: When invoked, you first locate the official changelog or GitHub releases for the underlying tool SDK (e.g., reading slack-sdk github repo).
  2. Impact Analysis: You generate a short Markdown analysis determining if a change is:
    • Breaking: Parameter removed, auth scope changed.
    • Additive: New endpoints or parameters.
    • Internal: No action needed.
  3. Surgical Fixing: Instead of regenerating the entire tool connector, you pinpoint exactly what needs to be changed in connectors/[tool]/connector.py line-by-line using your code editing tools.

Example Flow

  • User: "Slack just released SDK v4. Check for breaking changes."
  • You (Watcher): "I will read Slack's migration guide. I will diff the parameters we use in connectors/slack/connector.py. I will prepare a PR with the required migration."
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 · 21 lines · 11 tokens per session scan A 8686f3373bbe

Subscribe to this mod's changes

health_watcher is a skill published in the GitHub repository sachinshelke/ToolsConnector (5 stars, last pushed 4d ago), licensed Apache-2.0. It adds 11 tokens to every session and 275 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

debug-ci

Use when CI/CD pipeline fails. Provides systematic diagnosis for lint, type, test, and build failures across Python, TypeScript, Java, Rust, and n8n SDKs.

open-metadata/ai-sdk · 40 tokens

explore

Build an accurate mental model of an unfamiliar codebase, feature, or area before changing it — where it lives, how it connects, what it does, and why. Use when asked how something works, where something is, when onboarding to a repo, or before editing code you don't know. For a cross-cutting question that needs…

TheWinci/mimirs · 79 tokens

debug

Trace a bug, error, or regression to its root cause. Use when investigating a failure, a stack trace, unexpected behavior, or "why does X happen".

TheWinci/mimirs · 35 tokens

lain

Structural code intelligence for AI coding agents. Use this skill when the user wants to understand how a codebase is organized (modules, call graphs, file dependencies), find where to start reading, trace the impact of a change, find code by meaning, or understand what a symbol does in its full context. Do NOT use…

spuentesp/lain · 90 tokens

lsp-mcp-server

Use whenever code navigation, analysis, refactoring, or diagnostics are needed on a project that has a Language Server Protocol implementation. Covers all 29 lsp MCP tools exposed by lsp-mcp-server (TypeScript, Python, Rust, Go, C/C++, Ruby, PHP, Elixir, Kotlin, Java, and any user-configured language). Use it instead…

ProfessioneIT/lsp-mcp-server · 137 tokens

add-test

Use when adding unit or integration tests. Provides test patterns, naming conventions, and fixtures for Python (pytest), TypeScript (vitest), Java (JUnit/Mockito), and Rust.

open-metadata/ai-sdk · 40 tokens