Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

platonic-workflow柏拉图式工作流程

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

3

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/caesar0301/platonic-coding-skills --skill platonic-workflow

简介

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

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 核验用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • 可配合来源仓库进一步了解技能的具体实现和功能边界。

SKILL.md

Platonic Coding Workflow

Orchestrate the complete four-phase Platonic Coding workflow from conceptual design through specification, implementation (guide + code), and review.

When to Use This Skill

Use this skill when you need to:

  • Run the full workflow from design idea to reviewed implementation
  • Progress through phases with clear phase visibility and handoffs
  • Ensure traceability from design draft → RFC → impl guide → code → review
  • Coordinate other skills (platonic-specs, platonic-impl, platonic-code-review) in the correct order

Keywords: workflow, platonic coding, design draft, RFC, implementation guide, code review, phase

Phase Visibility

Always show the current Phase of the workflow at the start of each step and in summaries:

  • Phase 0: Conceptual Design & Design Draft
  • Phase 1: RFC Specification (Draft)
  • Phase 2: Implementation (Guide + Code)
  • Phase 3: Spec Compliance Review
  • FINISHED: Workflow complete

Workflow Summary

PhaseFocusOutput LocationSkills / Actions
0Conceptual design, requirementsdocs/drafts/Interactive chat, optional items
1Formal RFC from design draftdocs/specs/Generate RFC, then platonic-specs (refine)
2Impl guide + code with testsdocs/impl/ + Codebaseplatonic-impl (full impl sub-workflow)
3Review code vs specs & impl guidesReportplatonic-code-review
FINISHED

Phase Details

Phase 0: Conceptual Design & Design Draft

  • Goal: Obtain a shared conceptual design (principles, constraints, conceptual interfaces, design art, etc.).
  • Method: Interactive chat; use optional items to communicate with the user.
  • Output: A design draft.
  • Location: Default docs/drafts/. The user may provide a draft from elsewhere.
  • Reference: See references/phase-0-design-draft.md.

Phase 1: RFC Specification (Draft)

  • Goal: Turn the design draft into a formal RFC spec (Status: Draft).
  • Optional: Ask the user for RFC number/index if not specified.
  • Actions:

1. Generate RFC from the Phase 0 design draft. 2. Call platonic-specs to refine the generated RFC (and related specs).

  • Output: RFC(s) in the specs directory.
  • Location: Default docs/specs/.
  • Reference: See references/phase-1-rfc-spec.md.

Phase 2: Implementation (Guide + Code)

  • Goal: Produce a concrete implementation guide from the RFC spec, then implement the code with tests.
  • Optional: Ask the user for RFC number/index if not specified.
  • Actions: Use platonic-impl (full-impl operation) which runs a four-step sub-workflow:

1. Spec analysis — extract requirements from RFC 2. Impl guide design — create architecture doc (user confirmation gate) 3. Coding plan — task breakdown with file-level changes (user confirmation gate) 4. Coding — implement code with unit and integration tests

  • Output: Implementation guide in docs/impl/ + source code with tests in codebase.
  • Reference: See references/phase-2-implementation.md.

Phase 3: Spec Compliance Review

  • Goal: Review implementation against both RFC specs and implementation guides.
  • Actions: Call platonic-code-review to review the code implementation and the targeted RFC (specs and impl guides).
  • Output: Review and compliance report.
  • Reference: See references/phase-3-review.md.

FINISHED

  • Workflow complete. Summarize outcomes and any follow-up recommendations.

Default Paths

ArtifactDefault Path
Design draftsdocs/drafts/
RFC specsdocs/specs/
Implementation guidesdocs/impl/

Paths may be overridden by the user.

Available References

PhaseReference FilePurpose
Overviewworkflow-overview.mdEnd-to-end workflow and phase transitions
Phase 0phase-0-design-draft.mdConceptual design and design draft
Phase 1phase-1-rfc-spec.mdRFC generation and platonic-specs refine
Phase 2phase-2-implementation.mdplatonic-impl full sub-workflow (guide + code)
Phase 3phase-3-review.mdplatonic-code-review usage

See references/REFERENCE.md for detailed phase procedures.

Best Practices

  1. Always show current phase at the start of each step and in status summaries.
  2. Confirm handoffs: Before leaving a phase, confirm outputs and paths with the user if ambiguous.
  3. Ask for indices when useful: In Phase 1 (RFC number) and Phase 2 (RFC for implementation), ask for index if not provided.
  4. Call skills explicitly: Phase 1 → platonic-specs (refine); Phase 2 → platonic-impl (full-impl); Phase 3 → platonic-code-review.
  5. Preserve traceability: Keep links between design draft → RFC → impl guide → code in summaries and docs.

Dependencies

  • platonic-specs: Phase 1 (refine RFCs).
  • platonic-impl: Phase 2 (full implementation: guide + code with tests).
  • platonic-code-review: Phase 3 (review code vs specs and impl guides).
  • Read/write access to docs/drafts/, docs/specs/, docs/impl/ and codebase as needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.14%
按下载量换算32

Claude

33.71%
按下载量换算31

Cursor

18.37%
按下载量换算17

Gemini CLI

8.82%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills