Token导航 LogoToken导航TokenDH.com
待分类执行命令github未标认证来源可访问许可证需确认审计未展示

ppw%3ateamPPW%3 个团队

Agent Skill

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

总安装

388

周安装

16

GitHub Stars

280

下载量

127
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lylll9436/paper-polish-workflow-skill --skill ppw:team

简介

ppw%3ateam 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于待分类任务场景,可能用于团队协作或项目管理支持。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • ppw%3ateam 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Purpose

This Skill orchestrates parallel paper processing by splitting a paper into H1 sections and dispatching eligible Skills to subagents. In Phase 19 (current), it validates the proof-of-concept gate by running a single subagent on one section. Full parallel dispatch across all sections is Phase 20.

Trigger

Activates on: ppw:team [skill] [file] invocations.

Examples:

  • "ppw:team polish paper.tex" / "团队模式润色论文"
  • "ppw:team translation draft.md" / "并行翻译论文各章节"
  • "ppw:team de-ai paper.tex"

Modes

ModeDefaultBehavior
guidedYessplit -> user confirms sections -> user selects PoC section -> run PoC -> user confirms quality
directskip confirmations, auto-select all body sections and first section for PoC

Mode inference: "直接" or "direct" in trigger switches to direct mode.

References

required: [] -- This Skill does not produce academic text itself. It orchestrates other Skills that load their own references at runtime. No reference files are needed by the orchestrator.

Ask Strategy

Guided mode -- three interaction points via AskUserQuestion:

  1. Section selection (multiSelect) after splitting
  2. PoC section selection (single select) from selected sections
  3. PoC quality confirmation (approve/retry/exit)

Direct mode -- skip all three: auto-select all body sections (exclude preamble and bibliography), auto-select first body section for PoC, auto-approve PoC output.

Workflow

Step 0: Workflow Memory (Recording Only)

  • Skip pattern detection -- orchestrator is not suitable for auto-direct-mode recommendation.
  • Recording happens after Step 1 validation (see Step 1).

Step 1: Parse Arguments and Validate

  • Parse $ARGUMENTS to extract: Skill name (first word) and file path (remaining words).
  • Validate Skill name against whitelist: ["translation", "polish", "de-ai"]
  • If Skill is not in whitelist, reject with exact message: "[Skill] requires full-paper context and cannot run in parallel. Please run /ppw:[skill] directly."
  • Validate file exists and is .tex or .md format. If file not found or wrong format, report error and stop.
  • Read the paper file content.
  • Record workflow: Append {"skill": "ppw:team", "ts": "<ISO timestamp>"} to .planning/workflow-memory.json. Create file as [] if missing. Drop oldest entry if log length >= 50.

Step 2: Create Working Directory

  • Create .paper-team/ directory structure: sections/, output/.
  • If .paper-team/ already exists: in guided mode, ask to overwrite or cancel; in direct mode, overwrite silently.
  • Create backup of original paper: .paper-team/{filename}-backup-{YYYYMMDD-HHmm}.{ext} (timestamped to prevent overwrite on re-runs).
  • Initialize .paper-team/manifest.json:
{
  "version": "1.0",
  "created": "<ISO timestamp>",
  "source_file": "<original file path>",
  "source_format": "tex|md",
  "target_skill": "<skill name>",
  "sections": [],
  "poc": { "section_id": null, "status": "pending", "timestamp": null },
  "backup": "<backup filename>"
}

Step 3: Split Paper into Sections

