Agent Skills
Install Senso skills so your AI agent can ingest raw sources, query your knowledge base, and generate verified content.
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 --allOr install specific skills by name:
senso skills install search ingest content-genThe 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 cursorInstall 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 --claudeOr 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 --claudeReplace --claude with --cursor, --codex, --copilot, --gemini, or --cline for other agents.
What each skill does
| Skill | What it lets you do |
|---|---|
search | Query your compiled knowledge base and get grounded answers with source citations |
ingest | Ingest raw sources — files, text, URLs — into your knowledge base |
content-gen | Generate verified blog posts, FAQs, and articles grounded in your ingested sources |
brand-setup | Set up your brand voice, tone, and writing rules for generated content |
kb-organize | Create folders, move sources, and organize your knowledge base |
review-publish | Review 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 listSee all available skills:
senso skills list-availableRemove a skill:
senso skills remove searchProject vs. global install
By default, skills install at the project level. To make them available everywhere on your machine:
senso skills install --all --global| Scope | Where it's saved | When 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 |
