finpeakinc/frevana-skills

amazon-rufus-qa

Use when the user wants Amazon Rufus suggested Q&A pairs for a product through Frevana using the Frevana Chrome Extension session.

First seen Jun 11, 2026

Installation

$ npx skills add finpeakinc/frevana-skills --skill amazon-rufus-qa

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from finpeakinc/frevana-skills · top by installs.

npx skills add finpeakinc/frevana-skills

Browse all from finpeakinc/frevana-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License MIT
Default branch master
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,947 B
  • docs SUMMARY.md 153 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Amazon Rufus Q&A

Extract suggested Amazon Rufus Q&A pairs for a product through the local Frevana daemon and Chrome Extension session.

Purpose

This skill uses the Chrome Extension-backed Frevana MCP tool frevana_ask with fixed provider amazon-rufus-qa.

Inputs:

  • url (required) - full Amazon product page URL containing /dp/<ASIN> or /gp/product/<ASIN>
  • format (optional) - text or json, defaults to text
  • timeout (optional) - Frevana tool timeout in milliseconds, default 180000

Return the Q&A output directly unless the user asks for raw output or a saved file.

What This Skill Needs

  • Amazon product page URL
  • bundled scripts/setup.sh wrapper, which downloads and runs the latest official Frevana setup script
  • Frevana local daemon running after setup, default port 12306
  • Chrome connected through the Frevana Chrome Extension
  • active Amazon login in Chrome
  • curl
  • bash
  • python3

This is a Chrome Extension skill. It uses the local daemon and Chrome Extension session.

Execution Order

  1. Confirm the user provided a full Amazon product page URL.
  2. Do not accept Amazon search pages, home pages, category pages, or bare product names.
  3. Prefer the script over ad hoc frevana call commands.
  4. Let the script run bundled scripts/setup.sh before every Frevana tool call.
  5. If setup reports Chrome disconnected, stop and tell the user to open Chrome, connect the Frevana extension, and retry.
  6. Amazon calls can be slow. If a call errors or times out, report the error and do not immediately retry in the same turn.
  7. Return text output by default. If format is json, return structured JSON with provider, prompt, and answer.
  8. Save output with --output when useful.

Commands

bash <skill-path>/scripts/get_amazon_rufus_qa.sh \
  --url "https://www.amazon.com/dp/B01NBKTPTS"
bash <skill-path>/scripts/get_amazon_rufus_qa.sh \
  --url "https://www.amazon.com/dp/B01NBKTPTS" \
  --format json \
  --output ./out/amazon-rufus-qa.json

Fixed Tool Call Shape

The script calls:

frevana call frevana_ask '<json_args>'

The JSON arguments use this shape:

{
  "provider": "amazon-rufus-qa",
  "prompt": "https://www.amazon.com/dp/B01NBKTPTS",
  "timeout": 180000
}

Always send provider: "amazon-rufus-qa". Do not pass unsupported fields.

Notes

  • Require a product URL containing /dp/<ASIN> or /gp/product/<ASIN>.
  • --format must be text or json; default is text.
  • --timeout must be a positive integer when provided.
  • scripts/setup.sh downloads and executes the latest official setup script from https://raw.githubusercontent.com/FinpeakInc/frevana-cli-releases/refs/heads/main/skills/frevana/scripts/setup.sh.