For.tex files:

  • Preamble: everything from start through \begin{document} (inclusive). Label "00 - Preamble".
  • Bibliography: from \bibliography{} or \printbibliography through \end{document}. Label "99 - Bibliography".
  • Section boundaries: each \section command. Match \section followed by optional * and optional [...] then {...}. Ignore lines starting with % (LaTeX comments).
  • Content between \begin{document} and the first \section{} is "00 - Pre-section content" (if non-empty after trimming).
  • Each section: content from its \section{Title} line through the line before the next \section{ or the bibliography boundary.

For.md files:

  • Frontmatter: content before the first # heading. Label "00 - Frontmatter" (if non-empty).
  • Split at lines beginning with # (H1 headings).
  • Each H1 heading and its content until the next # is one section.

Section file naming: {NN}-{sanitized-title}.{ext} where NN = zero-padded sequence number, sanitized-title = title lowercased, spaces to hyphens, special chars removed, max 50 chars. Preamble: 00-preamble.{ext}. Pre-section: 00-presection.{ext}. Bibliography: 99-bibliography.{ext}. Frontmatter: 00-frontmatter.md.

Edge cases:

  • No \section{} commands: treat entire body as "01 - Full Body".
  • Only one section: warn parallel processing has no benefit; proceed with PoC anyway.
  • Empty section (no content between boundaries): skip, do not create file.

Write each section to .paper-team/sections/{filename}. Update manifest.json sections array with {"id": "NN", "title": "...", "file": "sections/filename", "selected": false, "status": "pending"} for each section.

Step 4: Section Selection

Guided mode: Present all detected sections via AskUserQuestion multiSelect:

AskUserQuestion({
  question: "Select sections to process with ppw:{skill}:\n选择要用 ppw:{skill} 处理的章节:",
  multiSelect: true,
  options: [
    { label: "NN - Title", description: "brief description or first line" }
  ]
})

Update manifest.json to set selected: true for chosen sections.

Direct mode: Auto-select all sections EXCEPT those with id "00" (preamble/presection/frontmatter) and "99" (bibliography). Update manifest accordingly. Display selected sections to user.

Step 5: PoC Section Selection

Guided mode: Present selected sections via AskUserQuestion (single select):

AskUserQuestion({
  question: "Select one section for proof-of-concept test:\n选择一个章节进行概念验证测试:",
  options: [
    { label: "NN - Title", description: "will be processed by a subagent" }
  ]
})

Direct mode: Auto-select the first selected section (lowest NN number among selected).

Step 6: PoC Gate Execution

  • Read the target Skill's SKILL.md from .claude/skills/ppw-{skill}/SKILL.md. If not found, report error: "Skill ppw:{skill} not found at.claude/skills/ppw-{skill}/SKILL.md" and stop.
  • Read the selected section file from .paper-team/sections/{file}.
  • Construct the subagent prompt (use this template verbatim, filling in placeholders):
You are executing a paper section processing task in direct mode.

## Skill Instructions

{FULL CONTENT OF TARGET SKILL.MD INSERTED HERE}

## Task

Process the following paper section file using the Skill instructions above.

- Input file: .paper-team/sections/{section-filename}
- Mode: direct (skip all AskUserQuestion calls, skip Workflow Memory Step 0)
- Write output to: .paper-team/output/{section-filename}
- Do NOT ask the user any questions. Proceed with defaults.
- Load all required references as specified in the Skill instructions.
- Produce output as if you were running the Skill directly on this section.
- If the Skill normally edits in-place, instead write the processed output to the output path above.
  • Spawn a single subagent via the Agent tool with this prompt.
  • Wait for subagent completion.
  • Update manifest.json: set poc.section_id, poc.status to "completed", poc.timestamp to current ISO timestamp. Set the section's status to "completed".

Step 7: PoC Quality Confirmation

Guided mode: Read the subagent output from .paper-team/output/{file}. Display a brief excerpt (first 20-30 lines) to the user. Then ask:

AskUserQuestion({
  question: "PoC gate: Is the subagent output quality acceptable?\n概念验证:子代理输出质量是否可接受?",
  options: [
    { label: "Approved - PoC gate passed", description: "Quality is comparable to main-session execution" },
    { label: "Retry", description: "Re-run PoC on the same section" },
    { label: "Exit", description: "Stop orchestration, quality is not acceptable" }
  ]
})
  • Approved: Update manifest.json poc.status to "passed". Display: "PoC gate passed. The ppw:team orchestrator is validated. To process all sections in parallel, use Phase 20's parallel dispatch (coming soon)."
  • Retry: Go back to Step 6. Loop at most 3 times, then suggest Exit.
  • Exit: Update manifest.json poc.status to "failed". Display message and suggest running the Skill directly: "/ppw:{skill} {file}"

Direct mode: Auto-approve (set poc.status to "passed"), display the first 10 lines of output and the success message.

Output Contract

OutputFormatCondition
section_filesIndividual files in .paper-team/sections/Always produced after Step 3
manifest.paper-team/manifest.jsonAlways produced, updated throughout workflow
poc_outputSingle file in .paper-team/output/Produced after Step 6

Edge Cases

SituationHandling
Paper has no \section{} commandsTreat entire body as one section "01 - Full Body"
Paper has only one sectionWarn parallel processing has no benefit; proceed with PoC
File path has spacesQuote file paths in all Read/Write operations
.paper-team/ already existsAsk to overwrite or cancel (guided) / overwrite silently (direct)
Subagent fails or times outReport error, suggest retry or exit
\section*{} (unnumbered)Match as section boundary (pattern includes optional *)
\section[short]{long} (optional arg)Match as section boundary (pattern includes optional [...])
Empty section (no content between boundaries)Skip empty sections, do not create files

Fallbacks

ScenarioFallback
Structured Interaction unavailableAsk plain-text questions for section selection
Agent tool failsReport error; suggest running Skill directly on the section
Target Skill SKILL.md not foundReport: "Skill ppw:{skill} not found at.claude/skills/ppw-{skill}/SKILL.md"
.planning/workflow-memory.json missingCreate as [] before appending

*Skill: ppw-team* *Conventions: references/skill-conventions.md*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.49%
按下载量换算46

Claude

26.86%
按下载量换算34

Cursor

20.69%
按下载量换算26

Gemini CLI

10.21%
按下载量换算13

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/lylll9436/paper-polish-workflow-skill --skill ppw:team 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills