Install
$ agentstack add skill-sofianbll-pplx-web-query-perplexity-webui-search ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Perplexity WebUI Search
Overview
This skill runs the bundled Playwright script against Perplexity's web UI and returns the copied Markdown answer. It is a browser automation path, not an official Perplexity API client.
Use And Avoid
Use for explicit Perplexity tasks:
- Search Perplexity directly.
- Use Perplexity for research instead of generic webpage fetching.
- Retrieve or save a Perplexity answer through a visible browser session.
Do not use for:
- The user asks for a normal web fetch, URL extraction, or documentation lookup.
- The environment cannot open Chromium.
- Network access to
https://www.perplexity.ai/is unavailable. - The task requires an official Perplexity API.
Workflow
- Work from this skill directory, wherever it is installed.
- If dependencies are missing, run
npm install. - If Chromium is missing, run
npx playwright install chromium. - Run the search command with the user query and an output path.
- Read the output file before answering the user.
- If the browser is blocked, times out, copies an empty response, or the UI changes, say that clearly and do not claim Perplexity was searched.
Command
npm run search -- "" ./result.md
The command opens visible Chromium, submits the query, waits for the final Copy button, writes the copied answer to the output file, and prints the answer to stdout. Progress logs go to stderr.
Output Handling
- Default output path:
result.md. - Prefer a task-specific path such as
./tmp/perplexity-result.mdwhen the user asks to preserve output. result.mdis generated output and should not be committed.- Read the output file and summarize the answer; do not just report that the command ran.
Response Pattern
- Success: summarize the Perplexity answer and include relevant citations copied in the output.
- Failure: state
Perplexity search did not complete:. Do not invent an answer or fall back to generic web search unless the user asks.
Common Mistakes
- Running from another directory without installing dependencies in this skill directory.
- Reporting success from stdout alone without reading the output file.
- Committing generated files such as
result.mdor files undertmp/. - Treating this as an official Perplexity API client.
Troubleshooting
If setup or runtime fails, read [references/troubleshooting.md](references/troubleshooting.md) and report the concrete failure. Do not claim Perplexity was searched unless the command produced a non-empty answer.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sofianbll
- Source: sofianbll/pplx-web-query
- License: MIT
- Homepage: https://sofian-bll.github.io/pplx-web-query/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.