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

pi-extension-intakepi 扩展摄入量

Agent Skill

pi-extension-intake 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

329

周安装

14

GitHub Stars

公开资料未说明

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sjunepark/custom-skills --skill pi-extension-intake

简介

pi-extension-intake 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于围绕仓库状态、代码变更或协作事项进行整理和分析的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围。
  • 建议结合原始 README 核验具体用法,注意是否会触发命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Pi Extension Intake

Help the user choose the right ownership model for a third-party pi extension, then give a concrete intake plan that matches their control, maintenance, and security goals.

Default bias: if the extension is small, weakly maintained, likely to be customized, or raises trust concerns, prefer vendoring the source into the user's repo over patching a published package.

Goals

Do three things well:

  1. Identify the real dependency and trust boundary.
  2. Recommend the right strategy: direct dependency, patch-package, internal fork, or vendored copy.
  3. If the user wants to adopt it, produce a practical import and hardening plan.

Core idea

A copied wrapper is not the same as owned behavior. If an extension shells out to another CLI, downloads binaries, auto-installs npm packages, or fetches code at runtime, that downstream tool is part of the real trust boundary and must be analyzed explicitly.

Workflow

  1. Clarify the user's goal.
  • Determine whether the user cares most about security review, local control, low maintenance, easy upstream updates, or organization-wide reuse.
  • Determine whether they want advice only or want the extension imported into their repo.
  1. Inspect the extension before recommending a strategy.
  • Read the package manifest and extension entry point.
  • Check how the extension is loaded by pi.
  • Identify runtime dependencies, shell-outs, process-spawn paths, package install or lifecycle scripts, downloads, auto-install prompts, browser/binary bootstrap steps, and remote network behavior.
  • Distinguish the visible package from the true dependency chain.
  1. Choose the ownership model.
  • Vendor into the repo when the code is small, lightly maintained, customization is likely, or trust and auditability matter more than painless upgrades.
  • Internal fork when multiple repos or teammates need the same extension and you still want a structured upstream sync path.
  • patch-package only when you intentionally still want the upstream package, the diff is small, and the patch is likely temporary.
  • Direct dependency only when the upstream is healthy, trusted, easy to update, and you do not need deep control.
  1. Explain the tradeoff plainly.
  • State what is gained and what is lost.
  • Be explicit about whether copying the repo actually removes the risky dependency, or only copies a thin wrapper around it.
  1. If the user wants to adopt it, give the smallest safe plan.
  • Prefer local, repo-owned extension files under the project's extensions/ directory or equivalent local source path.
  • Preserve provenance and license information.
  • Remove or gate self-install and network-install behavior.
  • Pin, replace, or separately vendor any runtime dependency that remains in the trust boundary.
  • Add a short maintenance note describing the upstream source and local changes.

Decision guide

Use this default decision order:

Recommend vendoring when most of these are true

  • The extension is small or structurally simple.
  • Upstream is niche, weakly maintained, or unlikely to review your fixes quickly.
  • You already expect to edit the code.
  • The extension fits your repo's local customization needs.
  • You want code review, security review, and refactoring to happen in your own repo.

Recommend an internal fork when most of these are true

  • The extension will be shared across repos or teams.
  • You want a stable canonical internal version.
  • You may occasionally merge upstream fixes.
  • You want clearer provenance than ad hoc copy-paste, but still want ownership.

Recommend patch-package only when all of these are true

  • You still want to install the upstream package from npm or another package source.
  • Your change is small.
  • The package is maintained enough that staying close to upstream is valuable.
  • The patch is expected to be temporary or low-risk to rebase.

Recommend against patch-package when any of these are true

  • The user's main goal is to remove trust in the upstream package.
  • The package is poorly maintained.
  • The extension will need ongoing product-specific changes.
  • The real runtime behavior lives in another CLI or binary that the patch does not eliminate.

Pi-specific review checklist

When inspecting a pi extension, explicitly check for:

  • pi.exec(...) calls and any other process-spawn paths such as child_process, spawn, execFile, execa, Bun process helpers, or wrapper scripts that shell out to external tools
  • prompts, package lifecycle hooks, or setup scripts that install npm packages, global tools, or other runtime dependencies
  • browser or binary download steps
  • dynamic network fetches
  • cleanup hooks that assume external tools exist
  • broad passthrough commands that expose a large external CLI surface area
  • peer dependencies that reveal pi/TUI/typebox coupling

If the extension wraps a separate CLI, say so clearly: the wrapper may be easy to vendor, but the wrapped CLI is still the real operational dependency.

Import checklist for vendoring

When the recommendation is to vendor the extension, follow this checklist:

  1. Copy only the source files you actually need.
  • Prefer the extension entry point and any referenced local resources.
  • Do not import unrelated docs, plans, or tooling unless they materially help maintainability.
  1. Preserve provenance.
  • Add a short header comment or nearby note with:

- upstream repo URL - upstream commit or release - import date - original license - summary of local modifications

  1. Remove hidden trust paths.
  • Delete or disable auto-install flows.
  • Replace silent downloads with explicit operator steps.
  • Require known local binaries or a separately reviewed internal package.
  1. Reassess the remaining dependency boundary.
  • If the extension still depends on an external CLI or browser stack, either:

- accept and pin that dependency explicitly, - fork or vendor it too, or - replace it with a trusted implementation.

  1. Adapt to local conventions.
  • Rename the extension if needed.
  • Match repository structure, logging, error handling, and docs.
  • Keep the implementation simple and obvious.
  1. Add minimal verification.
  • Confirm pi can load the local extension.
  • Run a smoke test for the main user path.
  • Document manual setup steps if the runtime dependency remains external.

Response shape

When advising on a third-party pi extension, prefer this structure:

Recommendation

  • Name the preferred strategy.

Why

  • Summarize the deciding factors.
  • Call out the real trust boundary.

What you gain / what you lose

  • Give the concrete tradeoff.

Adoption plan

  • List the next implementation steps.

Risk notes

  • Mention any remaining external binaries, downloads, or maintenance burden.

Guardrails

  • Do not imply that vendoring a thin wrapper eliminates the risk of the wrapped tool.
  • Do not recommend patch-package as a security solution when the user wants ownership and auditability.
  • Do not remove intentional functionality without saying what behavior is being dropped.
  • Do not ignore licenses when copying code.
  • Do not overcomplicate small extensions with heavy process unless the user asked for it.

Example triggers

  • "I want to copy this pi extension into our repo. Should I vendor it or use patch-package?"
  • "This extension is tiny but it auto-installs another npm package. What's the real risk here?"
  • "We keep manually copying third-party pi extensions. Is there a cleaner workflow?"
  • "Please import this extension locally and strip out self-install behavior."
  • "This repo is not well maintained. Should we fork it, patch it, or just own the code?"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.29%
按下载量换算45

Claude

30.77%
按下载量换算35

Cursor

18.68%
按下载量换算21

Gemini CLI

8.83%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills