Run and monitor company research through Primr MCP. Use when the user wants a new research run, asks for status, or needs mode selection help before starting.
Scanned 5/27/2026
Install via CLI
openskills install blisspixel/primr---
name: primr-research
version: "1.1.0"
description: "Run and monitor company research through Primr MCP. Use when the user wants a new research run, asks for status, or needs mode selection help before starting."
metadata:
openclaw:
requires:
bins:
- primr-mcp
env:
- XAI_API_KEY
- GEMINI_API_KEY
os:
- linux
- darwin
- win32
mcp_server: primr
tools:
- estimate_run
- research_company
- check_jobs
- cancel_job
- wait_for_status_change
resources:
- primr://research/modes
- primr://research/status
- primr://output/latest
- primr://output/artifacts
---
# Primr Research Skill
## Conceptual Framework
This skill is a thin orchestrator over Primr MCP.
Use MCP resources to discover current behavior instead of assuming fixed costs, providers, or defaults from the skill text. `full` is the standard end-to-end workflow, `premium` is the higher-depth option, and `scrape` and `deep` are narrower research modes.
Research runs are async jobs. Start the run, then monitor status until terminal. Standard runs often take 35-50 minutes; premium multi-vendor runs can take 75-120 minutes.
## Operational Capabilities
### 1. Select a mode
- Read `primr://research/modes` before advising on mode selection.
- Use `scrape` for first-party reconnaissance.
- Use `deep` when the site is blocked or low-signal.
- Use `full` for the default strategic analysis workflow.
- Use `premium` when the user explicitly wants maximum depth.
### 2. Estimate before execution
Always call `estimate_run` before `research_company`, then state that the run incurs real API cost and wait for explicit user approval.
```text
estimate_run(company_url="https://example.com", mode="full")
```
### 3. Start and monitor the job
After user approval, call `research_company` and pass the approved `max_estimated_cost_usd` when available, then monitor with `wait_for_status_change`, `check_jobs`, or `primr://research/status`. Do not assume the client session will stay attached for the entire run.
```text
research_company(company_name="ExampleCo", company_url="https://example.com", mode="full")
```
### 4. Retrieve results
When the run completes, read `primr://output/latest` and summarize the next sensible action.
## Error Handling
- `job_in_progress`: report the existing run and monitor it instead of starting another.
- `invalid_url` or `ssrf_blocked`: require a valid public URL, or consider `deep` mode.
- `rate_limit_exceeded`: wait for the retry window.
- `api_error`: surface the provider error clearly and recommend retry or diagnostics.
No comments yet. Be the first to comment!