Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

pplx-sdk-devpplx SDK DEV 搜索

Agent Skill

pplx-sdk-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

420

周安装

17

GitHub Stars

公开资料未说明

下载量

132
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pplx-sdk-dev(pplx SDK DEV 搜索)
来源仓库:https://github.com/pv-udpv/pplx-sdk
仓库路径:skills/pplx-sdk-dev
安装命令:
npx skills add https://github.com/pv-udpv/pplx-sdk --skill pplx-sdk-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pv-udpv/pplx-sdk --skill pplx-sdk-dev

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果时使用。

  • 适用于 pplx SDK DEV 搜索相关的信息查询与整理,可结合来源仓库进一步核验用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议检查是否会触发联网、命令执行或文件读写,确保操作边界清晰。
  • pplx-sdk-dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

pplx-sdk Development Meta-Skill

This meta-skill orchestrates all project-specific and community skills for pplx-sdk development. Activate this skill for any development task — it coordinates the right sub-skills automatically.

When to use

Use this skill for any development task on the pplx-sdk project: implementing features, fixing bugs, reviewing code, writing tests, or scaffolding new modules.

Subagent Architecture

Each skill delegates to a specialist subagent via context: fork. Subagents run in isolated context windows with restricted tool access.

┌───────────────────────────────────────────────────────┐
│                  orchestrator                         │
│  (meta-orchestrator, delegates subtasks)              │
├───────────────────────────────────────────────────────┤
│                                                       │
│  ┌──────────────┐  ┌──────────────┐                  │
│  │ code-reviewer │  │ test-runner   │                  │
│  │ (read-only)   │  │ (run & fix)   │                  │
│  │ view,grep,    │  │ bash,view,    │                  │
│  │ glob,bash     │  │ edit,grep     │                  │
│  └──────────────┘  └──────────────┘                  │
│                                                       │
│  ┌──────────────┐  ┌──────────────┐                  │
│  │ scaffolder    │  │ sse-expert    │                  │
│  │ (create new)  │  │ (streaming)   │                  │
│  │ view,edit,    │  │ view,edit,    │                  │
│  │ bash,grep     │  │ bash,grep     │                  │
│  └──────────────┘  └──────────────┘                  │
│                                                       │
│  ┌──────────────┐  ┌──────────────┐                  │
│  │ reverse-     │  │ architect     │                  │
│  │  engineer    │  │ (diagrams &   │                  │
│  │ (API disc.)  │  │  design)      │                  │
│  │ view,edit,   │  │ view,edit,    │                  │
│  │ bash,grep    │  │ bash,grep     │                  │
│  └──────────────┘  └──────────────┘                  │
│                                                       │
│  ┌──────────────┐  ┌──────────────┐                  │
│  │ spa-expert   │  │ codegraph     │                  │
│  │ (SPA RE,     │  │ (AST, deps,   │                  │
│  │  CDP, ext.)  │  │  knowledge)   │                  │
│  │ view,edit,   │  │ view,edit,    │                  │
│  │ bash,grep    │  │ bash,grep     │                  │
│  └──────────────┘  └──────────────┘                  │
│                                                       │
└───────────────────────────────────────────────────────┘

Subagent Definitions (.claude/agents/)

SubagentRoleToolsIsolation
orchestratorDecomposes tasks, coordinates othersview, bash, grep, globfork
code-reviewerRead-only architecture reviewview, grep, glob, bashfork
test-runnerRun tests, diagnose, fix failuresbash, view, edit, grep, globfork
scaffolderCreate new modules and filesview, edit, bash, grep, globfork
sse-expertSSE streaming implementationview, edit, bash, grep, globfork
reverse-engineerAPI discovery, traffic analysisview, edit, bash, grep, globfork
architectArchitecture diagrams, design validationview, edit, bash, grep, globfork
spa-expertSPA RE: React/Vite/Workbox/CDP, extensionsview, edit, bash, grep, globfork
codegraphAST parsing (Python + JS/TS), dep graphs, knowledge graphsview, edit, bash, grep, globfork

Skill Dependencies

This meta-skill composes the following skills. Apply them in the order shown based on the task type.

