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

polarpolar 搜索

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

1

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/miketromba/polar-cli --skill polar

简介

用于查找、检索和筛选相关信息。polar 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网或文件读写操作。

SKILL.md

Polar CLI

Unofficial CLI for Polar with full API parity. Optimized for both developers and AI agents.

When to use

Use this CLI when you need to:

  • Manage Polar resources (products, customers, subscriptions, orders, etc.)
  • Create or inspect checkouts and checkout links
  • Issue, validate, or manage license keys
  • Ingest events or query usage-based billing meters
  • Set up webhooks
  • Script or automate Polar workflows from the terminal

Install

npm install -g @miketromba/polar-cli

The CLI is also available via npx @miketromba/polar-cli, or install with yarn/pnpm/bun.

Authentication

# Interactive login (token is stored locally)
polar auth login --token <access-token>

# Or set the environment variable (preferred for CI/scripts/agents)
export POLAR_ACCESS_TOKEN=polar_at_xxx

Get an access token at https://polar.sh/settings.

Check auth status:

polar auth status

Command grammar

All commands follow this pattern:

polar <resource> <action> [id] [--flags]

Examples:

polar products list
polar customers get <id>
polar subscriptions create --customer-id <id> --product-id <id>
polar checkouts create --products <product-id>
polar webhooks delete <id> --yes

Run polar --help for all resources. Run polar <resource> --help for actions and examples.

Output formats

The CLI auto-detects the environment:

ContextDefault formatDescription
TTY (interactive)tableHuman-readable columns with color
Piped / non-TTYcompactkey=value one-liners, minimal tokens

Override with -o <format>:

FormatFlagUse case
compact-o compactAI agents, scripting
json-o jsonProgrammatic consumption
jsonl-o jsonlStreaming, jq pipelines
csv-o csvExport, spreadsheets
tsv-o tsvUnix tools (cut, awk)
id-o idPipe IDs to other commands
count-o count"How many?" queries
table-o tableHuman-readable

Parsing compact output

Compact format is optimized for AI agents:

products 1-5/42 page=1
  [1] id=prod_123 name="Pro Plan" isRecurring=true prices=1
  [2] id=prod_456 name="Starter" isRecurring=true prices=1
next: polar products list --page 2 --limit 5

Field selection

polar customers list --fields id,email,name
polar products get <id> --detail    # Full detail view

Common workflows

List and filter resources

polar products list
polar products list --query "Pro" --limit 5
polar customers list --email user@example.com
polar subscriptions list --active --product-id <id>
polar orders list --customer-id <id> --output json

Create resources

polar customers create --email user@example.com --name "Jane Doe"
polar products create --name "Pro Plan" --prices '[{"amount":2999,"currency":"usd","recurringInterval":"month"}]'
polar checkouts create --products <product-id> --customer-email user@example.com
polar discounts create --name "20% Off" --type percentage --amount 20 --duration once
polar webhooks create --url https://example.com/hook --events order.created,subscription.created

Update and delete

polar products update <id> --name "Enterprise Plan"
polar customers update <id> --name "Jane Smith"
polar customers delete <id> --yes    # --yes required for destructive actions

License keys

polar license-keys list
polar license-keys validate --key XXXX-XXXX --organization-id <org-id>
polar license-keys activate --key XXXX-XXXX --organization-id <org-id> --label "Prod Server"

Usage-based billing

polar meters list
polar events ingest --events '[{"name":"api_call","externalCustomerId":"user_123"}]'
polar metrics get --start-date 2025-01-01 --end-date 2025-01-31 --interval month

Pagination

polar products list --limit 50 --page 2
polar products list --first 3         # Shorthand: --limit 3 --page 1
polar products list --all             # Fetch all pages

Pipe patterns

# Get all product IDs
polar products list -o id

# Count active subscriptions
polar subscriptions list --active -o count

# Export customers as JSON
polar customers list --all -o json > customers.json

# Pipe to jq
polar orders list -o jsonl | jq '.totalAmount'

Environment variables

VariablePurpose
POLAR_ACCESS_TOKENAccess token (overrides stored credential)
POLAR_ORGANIZATION_IDDefault organization ID
POLAR_SERVERproduction or sandbox
POLAR_OUTPUTDefault output format

Key global flags

FlagShortDescription
--output <format>-oOutput format
--fields <list>-fComma-separated field selection
--detail-dFull detail view
--org <id>Organization ID override
--yes-ySkip confirmation prompts
--quiet-qData only, no hints or headers
--server <name>-sproduction or sandbox

Resources

For the full list of resources and their operations, see reference.md.

Official Polar documentation

For deeper understanding of Polar platform concepts, API behaviors, scopes, webhook events, or feature guides, fetch the official docs index:

https://polar.sh/docs/llms.txt

This is a machine-readable index of all Polar documentation. Use it when you need to:

  • Understand how a Polar feature works (e.g., usage-based billing, seat-based pricing, trials)
  • Check required API scopes for an operation
  • Look up webhook event payloads and lifecycle
  • Find guides for specific workflows (e.g., checkout sessions, license key validation)
  • Verify API behavior or constraints that the CLI wraps

Fetch the index, find the relevant doc URL, then fetch that page for full details.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

30.75%
按下载量换算23

Claude

30.91%
按下载量换算23

Cursor

19.08%
按下载量换算14

Gemini CLI

9.84%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills