solution-researcherlisted
Install: claude install-skill alo-exp/multai
# Solution Research Skill
This skill orchestrates a full solution research workflow: build prompt, run 7 AIs,
consolidate results, enrich domain knowledge, and optionally update the comparison
matrix. Follow the phases below in order.
---
## Phase 0 — Extract Inputs
Extract from the user's request:
- **Primary URL** — the product's main website (required)
- **Scope context** — one-line description of what the product does (required)
- **Additional URLs** *(optional)* — docs, API reference, changelog, etc.
- **GitHub / repository URL** *(optional)* — for open-source products
- **Domain** *(optional)* — e.g., `devops-platforms`, `project-management`, `security-tools`
- **Research depth** — if the user includes **`deep`**, set `MODE = DEEP`. Otherwise `MODE = REGULAR`.
If Primary URL or Scope context is missing, ask the user before proceeding.
If the user doesn't specify a domain, try to infer from the scope context. Check if `domains/{domain}.md` exists.
---
## Phase 1 — Build Prompt
### Step 1: Load prompt template
Read `skills/solution-researcher/prompt-template.md`. The template contains a fenced code block with the raw prompt. Extract the prompt text from inside the code fence (between ``` markers).
### Step 2: Fill placeholders
Replace these placeholders in the extracted prompt:
- `[PRIMARY_URL]` → the product's URL
- `[SCOPE_CONTEXT]` → one-line product description
- `[ADDITIONAL_URLS]` → comma-separated extra URLs (or remove the line if none)
- `[GITHUB_URL]`