sidekick

sidekick is a skill for Claude Code from hesedcasa/sdkck. It costs 100 tokens per session (940 once invoked), scanned C, original, Apache-2.0.

A command-line skill that exposes services such as Jira, Sentry, databases, Supabase, Bitbucket, Confluence, and imported APIs as commands. It requires searching its command catalogue first.

In plain words
What is it for?
Use it to find and run commands for tickets, errors, SQL databases, authentication data, documentation, repositories, and imported API operations.
Why use it?
It gives one searchable command surface for several external systems and reduces the need to choose separate tools manually.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: model in frontmatter.

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/hesedcasa/sdkck/sidekick
Any agent
npx skills add hesedcasa/sdkck --skill sidekick
Clone the repo
git clone --depth 1 https://github.com/hesedcasa/sdkck

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin cli/plugin install cli after adding the marketplace above.

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 sidekick

README.md
[![agentmods](https://agentmods.dev/badge/skills/hesedcasa/sdkck/sidekick.svg)](https://agentmods.dev/skills/hesedcasa/sdkck/sidekick)
Your own site
<a href="https://agentmods.dev/skills/hesedcasa/sdkck/sidekick"><img src="https://agentmods.dev/badge/skills/hesedcasa/sdkck/sidekick.svg" alt="Measured on agentmods" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 940 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.1 $0.00100 $0.00940
Opus 5 $0.00050 $0.00470
Sonnet 5 $0.00020 $0.00188
Haiku 4.5 $0.00010 $0.00094

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

Security

Grade C, and why

sidekick scanned grade C with 2 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.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

<!-- prettier-ignore -->

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

This is non-negotiable. Do not reach for `mcp__*`, `curl`, `psql`, `mysql`, `gh`, `jira`, or any other tool until `sdkck search` has confirmed that sdkck does not already cover the task. Search is cheap; a wrong tool cho
plugins/cli/skills/sidekick/SKILL.md · 68 lines

How it starts

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

sdkck (sidekick) CLI

sdkck is an agentic CLI that exposes external-system tooling as first-class shell commands. This is your default tool surface.

RULE #1 — Search sidekick FIRST, every time

Before calling any tool, MCP server, or shell command that touches an external system, you MUST run:

sdkck search "{keywords describing the task}"

This is non-negotiable. Do not reach for mcp__*, curl, psql, mysql, gh, jira, or any other tool until sdkck search has confirmed that sdkck does not already cover the task. Search is cheap; a wrong tool choice is expensive.

Search before these, always:

User mentions… First action
Jira, ticket, issue, epic, sprint sdkck search "jira <keyword>"
Sentry, error, event, exception sdkck search "sentry <keyword>"
SQL, DB, query, table, schema sdkck search "mysql" / "postgres"
Supabase, auth user, row-level sdkck search "supabase <keyword>"
Confluence, wiki, page, space sdkck search "confluence <keyword>"
Bitbucket, PR, repo, branch sdkck search "bitbucket <keyword>"
Any imported API / Postman collection sdkck search "<api name or operation>"
Anything else touching external systems Search anyway — empty results mean fallback

Only when sdkck search returns no relevant match may you fall back to MCP, Bash, or other tools. When in doubt, search.

Core workflow

  1. Discoversdkck search "{keywords}" returns ranked matches across all installed plugins and imported OpenAPI operations.

  2. Inspectsdkck {topic} {command} --help before invoking.

  3. Run — space-separated command IDs:

    sdkck jira issue get PROJ-123
    sdkck sentry event get PROJ 226555
    sdkck mysql query "SELECT ..."
    

Built-in topics

  • apiimport {spec} ingests an OpenAPI spec, Postman collection, or GraphQL schema (SDL/introspection/endpoint URL) and registers each operation as sdkck {name} {operationId}. Also: list, call, auth, config, remove.
  • permission — allowlist/denylist CLI commands: allow, disallow, list, export, import, reset.

Read the full file on GitHub · 68 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 · 68 lines · 100 tokens per session scan C e8d603e93611

Subscribe to this mod's changes

sidekick is a skill published in the GitHub repository hesedcasa/sdkck (9 stars, last pushed 2d ago), licensed Apache-2.0. It adds 100 tokens to every session and 940 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 2 findings (hidden instructions, makes network calls). 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

pir-action-tracker

Parses Post-Incident Review (PIR) pages in a Confluence space, fetches live status from referenced Jira tickets, updates action item tables with current status and due dates, marks completed PIRs with a visual closure panel, and surfaces any overdue actions for follow-up. Designed for Customer Success, Support, and…

Perseus-Computing-LLC/perseus · 78 tokens

pm-skills

Use when coordinating project-delivery work across the 8 project-management sub-skills — sprint/velocity analytics, portfolio health, Jira/JQL, Confluence, Atlassian admin, templates, meeting analysis, team comms. Triggers on 'our sprints feel off', 'project health report', 'audit our Jira permissions', 'when will it…

mrDesign-ww/vault-os · 179 tokens

atls

ALL Atlassian work — Jira, Confluence, Bitbucket on Server/DC (지라/컨플루언스/비트버킷). Load BEFORE the first atls command. Without this body you WILL guess atls conventions wrong: JQL/CQL is positional, -f is --md-file not --format, managed push differs from page update, exit 5 = stale-version. TRIGGER: Jira, Confluence…

eunsanMountain/atlassian-skills · 137 tokens

atlassian-cli

Use when working with Jira or Confluence from command line, including authentication, searching issues with JQL, bulk operations, sprint reports, or creating/updating work items using acli.

leweii/atlassian-cli · 41 tokens

search-company-knowledge

Search across company knowledge bases (Confluence, Jira, internal docs) to find and explain internal concepts, processes, and technical details. When an agent needs to: (1) Find or search for information about systems, terminology, processes, deployment, authentication, infrastructure, architecture, or technical…

atlassian/atlassian-mcp-server · 118 tokens

triage-issue

Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket…

atlassian/atlassian-mcp-server · 116 tokens