ワンクリックで
tigrimos-market-research
Multi-agent market research workflow for TigrimOS with brand discovery, data analysis, charts, and compiled report
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Multi-agent market research workflow for TigrimOS with brand discovery, data analysis, charts, and compiled report
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Handle typos and variations in brand/product names to discover correct terminology and find relevant information
Automated code review — analyzes source files for bugs, security issues, style violations, and improvement suggestions. Use when asked to review code, check quality, or find problems in files.
Intelligent debugging assistant — analyzes error messages, stack traces, logs, and runtime behavior to identify root causes and suggest fixes.
Generate documentation from source code — creates README, API docs, module summaries, and inline documentation. Use when asked to document code, generate docs, or explain a codebase.
Excel-based student grade analysis with percentage conversion, distribution charts, and detailed performance breakdown
Validate environment variables, dependencies, and system requirements. Diagnose missing configs, version mismatches, and setup issues.
| name | tigrimos-market-research |
| description | Multi-agent market research workflow for TigrimOS with brand discovery, data analysis, charts, and compiled report |
This skill orchestrates a multi-agent workflow to perform comprehensive market research for TigrimOS (or similar AI assistant/agent platforms). It handles brand name correction, market data collection, visualization generation, and report compilation.
[Orchestrator]
├── spawn: brand_discovery_agent (sequential, waits)
├── spawn: market_researcher (parallel)
├── spawn: data_analyst (parallel)
├── spawn: report_compiler (parallel, waits for analyst)
└── synthesize: all outputs → final report
| Agent | Label | Role | Waits For |
|---|---|---|---|
| Orchestrator | orchestrator | Coordinates workflow, synthesizes results | - |
| Brand Discovery | brand_discovery_agent | Typos/variation handling | orchestrator |
| Market Researcher | market_researcher | Web search, data gathering | brand_discovery |
| Data Analyst | data_analyst | Charts, visualizations, JSON data | market_researcher |
| Report Compiler | report_compiler | Markdown report assembly | market_researcher, data_analyst |
brand-discovery skilllanguage-ranking-chart skillbrand-discovery skilldef tigrimos_market_research_pipeline(query: str) -> dict:
"""Execute multi-agent market research workflow."""
# Phase 1: Brand Discovery
brand_agent = spawn_agent("brand_discovery_agent",
skills=["brand-discovery"])
correct_name = brand_agent.discover(query) # Handles typos
# Phase 2: Parallel Agents
market_researcher = spawn_agent("market_researcher")
data_analyst = spawn_agent("data_analyst",
skills=["language-ranking-chart"])
# Execute in parallel
market_data = market_researcher.research(correct_name)
charts = data_analyst.create_charts(market_data)
# Phase 3: Report Compilation
report_compiler = spawn_agent("report_compiler")
final_report = report_compiler.compile(
product_name=correct_name,
market_data=market_data,
charts=charts
)
return {
"product_name": correct_name,
"market_data": market_data,
"charts": charts,
"report": final_report
}
| Output | File | Agent |
|---|---|---|
| Market research data | *_market_research_report.md | market_researcher |
| Growth chart | market_growth_chart.png | data_analyst |
| Competitive landscape | competitive_landscape.png | data_analyst |
| Target audience | target_audience.png | data_analyst |
| SWOT analysis | swot_analysis.png | data_analyst |
| Final report | *_Final_Report.md | report_compiler |
./sandbox/output_file/
├── TigrimOS_Marketing_Research_Report.md
├── market_growth_chart.png
├── competitive_landscape.png
├── target_audience.png
├── swot_analysis.png
└── [data_analyst_outputs.json]