Project-Specific Skills (repo root)

SkillPathSubagentPurpose
code-reviewcode-review/SKILL.mdcode-reviewerArchitecture compliance and conventions
test-fixtest-fix/SKILL.mdtest-runnerDiagnose and fix failing tests
scaffold-modulescaffold-module/SKILL.mdscaffolderCreate new modules per layered architecture
sse-streamingsse-streaming/SKILL.mdsse-expertSSE protocol and streaming patterns
reverse-engineerreverse-engineer/SKILL.mdreverse-engineerAPI discovery from browser traffic
architecturearchitecture/SKILL.mdarchitectSystem diagrams and design visualization
spa-reverse-engineerspa-reverse-engineer/SKILL.mdspa-expertReact/Vite/Workbox/CDP webapp RE
code-analysiscode-analysis/SKILL.mdcodegraphAST parsing (Python + JS/TS), dependency graphs, knowledge graphs

Community Skills (installed via npx skills)

SkillSourcePurpose
python-testing-patternswshobson/agentspytest patterns, fixtures, mocking
python-type-safetywshobson/agentsType annotations, mypy strict mode
python-error-handlingwshobson/agentsException hierarchies, error patterns
python-design-patternswshobson/agentsProtocol pattern, DI, factory
api-design-principleswshobson/agentsREST API design, endpoint conventions
async-python-patternswshobson/agentsasync/await, concurrency patterns
skill-creatoranthropics/skillsGuide for creating new skills
mcp-builderanthropics/skillsBuild MCP servers for tool integration
webapp-testinganthropics/skillsTest web apps with Playwright
ast-grepast-grep/agent-skillStructural code search via AST patterns
knowledge-graph-builderdaffy0208/ai-dev-standardsKnowledge graph design and entity relationships
steeringnahisaho/codegraphmcpserverCodeGraph MCP orchestration and traceability

Workflow: New Feature

[plan] → [explore] → [research] → [implement] → [test] → [review] → [done]
  1. Planorchestrator decomposes the task, identifies target layer
  2. Explorecode-reviewer (read-only fork) analyzes existing code and dependencies
  3. Researchreverse-engineer or sse-expert (fork) studies API behavior, reads docs, gathers context needed before implementation
  4. Scaffoldscaffolder (fork) creates files from templates
  5. Implementsse-expert or scaffolder (fork) writes the code
  6. Testtest-runner (fork) runs pytest, fixes failures
  7. Reviewcode-reviewer (fork) validates architecture compliance
  8. Verifyruff check --fix. && ruff format. && mypy pplx_sdk/ && pytest -v

Workflow: Bug Fix

  1. Reproducetest-runner (fork) runs failing test with -v
  2. Researchcode-reviewer (fork) traces the code path, reads related modules and tests
  3. Diagnosetest-runner reads traceback, identifies root cause
  4. Fixtest-runner edits source/test, applies python-error-handling patterns
  5. Verifytest-runner runs full suite

Workflow: SSE/Streaming Work

  1. Researchsse-expert (fork) reviews SSE protocol spec, existing transport code, and API response patterns
  2. Implementsse-expert writes streaming code, applies async-python-patterns
  3. Testtest-runner (fork) runs tests with mock SSE responses
  4. Reviewcode-reviewer (fork) validates transport layer compliance

Workflow: API Discovery (Reverse Engineering)

[capture] → [research] → [document] → [scaffold] → [test] → [review]
  1. Capturereverse-engineer (fork) analyzes cURL/traffic from perplexity.ai DevTools
  2. Researchreverse-engineer studies request/response patterns, tests variations, maps edge cases and auth flows
  3. Documentreverse-engineer writes endpoint documentation with field types and examples
  4. Scaffoldscaffolder (fork) creates Pydantic models and service methods from schema
  5. Implementsse-expert or scaffolder implements transport and domain code
  6. Testtest-runner (fork) validates with mock responses matching discovered schemas
  7. Reviewcode-reviewer (fork) ensures architecture compliance

