| name | hissuno-market-analysis |
| description | Use when analyzing a product area or initiative - assessing demand, researching the market, evaluating competitors, and validating feasibility before committing to build. Triggers on: market analysis, initiative analysis, competitive analysis, demand validation, scope analysis, market research, TAM, competitor research. Requires the hissuno CLI to be configured.
|
| version | 1.0 |
| license | MIT |
| metadata | {"author":"hissuno"} |
| triggers | {"manual":{"entity":"scope"}} |
| input | {"scopeId":{"type":"string","required":true,"description":"ID of the product scope to analyze."}} |
| capabilities | {"sandbox":true,"webSearch":true} |
Market Analysis
Guides you through a structured market analysis for a product scope or initiative. Combines internal product signals from the Hissuno graph with external market research, enriches the graph with findings, and produces a synthesis with a recommendation.
Prerequisites
hissuno CLI configured and connected (hissuno config show to verify)
- Web search access for external research phases
Workflow
Phase 1: Internal Signal Gathering
Step 1 - Identify the scope.
Ask the user which product scope or initiative to analyze. If they're unsure, browse:
hissuno list scopes
Once identified, pull full details including goals and existing relationships:
hissuno get scopes <id>
Step 2 - Aggregate demand signals.
Search broadly across all entity types:
hissuno search "<scope name or area>"
Then collect structured data:
- Issues related to this area - count by type (bug/feature/change), review RICE scores and statuses
- Feedback mentioning this area - volume, sources (widget/Slack/Intercom/Gong), recency
- Traverse issue and feedback relationships to identify which companies are asking:
hissuno get issues <id>
hissuno get feedback <id>
Step 3 - Assess existing knowledge.
Search for prior art, documentation, and technical context:
hissuno search "<area>" --type knowledge
Review what's already been built or documented. Note gaps where knowledge is missing.
Phase 2: External Research
Work through this checklist. Present it to the user at the start of this phase - they can skip items or add their own. Use web search and web fetch for each item.
Competitive Landscape
Market Context
Solution Landscape
Customer Validation Signals
Phase 3: Graph Enrichment
Feed findings back into Hissuno so they're discoverable in future queries:
Knowledge sources - Add key URLs discovered during research (competitor pages, articles, reports, docs):
hissuno add knowledge
Issues - Create issues for gaps or competitive threats identified:
hissuno add issues
Scope updates - If the research surfaced insights that refine the scope's goals:
hissuno update scopes <id>
Relationship linking - Connect new knowledge and issues to the scope and to affected customers found in Phase 1. Use the relationship fields when creating/updating entities.
Phase 4: Synthesis
Produce a structured analysis covering these sections:
- Demand Summary - Internal signal strength: issue count, feedback volume, aggregate RICE scores, number of requesting customers
- Customer Impact Map - Which companies are affected, their stages (prospect/active/churned), concentration risk
- Competitive Landscape - Who else plays here, their positioning, where they're strong, where the gaps are
- Market Context - Market size, trends, timing considerations
- Technical Landscape - Existing approaches, open-source options, integration expectations
- Goal Alignment - How findings map to the scope's stated goals
- Recommendation - Pursue / defer / pivot, with supporting evidence from both internal and external research
- Open Questions - What still needs answering before a decision
Ask the user if they want the synthesis saved as a markdown document, delivered conversationally, or both.
Creating Your Own Workflow Skill
This is a workflow template. To create your own:
- Create a new directory:
hissuno-<your-workflow-name>/
- Copy this
SKILL.md as a starting point
- Change the
name and description frontmatter (description controls when the skill triggers)
- Replace the phases with your procedure - use specific
hissuno commands at each step
- Install with
hissuno skills install