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

platonic-impl-guide柏拉图式实现指南

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

3

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Platonic Implementation Guide

Create concrete, project-specific implementation designs from RFC specifications.

When to Use This Skill

Use this skill when you need to:

  • Translate RFC specifications into implementation-ready designs
  • Create detailed technical architecture for a feature
  • Document language-specific and framework-specific implementation decisions
  • Plan module structure, dependencies, and data flow
  • Bridge the gap between abstract specs and concrete code

Keywords: implementation guide, technical design, architecture, RFC implementation, module design

What This Skill Does

This skill creates Implementation Guides that:

Supersede RFC Specs: Provide concrete details while NEVER contradicting specs ✅ Language-Aware: Include language-specific idioms, patterns, and best practices ✅ Framework-Aware: Leverage framework capabilities and conventions ✅ Project-Specific: Align with existing codebase architecture and patterns ✅ Actionable: Provide clear module structure, types, and interfaces

Core Principles

1. Spec Compliance (Non-Negotiable)

Implementation guides MUST NOT contradict RFC specifications:

  • All invariants from specs must be preserved
  • All required behaviors must be implemented
  • All constraints must be respected
  • If a spec is unclear, document the interpretation

2. Concrete Over Abstract

Unlike RFCs which define "what", implementation guides define "how":

  • Specific module/crate/package structure
  • Concrete type definitions with fields
  • Actual function signatures
  • Real dependency relationships
  • Specific storage formats and schemas

3. Language and Framework Awareness

Implementation guides are technology-specific:

  • Use idiomatic patterns for the target language
  • Leverage framework conventions and capabilities
  • Follow project-established coding standards
  • Reference actual libraries and dependencies

4. Traceability

Every implementation decision should trace back to specs:

  • Reference source RFCs explicitly
  • Document which spec requirements each component satisfies
  • Explain deviations or interpretations

Implementation Guide Structure

An implementation guide follows this structure:

# [Feature] Implementation Architecture

> Implementation guide for [feature] in [project].
>
> **Crate/Module**: `module-name`
> **Source**: Derived from RFC-NNNN (Title)
> **Related RFCs**: RFC-XXXX, RFC-YYYY

---

## 1. Overview
[High-level summary of what this implements and why]

## 2. Architectural Position
[Where this fits in the overall system]
- Data flow diagram
- Dependency graph
- Crate/module responsibilities

## 3. Module Structure
[Concrete directory and file layout]

## 4. Core Types
[Actual type definitions with fields and documentation]

## 5. Key Interfaces/Traits
[API surface with function signatures]

## 6. Implementation Details
[Specific algorithms, storage formats, protocols]

## 7. Error Handling
[Error types and handling strategies]

## 8. Configuration
[Configuration options and defaults]

## 9. Testing Strategy
[How to test this implementation]

## 10. Migration/Compatibility
[If applicable, how to migrate from existing systems]

Available Operations

OperationReference FilePurpose
Create Guidecreate-guide.mdCreate new implementation guide from RFC
Validate Guidevalidate-guide.mdCheck guide against RFC for contradictions
Update Guideupdate-guide.mdUpdate guide when RFC changes

See references/REFERENCE.md for detailed operation guides.

Templates

Templates are provided in assets/:

  • impl-guide-template.md - Full implementation guide template

Usage Examples

Example 1: Create Implementation Guide

Use platonic-impl-guide to create an implementation guide for
RFC-0042 (Message Queue Protocol) targeting the acme-queue crate.
The implementation should use Rust with async/await patterns.

Example 2: Validate Existing Guide

Use platonic-impl-guide to validate that docs/impl/queue_impl.md
does not contradict RFC-0042 specifications.

Example 3: Update Guide After RFC Change

Use platonic-impl-guide to update the implementation guide
after RFC-0042 was revised to add new message priority levels.

Best Practices

  1. Read the RFC first: Understand the specification completely before designing implementation
  2. Check existing patterns: Look at how similar features are implemented in the project
  3. Document decisions: Explain why specific implementation choices were made
  4. Keep it current: Update guides when RFCs or implementations change
  5. Be specific: Vague guides are not useful; include actual types and signatures
  6. Test coverage: Include testing strategy in the guide

Relationship to Other Artifacts

RFC Specification (abstract, what)
        ↓
Implementation Guide (concrete, how)  ← This skill
        ↓
Actual Code (executable)
        ↓
Tests (verification)

Dependencies

  • Read access to RFC specifications
  • Understanding of target language and framework
  • Knowledge of project architecture and conventions
  • Write access to docs/impl/ or designated impl-guide directory

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.98%
按下载量换算29

Claude

27.92%
按下载量换算22

Cursor

18.66%
按下载量换算15

Gemini CLI

8.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills