skills/perplexity/SKILL.md
AI-powered search and chat with Perplexity. Use when you need to: (1) get AI responses with real-time web search, or (2) answer questions with up-to-date information.
npx skillsauth add refly-ai/refly-skills perplexityInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
AI-powered search and chat with Perplexity. Use when you need to: (1) get AI responses with real-time web search, or (2) answer questions with up-to-date information.
Provide input as JSON:
{
"query": "Your search query or question"
}
refly skill run --id skpi-sww12wxvy9zbfr1wwx35gybm --input '{
"query": "Your question here"
}'
refly workflow status c-xz42o3itzw4bdnnhoovb16dv --watch --interval 10000
refly workflow runs c-xz42o3itzw4bdnnhoovb16dv --limit 1
Look for runId in the output (format: we-xxx).
refly workflow detail <RUN_ID>
Look for resultId in the skillResponse node (format: ar-xxx).
refly workflow result <RESULT_ID> --include-messages --raw
The AI response is in .payload.messages[] where type is "ai". Extract with:
refly workflow result <RESULT_ID> --include-messages --raw | jq -r '.payload.messages[] | select(.type=="ai") | .content'
RUN_ID=$(refly workflow runs c-xz42o3itzw4bdnnhoovb16dv --limit 1 | jq -r '.payload.runs[0].runId') && \
RESULT_ID=$(refly workflow detail "$RUN_ID" | jq -r '.payload.nodes[] | select(.nodeType=="skillResponse") | .resultId') && \
refly workflow result "$RESULT_ID" --include-messages --raw | jq -r '.payload.messages[] | select(.type=="ai") | .content'
| ID Type | Format | How to Get | Used For |
|---------|--------|------------|----------|
| workflowId | c-xxx | In SKILL.md frontmatter | workflow status, workflow runs |
| runId | we-xxx | From workflow runs or workflow status output | workflow detail, workflow toolcalls |
| resultId | ar-xxx | From workflow detail → nodes[].resultId | workflow result |
toolcalls with .output.preview# WRONG - This will fail!
refly workflow toolcalls <RUN_ID> --latest | jq -r '.payload.toolCalls[-1].output.preview | fromjson | .data.response'
Why it fails:
.output.preview may be null → jq error: null (null) only strings can be parsed.output.preview may be truncated → jq error: Unfinished string at EOFAlways use this instead:
refly workflow result <RESULT_ID> --include-messages --raw | jq -r '.payload.messages[] | select(.type=="ai") | .content'
data-ai
Integrate with Zoom for video meetings. Use when you need to: (1) schedule Zoom meetings, (2) create instant meetings, or (3) manage meeting details and invitations programmatically.
data-ai
Integrate with YouTube for video management. Use when you need to: (1) upload videos to YouTube, (2) manage channel content, or (3) retrieve video analytics and insights.
content-media
YouTube视频分析工具,提取视频数据和表现指标,分析内容策略、受众互动和增长机会
data-ai
Generate AI videos using Alibaba Wan 2.6 video models. Use when you need to: (1) create videos from text descriptions, (2) animate static images into videos, or (3) transform and enhance existing videos with AI style transfer.