Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

paw-ps-product-package-assemblerPaw PS 产品包装组装程序

Agent Skill

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

总安装

465

周安装

19

GitHub Stars

25

下载量

149
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:paw-ps-product-package-assembler(Paw PS 产品包装组装程序)
来源仓库:https://github.com/pawbytes/skill-suites
仓库路径:skills/paw-ps-product-package-assembler
安装命令:
npx skills add https://github.com/pawbytes/skill-suites --skill paw-ps-product-package-assembler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pawbytes/skill-suites --skill paw-ps-product-package-assembler

简介

paw-ps-product-package-assembler 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中按关键词或任务场景获取结果。
  • 通过 npx skills add 命令从 pawbytes/skill-suites 仓库安装。
  • 使用前应确认权限、维护状态及是否涉及网络访问或数据处理。
  • 建议参考原始 README 了解功能细节和使用方式。

SKILL.md

Product Package Assembler

Overview

This workflow bundles product artifacts from the execution phase into a coherent, production-ready package. It ensures outputs feel like one unified product, not scattered drafts, by gathering executor outputs, verifying completeness against product-type requirements, organizing into a structured bundle, and generating a comprehensive manifest.

Args: Accepts --headless / -H for non-interactive execution.

Output: Packaged product bundle with organized directory structure, completeness report, and packaging manifest.

The Non-Negotiable: Must ensure outputs feel like one product, not scattered drafts.

On Activation

Load available config from {project-root}/.pawbytes/config/config.yaml and {project-root}/.pawbytes/config/config.user.yaml (root level and ps section). If config is missing, let the user know paw-ps-setup can configure the module at any time. Resolve:

  • {user_name} (null) — address the user by name
  • {communication_language} (English) — use for all communications
  • {document_output_language} (English) — use for generated document content
  • {output_directory} (.pawbytes/prodig-suites) — base output path

Load shared memory from {project-root}/.pawbytes/prodig-suites/index.md. Load output standards from {project-root}/.pawbytes/prodig-suites/output-standards.md.

Product context resolution: Identify the active product from memory or accept a product slug as argument. The product workspace is expected at .pawbytes/prodig-suites/products/{product-slug}/. If no product can be resolved, ask the user.

If --headless or -H is passed, run the full pipeline without interaction: gather artifacts, check completeness, organize bundle, generate manifest.

Otherwise, greet the user, confirm the target product, and proceed through the stages below.

Pipeline

This workflow progresses through four stages. Each stage updates the packaging status file using the document-as-cache pattern for compaction survival.

StagePurposeReference
1. Gather ArtifactsCollect all execution artifacts from executorsLoad ./references/01-gather-artifacts.md
2. Check CompletenessVerify against product-type requirementsLoad ./references/02-check-completeness.md
3. Organize BundleStructure into coherent packageLoad ./references/03-organize-bundle.md
4. Generate ManifestCreate package manifest and notesLoad ./references/04-generate-manifest.md

Progression: Each stage updates packaging-status.md with its results before loading the next stage. If interrupted, resume from the last completed stage by reading packaging-status.md.

Packaging Status File

All progress is written to {project-root}/.pawbytes/prodig-suites/products/{product-slug}/packaging-status.md. This file is both the output artifact and the recovery cache.

---
product: '{product-slug}'
status: 'in-progress'  # pending | in-progress | complete | incomplete
current_stage: '01-gather-artifacts'
created: 'ISO-8601'
updated: 'ISO-8601'
artifacts_found: 0
artifacts_packaged: 0
missing_items: []
---

Artifact Sources

Artifacts are collected from executor outputs:

SourceContainsManifest File
Discovery agentsResearch reports, briefs, specsdiscovery-manifest.json
StrategistStrategy documents, plansstrategy-manifest.json
Executor agentsContent, code, designs, mediaexecutor-manifest.json
Synthesis workflowsIntegrated deliverablessynthesis-manifest.json

Product Types & Completeness Criteria

Different product types have different required artifacts:

Product TypeRequired Artifacts
DocumentMain document, outline, research notes
ApplicationCode package, README, documentation
CampaignCreative assets, copy, strategy brief
ReportReport document, data sources, methodology
PresentationSlide deck, speaker notes, handouts

Output Structure

.pawbytes/prodig-suites/products/{product-slug}/package/
├── manifest.json           # Package manifest
├── completeness-report.md  # What's present, what's missing
├── packaging-notes.md      # Special considerations
├── artifacts/              # All gathered artifacts
│   ├── {artifact-1}
│   ├── {artifact-2}
│   └── ...
└── metadata/               # Supporting metadata
    ├── source-manifests/
    └── audit-trail.json

Memory Contract

Reads:

  • {project-root}/.pawbytes/prodig-suites/index.md — module state
  • {project-root}/.pawbytes/prodig-suites/output-standards.md — output standards
  • {project-root}/.pawbytes/prodig-suites/products/{product-slug}/product-context.md — product context
  • Executor manifests from execution phase

Writes:

  • {project-root}/.pawbytes/prodig-suites/products/{product-slug}/packaging-status.md — packaging progress
  • {project-root}/.pawbytes/prodig-suites/products/{product-slug}/package/ — packaged bundle
  • {project-root}/.pawbytes/prodig-suites/daily/{date}.md — daily log (append, tagged [Packaging])

Escalation Routes

SignalRoutes To
Missing executor outputspaw-ps-agent-product-builder (to rerun execution)
Incomplete artifactsAppropriate executor agent
Quality issuespaw-ps-quality-reviewer
Export needspaw-ps-export-handler

Output Contract

Every packaging deliverable includes:

  • Action type: bundling, completeness-check, organizing
  • Files saved: paths to all created files
  • Completeness status: what's present vs. missing
  • Recommendations: next steps (quality review, re-execution, etc.)
  • Package location: resolved path to bundle

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.87%
按下载量换算55

Claude

30.55%
按下载量换算46

Cursor

19.54%
按下载量换算29

Gemini CLI

9.26%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills