sidekicklisted
Install: claude install-skill hesedcasa/sdkck
# 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:
```bash
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:**
<!-- prettier-ignore -->
| 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. **D