PluginBench
Skill
Official
Pass
Audit score 90

result

parallel-web/parallel-agent-skills

Retrieve completed research task results by run ID using Parallel CLI.

What is result?

Fetches and displays results from a completed Parallel research task using its run ID. Use this after a research task has finished processing to view the organized findings.

  • Polls research task status by run ID
  • Returns results in JSON format
  • Presents findings in clear, organized output
  • Handles missing CLI with setup guidance

How to install result

npx skills add https://github.com/parallel-web/parallel-agent-skills --skill result
Prerequisites
  • Parallel CLI installed (or run /parallel:parallel-cli-setup if missing)
  • Valid run ID from a submitted research task
Claude Code
Cursor
Windsurf
Cline

How to use result

  1. 1.Obtain the run ID from your submitted research task
  2. 2.Invoke the skill with the run ID as argument
  3. 3.Wait for the CLI to poll and retrieve results
  4. 4.Review the formatted output with your findings

Use cases

Good for
  • Retrieve research findings after a long-running task completes
  • Check status and results of a previously submitted research job
  • Export research data in JSON format for further processing
  • Verify task completion before proceeding with next steps
Who it's for
  • Researchers using Parallel for automated research tasks
  • Developers integrating Parallel research into workflows
  • Teams managing multiple concurrent research jobs

result FAQ

What is a run ID?

A run ID is the unique identifier assigned to a research task when you submit it to Parallel. Use this ID to retrieve results later.

What format are the results returned in?

Results are returned in JSON format, which is then presented in a clear, organized display.

What if I get a CLI not found error?

Run the command /parallel:parallel-cli-setup to install or configure the Parallel CLI, then try again.

Can I retrieve results from old tasks?

Yes, as long as you have the run ID from the original task submission, you can retrieve its results.

Full instructions (SKILL.md)

Source of truth, from parallel-web/parallel-agent-skills.


name: result description: Get completed research task result by run ID user-invocable: true argument-hint: <run_id> allowed-tools: Bash(parallel-cli:*) metadata: author: parallel

Get Research Result

Run ID: $ARGUMENTS

parallel-cli research poll "$ARGUMENTS" --json

Present results in a clear, organized format.

If CLI not found, tell user to run /parallel:parallel-cli-setup.