Workflow: API Endpoint

  1. Researchcode-reviewer (fork) studies existing endpoints and api-design-principles patterns
  2. Designcode-reviewer reviews proposed schema against REST conventions
  3. Implementscaffolder (fork) creates FastAPI endpoint
  4. Testtest-runner (fork) validates with pytest-httpx mocks

Workflow: Architecture Design & Visualization

[analyze] → [research] → [diagram] → [validate] → [document]
  1. Analyzearchitect (fork) reads existing code, maps imports and layer dependencies
  2. Researcharchitect studies the components involved and their relationships
  3. Diagramarchitect produces Mermaid diagrams (layer map, sequence, class hierarchy, state machine)
  4. Validatearchitect checks for circular deps, upward imports, protocol conformance
  5. Documentarchitect embeds diagrams in README, docs, or PR descriptions

Workflow: SPA Reverse Engineering

[detect] → [research] → [intercept] → [extract] → [code-graph] → [document] → [implement]
  1. Detectspa-expert (fork) identifies the SPA stack (React version, bundler, state management, service workers)
  2. Researchspa-expert studies the SPA internals, React component tree, and network patterns
  3. Interceptspa-expert captures network traffic via CDP, Chrome extension, or DevTools
  4. Extractspa-expert extracts React state shapes, API schemas, and Workbox cache strategies
  5. Code Graphcodegraph (fork) analyzes SPA source code: component tree, import graph, hook chains, TypeScript types; cross-references with spa-expert runtime findings
  6. Documentreverse-engineer + spa-expert map runtime + static discoveries to SDK architecture
  7. Implementscaffolder creates models and services; spa-expert builds tools/extensions

Workflow: Code Analysis & Knowledge Graph

[parse] → [graph] → [analyze] → [report] → [act]
  1. Parsecodegraph (fork) parses source AST: Python via ast module, JavaScript/TypeScript via grep-based import parsing
  2. Graphcodegraph builds dependency graph (module-to-module imports) and knowledge graph (Python: IMPORTS, INHERITS, IMPLEMENTS, CALLS, RAISES; SPA: RENDERS, USES_HOOK, CALLS_API, PROVIDES, CONSUMES)
  3. Analyzecodegraph detects patterns: circular deps, layer violations, dead code, complexity hotspots (Python); barrel file cycles, prop drilling, orphan routes (SPA)
  4. Reportcodegraph produces structured insights report with Mermaid diagrams and actionable findings
  5. Act — Delegate findings: architect updates diagrams, code-reviewer reviews violations, scaffolder fixes gaps, spa-expert cross-references runtime analysis

Project Quick Reference

# Install dependencies
pip install -e ".[dev]"

# Install/update community skills
npx skills add wshobson/agents --skill python-testing-patterns --skill python-type-safety --skill python-error-handling --skill python-design-patterns --skill api-design-principles --skill async-python-patterns --agent github-copilot -y
npx skills add anthropics/skills --skill skill-creator --skill mcp-builder --skill webapp-testing --agent github-copilot -y
npx skills add ast-grep/agent-skill --skill ast-grep --agent github-copilot -y
npx skills add "daffy0208/ai-dev-standards@knowledge-graph-builder" --agent github-copilot -y
npx skills add nahisaho/codegraphmcpserver --skill steering --agent github-copilot -y

# Lint, format, type-check, test
ruff check --fix . && ruff format .
mypy pplx_sdk/ --ignore-missing-imports
pytest tests/ -v --cov=pplx_sdk

# Manage skills
npx skills list          # Show installed skills
npx skills check         # Check for updates
npx skills update        # Update all skills

Architecture Invariants

These rules must never be violated regardless of which sub-skill is active:

  1. Layer dependencies: core/ → shared/ → transport/ → domain/ → client.py (never reverse)
  2. Exception hierarchy: All errors extend PerplexitySDKError
  3. Type annotations: 100% coverage, from __future__ import annotations
  4. Google docstrings: On all public APIs
  5. Protocol pattern: Use typing.Protocol, never ABC

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.34%
按下载量换算49

Claude

29.39%
按下载量换算39

Cursor

19.77%
按下载量换算26

Gemini CLI

8.92%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills