Skip to main content

Claude skill

The skill is a small instruction package for Claude Code (and other skill-aware agents). It does not contain your data; it teaches Claude when to reach for COBACK and which call answers which kind of question, using your API key at run time. Your company knowledge stays live: the skill always queries the workspace instead of shipping a stale snapshot.

Install

npx coback skill install
export COBACK_API_KEY=coback_brain_...

That writes ~/.claude/skills/coback/SKILL.md; Claude Code picks it up on the next session. Use --dir to install somewhere else (a project's .claude/skills/, for instance).

What it teaches

  • Before answering any question about how the company operates, search the brain and answer from the returned cards, naming their review status: verified and edited cards were confirmed by a human, extracted ones were not.
  • When the user asks whether a regulation affects the company, answer from the screening result and its written rationale, not from the law text alone.
  • The only writes are match feedback, tasks, and comments, and each one is confirmed with the user first. A relevant verdict routes the match to the owning business units.
  • If the CLI is missing, fall back to curl against the REST API with the same key.

The static alternative

If you want company knowledge inside a context window with no network at all, coback brain export produces the whole brain as one markdown file with trust labels per card. That file is a snapshot; the skill is the live version.