credential-handling

credential-handling is a skill for Claude Code from nikolamin/claude-coordinator-kit. It costs 264 tokens per session (1,193 once invoked), scanned A, original, MIT.

A policy for using credentials and test accounts on a project's own surfaces, including logging in and testing authenticated features.

In plain words
What is it for?
Use it when a task requires account creation, authentication, SSH access, or testing behind a login.
Why use it?
It explains when agents may use credentials supplied by the founder and separates testing access from financial actions or public launches.

Skill for Claude Code

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

Part of the coordinator-kit plugin — 13 skills shipped together

Good fit Use it when a task requires account creation, authentication, SSH access, or testing behind a login.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nikolamin/claude-coordinator-kit/credential-handling
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.

Any agent
npx skills add nikolamin/claude-coordinator-kit --skill credential-handling
Clone the repo
git clone --depth 1 https://github.com/nikolamin/claude-coordinator-kit

Made for: Claude Code.

Or install coordinator-kit, the plugin that ships this one along with the rest of its 13 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 credential-handling

README.md
[![agentmods](https://agentmods.dev/badge/skills/nikolamin/claude-coordinator-kit/credential-handling/github.svg)](https://agentmods.dev/skills/nikolamin/claude-coordinator-kit/credential-handling)
Your own site
<a href="https://agentmods.dev/skills/nikolamin/claude-coordinator-kit/credential-handling"><img src="https://agentmods.dev/badge/skills/nikolamin/claude-coordinator-kit/credential-handling/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 credential-handling

Your own site · 80×15
<a href="https://agentmods.dev/skills/nikolamin/claude-coordinator-kit/credential-handling"><img src="https://agentmods.dev/badge/skills/nikolamin/claude-coordinator-kit/credential-handling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 264 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,193 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.00264 $0.01193
Opus 5 $0.00132 $0.00596
Sonnet 5 $0.00053 $0.00239
Haiku 4.5 $0.00026 $0.00119

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

Security

Grade A, and why

credential-handling 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 9d 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.

plugins/coordinator-kit/skills/credential-handling/SKILL.md · 67 lines

What it actually says

Credential & account handling

  • Standing authorization to act on the founder's behalf. The founder pre-authorizes the coordinator and every dispatched agent to perform, directly, whatever account actions a task needs on the project's own surfaces: creating test accounts, logging in, and exercising authenticated features for testing/verification. Do this as a normal part of the task instead of handing the step back to the founder or stopping to re-ask permission — this authorization is standing, not something to re-confirm per incident. It does not cover financial transactions or a public go-live; those stay outside the grant, per the installed CLAUDE.md's Execute loop stop conditions.
  • A pasted credential is the founder's authorization to use it — service or personal. Whatever the founder pastes in chat — a notify-channel bot token, a deploy key, a test-account password, a server root password, the founder's own login on a third-party service, an SSH key — is the founder's to share, and pasting it is the founder's call that it's comfortable to hand over. Use it directly to get the task done: log in, authenticate, SSH in, drive the authenticated flow. No objection, no warning, no treating it as a security event, no hedging "to be safe." This extends the standing grant above rather than sitting apart from it — a pasted credential is just how the founder reaches a surface the coordinator doesn't already have standing access to. It goes straight into the relevant gitignored config (e.g. the bridge's .env); see the never-store-credentials rule below for where it does and doesn't otherwise persist. If a specific runtime or platform independently blocks a credential-entry step, say so plainly and hand back only that one step, per the One honest bound below — that's not a reason to decline the task.
  • One honest bound. If an agent cannot perform one specific step for any reason — a platform-level limit (e.g. bot-detection, a device-bound 2FA step no automation can satisfy) or any other cause — it states the actual reason plainly, completes everything else in the task, and hands back only that single step. Never stall or abandon the broader task over it, never mislabel the real reason as something else, and never invoke this bound just because the step involved a credential.
  • Never print a credential file's contents — no cat/head/tail/echo on .env or similar, local or remote. Transcripts persist on disk, so a printed secret is a leaked secret. Inspect variable names only (grep -o '^[A-Z_]*=' file); to use a secret, source it and reference ${VAR} without expanding it to stdout.
  • Never store credentials (keys, tokens, passwords) in memory files, STATE.md, or the repo, service or personal — gitignored local config (per the pasted-credential bullet above) is the only place one persists. Covers a chat-pasted value too, not just a file's contents: write it straight in; it is never echoed back — not in a reply, commit message, log, or notification.
  • Enforce read-only database access structurally, not by instruction. When a task needs read-only production database access, enforce it at the session/transaction level — e.g. MySQL --init-command="SET SESSION transaction_read_only=ON", Postgres default_transaction_read_only, or a role scoped to SELECT only — and verify a write attempt actually errors before relying on it for anything.

Any brief touching credentials, auth, secrets, or a database connection restates this section explicitly, including the never-dump-credential-files rule verbatim — see coordinator-kit:agent-brief-hygiene for how this fits alongside the rest of a brief, and why a rule packaged only in a skill (as this one now is) needs restating even though a rule that still lives in the installed CLAUDE.md does not.

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. 9d ago First seen · 67 lines · 264 tokens per session scan A f64aae4937cd

Subscribe to this mod's changes

credential-handling is a skill published in the GitHub repository nikolamin/claude-coordinator-kit (2 stars, last pushed 7d ago), licensed MIT. It adds 264 tokens to every session and 1,193 once invoked, about $0.0013 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens