Claude Code Skills
Use Claude Code skills to query Hissuno while you code.
Overview
Claude Code skills are contextual guides that teach Claude Code how to use specific tools. With the Hissuno MCP server configured, a skill file tells Claude Code what data is available and how to query it — so you can ask about customer feedback, search for bugs, or check issue status without leaving your editor.
Skills build on the MCP server connection. Set up MCP first, then add the skill for a guided experience.
Prerequisites
- Claude Code installed and working in your project
- Hissuno MCP server configured in your Claude Code settings (see MCP Server docs)
Setup
1. Configure the MCP Server
If you haven't already, add Hissuno to your .claude/settings.json:
{
"mcpServers": {
"hissuno": {
"type": "streamable-http",
"url": "https://mcp.hissuno.com/mcp",
"headers": {
"Authorization": "Bearer hiss_YOUR_API_KEY"
}
}
}
}
2. Install the Skill
Run from your project root:
curl -fsSL hissuno.com/skills.sh | bash
This creates .claude/skills/hissuno/ with the skill definition and reference files. Run the same command again to update to the latest version.
Usage
Once configured, Claude Code can use Hissuno data during your coding sessions. Examples:
- Before refactoring: "Are there any customer complaints about the checkout flow?"
- During a bug fix: "Search for issues related to authentication timeouts"
- While planning: "What are the highest-priority open feature requests?"
- During code review: "What do customers say about the onboarding experience?"
The skill is triggered automatically when Claude Code detects relevant context, or you can invoke it directly by referencing Hissuno in your prompts.
How It Works
- Claude Code reads the skill file to understand what Hissuno tools are available
- When you ask a question that matches the skill's description, Claude Code uses the MCP tools to query Hissuno
- Results are returned inline in your conversation, alongside your code context
The skill file acts as a guide — it tells Claude Code when and how to use the Hissuno MCP tools. The actual data access happens through the MCP server connection.