| name | hissuno |
| description | Use when working with product intelligence data: browsing feedback, tracking issues, managing customers (contacts and companies), organizing product scopes and their attached source documents, traversing the relationship graph, or connecting data sources via integrations. Works via the hissuno CLI.
|
| license | MIT |
| compatibility | Requires network access to Hissuno API endpoint |
| metadata | {"author":"hissuno","version":"2.1"} |
Hissuno Agent Skill
Hissuno is a unified context layer for product agents. It ingests customer signals (from chat widgets, Slack, Intercom, Gong, etc.) and reference content into an interconnected graph - feedback sessions, product issues, customers (contacts and companies), and product scopes - all linked and traversable.
Available Data
Hissuno exposes 5 top-level resource types:
| Type | CLI Type | What It Contains |
|---|
| Feedback | feedback | Customer feedback sessions - conversations with metadata, tags, and contact links |
| Issues | issues | Product issues - bugs, feature requests, and change requests with priority, status, and RICE scores |
| Customers | customers | Contacts (people) and companies (organizations) - use --customer-type to select |
| Product Scopes | scopes | Product areas and initiatives with measurable goals. |
| Knowledge | knowledge | Reference docs (URLs, docs portals, Notion pages, uploaded files, raw text) attached to a product scope. --scope selects a specific scope; otherwise the project root scope is used. |
Knowledge entries always live under exactly one scope. Pass --scope <id> to target a specific one; otherwise the project's default (root) scope is used. The API path mirrors this as /api/product-scopes/[scopeId]/knowledge.
See individual reference files in references/ for detailed filters, fields, and examples per type.
The Relationship Graph
All entity types are connected via universal edges. Any entity can link to any other entity. Run hissuno get <type> <id> to see all relationships for a resource in a single call. See references/GRAPH-TRAVERSAL.md for traversal patterns and multi-step query examples.
Getting Started
Run hissuno types to see all available types, their filters, and creation fields.
Configuration & Profiles
Connect the CLI and manage multiple environments:
hissuno config
hissuno config show
hissuno profile list
hissuno profile use <name>
hissuno profile create <name>
hissuno profile delete <name>
Install Hissuno skills into agent environments:
hissuno skills install
hissuno skills install --cursor
hissuno skills install --path <dir>
hissuno skills status
hissuno skills uninstall
When to Use Which Command
| Goal | Command | Example |
|---|
| Understand what data exists | hissuno types | "What can I access?" |
| Browse recent items | hissuno list <type> | "Show me open bugs" |
| Look up a specific item | hissuno get <type> <id> | "Get details for issue abc-123" |
| Find items by meaning | hissuno search <query> | "Find feedback about checkout flow" |
| Create new data | hissuno add <type> | "Log a bug about login failures" |
| Traverse relationships | hissuno get <type> <id> --json | "What companies are affected by this issue?" |
| Connect a data source | hissuno integrations add <platform> | "Connect Intercom" |
| View current connection | hissuno config show | "Which instance am I connected to?" |
| Switch environment | hissuno profile use <name> | "Switch to staging" |
Use search for semantic (meaning-based) matching. Use list when you want to browse with structured filters (status, priority, source, etc.).
Common Workflows
Investigate a Feature Area
hissuno list scopes to find the relevant product scope
hissuno get scopes <id> to see related issues, feedback, and reference docs
hissuno list knowledge --scope <id> to enumerate the scope's reference docs (omit --scope for root-scope docs)
hissuno get issues <id> on specific issues for full details and RICE scores
Find Customer Pain Points
hissuno list feedback --source intercom --status closed to see recent conversations
hissuno search "the problem area" across all types
- Cross-reference with
hissuno list issues --status open to check existing issues
Log a Bug from Customer Feedback
hissuno search "the problem" --type issues to check for duplicates
- If no duplicate:
hissuno add issues with type=bug, title, description
- Optionally reference the feedback session ID in the description
Analyze a Customer Account
hissuno list customers --customer-type companies --stage active to find the company
hissuno get customers <company-id> --customer-type companies for company details and contacts
hissuno list customers --company-id <id> to find contacts at the company
- Cross-reference with
hissuno list feedback --contact-id <id> for full conversation history
Assess Goal Progress
hissuno list scopes to find the scope
hissuno get scopes <id> to see goals and related issues
- Review issue statuses and priorities to gauge progress toward each goal
Switch Between Environments
hissuno profile list to see available profiles
hissuno profile use <name> to switch
hissuno config show to verify the active connection
Connect a Data Source
hissuno integrations list to see all integration statuses
hissuno integrations <platform> to start the interactive setup wizard
- For syncable platforms:
hissuno integrations sync <platform> to trigger initial data pull
CLI Reference
The hissuno CLI is the primary interface for Claude Code users. See references/CLI-REFERENCE.md for the full command reference.
Quick examples:
hissuno types
hissuno list issues --status open --priority high
hissuno list customers
hissuno list customers --customer-type companies
hissuno list scopes
hissuno list knowledge --scope auth
hissuno search "checkout flow"
hissuno get feedback <id>
hissuno get customers <id>
hissuno add issues
hissuno add scopes
hissuno add knowledge --type docs_portal --url https://...
hissuno add knowledge --scope auth --type docs_portal --url https://...
hissuno update scopes <id>
hissuno integrations list
hissuno integrations sync intercom
hissuno config show
hissuno profile list
hissuno profile use staging
hissuno skills install
Product Workflows
Hissuno includes workflow skills that guide agents through structured product processes using the graph layer. Each is a standalone skill with its own trigger:
| Skill | Use When |
|---|
hissuno-market-analysis | Analyzing a product area or initiative - demand, competitors, market context, feasibility |
hissuno-customer-health | Assessing a customer account - feedback history, open issues, sentiment, health |
These are templates. To create your own workflow skill:
- Create a new directory:
hissuno-<your-workflow-name>/
- Add a
SKILL.md with frontmatter (name, description with trigger keywords) and your phased procedure
- Use
hissuno CLI commands in each step to query and enrich the graph
- Run
hissuno skills install to deploy
See any existing workflow skill's SKILL.md for the pattern.