Senso
Sign in

Agent Skills

Install Senso skills so your AI agent can ingest raw sources, query your knowledge base, and generate verified content.

Agent skills teach your AI agent how to use Senso. Once installed, you don't need to remember any commands — just talk to your agent naturally and it handles the ingest, compile, and query pipeline for you.

Skills work with Claude Code, Cursor, Codex, GitHub Copilot, Gemini CLI, Cline, and other compatible agents.

Install skills

Install all Senso skills with one command:

senso skills install --all

Or install specific skills by name:

senso skills install search ingest content-gen

The CLI auto-detects which AI tool you're using. To target a specific one:

senso skills install --all --agent claude
senso skills install --all --agent cursor

Install via Shipables

What's Shipables? Shipables is an open registry for agent skills — think npm, but for AI agent capabilities.

You can install Senso skills directly from it:

npx shipables install @senso/senso-search --claude

Or all six at once:

npx shipables install @senso/senso-search @senso/senso-ingest @senso/senso-content-gen @senso/senso-brand-setup @senso/senso-kb-organize @senso/senso-review-publish --claude

Replace --claude with --cursor, --codex, --copilot, --gemini, or --cline for other agents.

What each skill does

SkillWhat it lets you do
searchQuery your compiled knowledge base and get grounded answers with source citations
ingestIngest raw sources — files, text, URLs — into your knowledge base
content-genGenerate verified blog posts, FAQs, and articles grounded in your ingested sources
brand-setupSet up your brand voice, tone, and writing rules for generated content
kb-organizeCreate folders, move sources, and organize your knowledge base
review-publishReview generated content, approve or reject it, and publish to destinations

What it looks like in practice

Once skills are installed, just talk to your agent. It handles the full pipeline — ingest, query, generate.

You: "What's our current refund policy? Check Senso."

Your agent queries your compiled knowledge base and returns a grounded answer with cited sources.

You: "Upload this quarter's compliance report to Senso."

Your agent ingests the raw source and confirms it's compiled into your knowledge base.

You: "Generate a blog post about our new pricing model."

Your agent queries your knowledge base, checks your brand settings, and generates verified content grounded in your ingested sources — ready for review.

Manage installed skills

List installed Senso skills:

senso skills list

See all available skills:

senso skills list-available

Remove a skill:

senso skills remove search

Project vs. global install

By default, skills install at the project level. To make them available everywhere on your machine:

senso skills install --all --global

ScopeWhere it's savedWhen to use
Project.claude/skills/senso-search/Per-project, committed with the code
Global~/.claude/skills/senso-search/Available in every project on your machine

Next steps

  • Senso CLI — Full list of commands your agent can use
  • Quickstart — Ingest a raw source and start querying in 5 minutes
  • API Reference — For developers building custom integrations