Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

polpopolpo 搜索

Agent Skill

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

总安装

399

周安装

16

GitHub Stars

公开资料未说明

下载量

129
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lumea-labs/polpo-skills --skill polpo

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 可结合关键词、任务场景或来源线索使用。
  • 安装命令:npx skills add https://github.com/lumea-labs/polpo-skills --skill polpo
  • 建议确认权限范围及是否触发联网或文件读写。

SKILL.md

Polpo

Open composable backend for agents with integrated sandbox runtime, tasks and workflows, and AI Gateway. Agents are defined as config, deployed to isolated sandboxes, and called via an OpenAI-compatible API.

Never guess about Polpo internals — use this skill and reference files. When this skill doesn't cover something, follow the lookup chain at the bottom.

Project Filesystem

Every Polpo project lives in a .polpo/ directory. Three separate config files:

.polpo/
├── polpo.json              # Project link config (name, slug, projectId)
├── agents.json             # Agent definitions (array of wrapped configs)
├── teams.json              # Team definitions (array of {name, description})
├── memory.md               # Project-level shared memory (all agents read this)
├── memory/                 # Per-agent memory files
│   └── <agent-name>.md
├── skills/                 # Project-local skill packs
│   └── my-skill/
│       └── SKILL.md
├── playbooks/              # Reusable mission templates (YAML)
├── missions/               # Mission definitions
└── .env.local.example      # Env template (POLPO_API_KEY, POLPO_API_URL)

polpo.json — Project link

Created by polpo create or polpo link. Links the local folder to a cloud project:

{
  "project": "My Project",
  "projectSlug": "k7m2xpg9tn4bqw8e1jrf",
  "projectId": "3d606bce-73a4-49a2-9e6e-72883ecacaa5"
}

agents.json — Agent definitions

Array of wrapped agent configs. Each entry pairs an agent with a team:

[
  {
    "agent": {
      "name": "coder",
      "role": "Senior Engineer",
      "model": "xai/grok-4-fast",
      "systemPrompt": "You are a senior engineer. Write clean, tested code.",
      "allowedTools": ["bash", "read", "write", "edit", "glob", "grep"],
      "reasoning": "medium"
    },
    "teamName": "default"
  }
]

For the complete AgentConfig field reference, read references/agent-config.md.

teams.json — Team definitions

[
  { "name": "default", "description": "Default team" }
]

Core Concepts

ConceptWhat it is
AgentAI entity with model, tools, prompt, identity. Defined in agents.json.
TeamNamed group of agents. Defined in teams.json.
TaskUnit of work assigned to an agent. Status lifecycle, expectations, retry policy.
MissionMulti-task workflow. Can be scheduled (cron), has checkpoints and quality gates.
MemoryPersistent text context. Project-level (memory.md) or agent-level (memory/<name>.md). Auto-injected into system prompt.
VaultEncrypted per-agent credential store. Agents access via vault_get tool.
SkillA SKILL.md file teaching an agent domain knowledge. Injected into system prompt.
ToolA capability an agent can invoke. Must be whitelisted in allowedTools.

Model Selection

Format: provider/model-name.

Use CaseModelWhy
Fast codingxai/grok-4-fastFast, strong tool use
Complex reasoninganthropic/claude-sonnet-4Best reasoning
Budget tasksxai/grok-3-mini-fastCheap, fast
Vision/multimodalopenai/gpt-4oStrong multimodal

Tools

58 tools across 10 categories. Agents have NO tools by default — each must be explicitly listed in allowedTools. Use glob patterns for categories: "browser_*", "email_*".

Coding: bash, read, write, edit, glob, grep Files/HTTP: ls, http_fetch, http_download, register_outcome Documents: pdf_* (4), excel_* (4), docx_* (2) Communication: email_* (8), phone_* (7) Browser: browser_* (17 — full Playwright automation) Media: image_generate, image_analyze, video_generate, audio_transcribe, audio_speak Search: search_web, search_find_similar Agent systems: vault_get, vault_list, memory_* (4)

For the complete tool catalog with descriptions, read references/tools.md.

System Prompt

Keep it focused — Claude is already smart.

You are {name}, a {role}.
{Core instructions — what to do, how to approach it}
{Constraints — what NOT to do}
{Output format if relevant}

CLI Commands

CommandWhat it does
polpo loginAuthenticate (device-code browser flow)
polpo logoutSign out
polpo createInteractive wizard: create project + scaffold.polpo/
polpo link --project-id <uuid>Bind current directory to existing project
polpo deployPush.polpo/ to the cloud
polpo install --client <agents>Install Polpo skills for coding agents (auth + skills)
polpo statusDeployment status
polpo logsCloud execution logs
polpo modelsList available models
polpo byokBring-your-own-key for LLM providers
polpo projectsList/manage projects
polpo orgsOrganization management
polpo whoamiShow authenticated user
polpo updateSelf-update CLI

Deployment Flow

  1. Edit .polpo/agents.json (agent definitions)
  2. Edit .polpo/teams.json (team structure)
  3. polpo deploy → validates + pushes to cloud
  4. Cloud provisions isolated sandbox + per-project database
  5. Call agents via POST {slug}.polpo.cloud/v1/chat/completions
# One-time setup
polpo login
polpo link --project-id <uuid>

# Edit → deploy cycle
vim .polpo/agents.json
polpo deploy

Calling Agents

API is OpenAI-compatible. Two modes:

Agent-direct (specify which agent):

curl https://{slug}.polpo.cloud/v1/chat/completions \
  -H "Authorization: Bearer $POLPO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "polpo", "agent": "coder", "stream": true,
        "messages": [{"role":"user","content":"Hello"}] }'

Orchestrator (let Polpo route to the right agent): omit the "agent" field.

Detailed References

Read only when you need depth on a specific topic:

Information Lookup Chain

When this skill doesn't answer:

  1. Search the source code first — grep/read in the Polpo OSS repo. Core types: packages/core/src/types.ts. Tools: packages/tools/src/. Routes: packages/server/src/routes/. CLI: packages/cli/src/commands/.
  2. Check docs.polpo.sh only if source doesn't answer — crawl structure first (/docs/, /api-reference/), then follow relevant links.
  3. Never guess about Polpo internals. If unsure, say so.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.61%
按下载量换算43

Claude

32.6%
按下载量换算42

Cursor

19.44%
按下载量换算25

Gemini CLI

9.22%
按下载量换算12

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills