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

polpo-agents波尔波特工

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

公开资料未说明

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Polpo Agent Design

Agent Configuration

An agent is defined by its AgentConfig. Create via API or dashboard.

{
  name: "coder",                              // unique identifier
  role: "Senior Full-Stack Engineer",         // human-readable role description
  model: "xai/grok-4-fast",                   // provider/model format
  allowedTools: ["bash", "read", "write", "edit", "glob", "grep"],
  systemPrompt: "You are a senior engineer. Write clean, tested code.",
  maxTurns: 150,                              // max LLM turns per session
  maxConcurrency: 3,                          // max parallel tasks
  reasoning: "medium",                        // thinking depth
}

Model Selection

Format: provider/model. Choose based on task complexity and cost.

Use CaseRecommendedWhy
Fast coding tasksxai/grok-4-fastFast, capable, good tool use
Complex reasoninganthropic/claude-sonnet-4Best reasoning
Budget tasksxai/grok-3-mini-fastCheap, fast
Vision tasksopenai/gpt-4oStrong multimodal

Browse all available models at polpo.sh/api/gateway/models (JSON) or see docs.polpo.sh/developers/reference/providers for a guide.

Tools

Tools define what an agent can do. Assign only what's needed — follow the principle of least privilege. Every tool must be explicitly listed in allowedTools to be available.

Coding Tools

  • bash — Execute shell commands (sandboxed)
  • read — Read files
  • write — Create/overwrite files
  • edit — Search-and-replace in files
  • glob — Find files by pattern
  • grep — Search file contents

Additional Tools

Polpo supports additional tool categories (integration, email, image generation, and more). Each must be explicitly assigned in allowedTools — agents have no tools by default beyond what you configure.

For the complete tool catalog, see docs.polpo.sh/docs/agents/tools.

Security Notes

  • All tool execution runs inside an isolated sandbox — agents cannot access the host system or other projects.
  • vault_get only returns credentials explicitly assigned to that agent. Agents cannot access other agents' credentials.
  • email_* tools enforce emailAllowedDomains — restrict which domains an agent can email.
  • Follow the principle of least privilege — only assign tools an agent actually needs for its role.

System Prompt

The system prompt defines the agent's behavior. Keep it focused.

You are {name}, a {role}.

{Core instructions — what to do, how to do it}

{Constraints — what NOT to do}

{Output format preferences}

Good system prompt:

You are a code reviewer. Review code for bugs, security issues, and performance problems.
Be concise. Flag critical issues first. Suggest fixes with code examples.
Never approve code with SQL injection or XSS vulnerabilities.

Bad system prompt: Overly long, generic instructions that Claude already knows.

Identity

For agents that interact with humans (email, chat, social), define an identity:

identity: {
  displayName: "Alex",
  title: "Engineering Lead",
  bio: "I help teams ship reliable software.",
  tone: "Direct, technical, no fluff",
  personality: "Pragmatic problem-solver",
  responsibilities: [
    { area: "Code review", description: "Review all PRs", priority: "critical" },
    { area: "Architecture", description: "System design decisions", priority: "high" },
  ],
  socials: { github: "alex-eng", twitter: "@alex_ships" },
}

For more on agent identity, see docs.polpo.sh/docs/agents/definition.

Memory

Memory persists across sessions. Two levels:

Project Memory

Shared by all agents. Use for project context, conventions, architecture decisions.

# Project Context
- Next.js 15 + TypeScript + Tailwind
- PostgreSQL via Drizzle ORM
- Deploy on Vercel

# Conventions
- Use Vitest for tests
- Prefer server components
- No default exports (except pages)

Agent Memory

Private to one agent. Auto-accumulated as the agent works. Use for agent-specific learnings.

# Learned Preferences
- User prefers functional style over classes
- Always run tests before committing
- Use pnpm, not npm

Memory is read by the agent at the start of each session. Update via API:

  • PUT /v1/memory — project memory
  • PUT /v1/memory/agent/{name} — agent memory

For more on memory, see docs.polpo.sh/docs/agents/memory.

Vault

Store service credentials that agents access at runtime. Credentials are scoped per-agent — an agent can only access entries explicitly assigned to it.

// Store credentials
POST /v1/vault/entries
{
  agent: "emailer",
  service: "gmail",
  type: "smtp",
  credentials: { host: "smtp.gmail.com", port: 587, user: "...", pass: "..." }
}

// Agent uses vault_get("gmail") at runtime — credentials never in system prompt

Credential types: smtp, imap, oauth, api_key, login, custom.

For more on vault, see docs.polpo.sh/docs/agents/vault.

Agent Patterns

See references/patterns.md for multi-agent architectures, specialization patterns, and reporting hierarchies.

Need Help Designing Your Agent?

Not sure which tools, model, or configuration your agent needs? Ask your coding agent:

"I want to create a Polpo agent that [describe what it should do]. Help me choose the right model, tools, and system prompt. Use the polpo-agents skill for reference."

Your coding agent will help you pick the right configuration based on your use case.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.81%
按下载量换算27

Claude

30.45%
按下载量换算25

Cursor

19.75%
按下载量换算16

Gemini CLI

8.28%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills