Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计提醒

rfc-processRFC 过程

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

61

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:rfc-process(RFC 过程)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/rfc-process
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill rfc-process
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill rfc-process

简介

rfc-process 用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息,支持代码变更跟踪。

  • 适用于开发流程中的协作事项管理和代码状态同步。
  • 可通过 npx 命令从 claude-code-plugins 仓库安装,建议查看原始 README 了解详细用法。
  • 使用前需确认权限边界,避免访问受限仓库或敏感提交记录。
  • 输出信息应以公开协作数据为基础,不擅自推断内部设计或未发布功能。

SKILL.md

RFC Process Skill

When to Use This Skill

Use this skill when:

  • Rfc Process tasks - Working on request for comments (rfc) process for technical proposals
  • Planning or design - Need guidance on Rfc Process approaches
  • Best practices - Want to follow established patterns and standards

Overview

Facilitate the Request for Comments (RFC) process for technical proposals and design decisions.

MANDATORY: Documentation-First Approach

Before creating RFCs:

  1. Invoke docs-management skill for RFC patterns
  2. Verify RFC best practices via MCP servers (perplexity)
  3. Base guidance on IETF RFC style adapted for software teams

RFC vs ADR

RFC vs ADR Comparison:

RFC (Request for Comments):
• For proposals BEFORE decision is made
• Invites discussion and feedback
• May be accepted, rejected, or revised
• Typically larger scope than ADRs
• Used for significant changes requiring consensus

ADR (Architecture Decision Record):
• Documents decisions AFTER they are made
• Records the decision and rationale
• Immutable once accepted
• Focused on single decisions
• Used for all significant architecture decisions

Relationship:
RFC (Proposal) → Discussion → Decision → ADR (Record)

RFC Template

# RFC-[NUMBER]: [TITLE]

| Property | Value |
|----------|-------|
| **RFC Number** | RFC-[NUMBER] |
| **Title** | [Short, descriptive title] |
| **Author(s)** | [Name(s)] |
| **Status** | [Draft \| Open for Comment \| Final Comment \| Accepted \| Rejected \| Withdrawn] |
| **Created** | [YYYY-MM-DD] |
| **Updated** | [YYYY-MM-DD] |
| **Target Decision Date** | [YYYY-MM-DD] |
| **Stakeholders** | [Teams/Individuals] |

---

## Summary

[One paragraph executive summary. What is being proposed and why?]

---

## Motivation

### Problem Statement

[What problem does this RFC solve? Why is the current situation inadequate?]

### Goals

- [Goal 1]
- [Goal 2]
- [Goal 3]

### Non-Goals

- [Non-goal 1: What this RFC explicitly does NOT address]
- [Non-goal 2]

---

## Proposal

### Overview

[High-level description of the proposed solution]

### Detailed Design

[In-depth technical description. Include:
- Architecture changes
- API changes
- Data model changes
- Algorithm descriptions
- Integration points]

### Example Usage

// Code example showing how the proposal would be used public class ExampleUsage { public async Task Example() { // Demonstrate the proposed API or pattern } }


### Migration Plan

[How will existing systems/data be migrated?]

1. Phase 1: [Description]
2. Phase 2: [Description]
3. Phase 3: [Description]

---

## Alternatives Considered

### Alternative 1: [Name]

**Description:** [What this alternative entails]

**Pros:**

- [Pro 1]
- [Pro 2]

**Cons:**

- [Con 1]
- [Con 2]

**Why Not Chosen:** [Reason for rejecting this alternative]

### Alternative 2: [Name]

[Same structure...]

### Status Quo (Do Nothing)

**Description:** Continue with current approach

**Pros:**

- No migration effort
- No learning curve

**Cons:**

- [Problems that motivated this RFC remain]

---

## Trade-offs

| Trade-off | Chosen Path | Alternative Path |
| --- | --- | --- |
| [Trade-off 1] | [What we accept] | [What we give up] |
| [Trade-off 2] | [What we accept] | [What we give up] |

---

## Risks and Mitigations

| Risk | Likelihood | Impact | Mitigation |
| --- | --- | --- | --- |
| [Risk 1] | Low/Medium/High | Low/Medium/High | [Mitigation strategy] |
| [Risk 2] | Low/Medium/High | Low/Medium/High | [Mitigation strategy] |

---

## Implementation Plan

### Timeline

| Phase | Description | Duration | Dependencies |
| --- | --- | --- | --- |
| Phase 1 | [Description] | [Duration] | [Dependencies] |
| Phase 2 | [Description] | [Duration] | [Dependencies] |

### Resource Requirements

- [Resource 1: e.g., "2 senior engineers for 4 weeks"]
- [Resource 2: e.g., "Infrastructure team support"]

### Success Criteria

- [Criterion 1: Measurable success indicator]
- [Criterion 2: Measurable success indicator]

### Rollback Plan

[How to revert if the implementation fails]

---

## Security Considerations

[Security implications of this proposal]

- [Consideration 1]
- [Consideration 2]

---

## Privacy Considerations

[Privacy implications of this proposal]

- [Consideration 1]
- [Consideration 2]

---

## Testing Strategy

[How will this be tested?]

- Unit tests: [Approach]
- Integration tests: [Approach]
- Performance tests: [Approach]
- Rollout plan: [Canary, percentage rollout, etc.]

---

## Documentation Updates

[What documentation needs to be created or updated?]

- [Doc 1: e.g., "API reference"]
- [Doc 2: e.g., "Developer guide"]
- [Doc 3: e.g., "Operations runbook"]

---

## Open Questions

[Questions that need to be resolved during the comment period]

1. [Question 1]
2. [Question 2]

---

## Feedback

### Comments

[Space for discussion - may link to external discussion thread]

| Date | Author | Comment | Resolution |
| --- | --- | --- | --- |
| [Date] | [Name] | [Comment] | [Resolution] |

### Revision History

| Version | Date | Author | Changes |
| --- | --- | --- | --- |
| 0.1 | [Date] | [Name] | Initial draft |
| 0.2 | [Date] | [Name] | [Changes made] |

---

## References

- [Reference 1]
- [Reference 2]
- [Related RFC/ADR]

## RFC Lifecycle

RFC Status Flow:

┌─────────────────────────────────────────────────────────────────────────────┐ │ │ │ ┌──────────┐ ┌─────────────────┐ ┌──────────────────┐ │ │ │ Draft │────▶│ Open for Comment │────▶│ Final Comment │ │ │ └──────────┘ └─────────────────┘ └──────────────────┘ │ │ │ │ │ │ │ │ │ │ │ │ ▼ ▼ ▼ │ │ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ │ │ Withdrawn│ │ Withdrawn│ │ Accepted │ │ │ └──────────┘ └──────────┘ └──────────┘ │ │ │ │ │ ┌──────────┐ │ │ │ │ Rejected │◀───────────┤ │ │ └──────────┘ │ │ │ ▼ │ │ ┌──────────────┐ │ │ │ Implemented │ │ │ └──────────────┘ │ │ │ └─────────────────────────────────────────────────────────────────────────────┘

Timeline: • Draft: Author preparing, not ready for review • Open for Comment: 2 weeks minimum for feedback • Final Comment: 1 week for last objections • Accepted/Rejected: Decision made • Implemented: Work completed


## When to Write an RFC

| Situation | RFC Needed? |
| --- | --- |
| New microservice | Yes |
| Change in data model | Yes |
| New public API | Yes |
| Internal refactoring | Maybe |
| Bug fix | No |
| Minor enhancement | No |
| Breaking change | Yes |
| New technology adoption | Yes |
| Deprecation | Yes |

## RFC Roles

| Role | Responsibility |
| --- | --- |
| **Author** | Writes RFC, addresses feedback, drives to decision |
| **Reviewer** | Provides technical feedback |
| **Stakeholder** | Represents affected team or system |
| **Approver** | Makes final accept/reject decision |
| **Editor** | Ensures RFC meets standards (optional) |

## Lightweight RFC (Design Doc)

For smaller proposals, use this abbreviated format:

Design Doc: [TITLE]

Author: [Name] Date: [Date] Status: [Draft/Review/Approved]

Context

[What problem are we solving?]

Proposal

[What are we going to do?]

Alternatives

[What else did we consider?]

Decision

[What did we decide and why?]


## RFC Registry

RFC Registry

Active RFCs

RFCTitleAuthorStatusTarget Date
RFC-012[Title][Author]Open for Comment2025-02-15
RFC-013[Title][Author]Draft-

Accepted RFCs

RFCTitleAcceptedADR
RFC-010[Title]2025-01-10ADR-025
RFC-011[Title]2025-01-15ADR-026

Rejected/Withdrawn RFCs

RFCTitleStatusReason
RFC-008[Title]Rejected[Brief reason]
RFC-009[Title]Withdrawn[Brief reason]

## Best Practices

### For Authors

1. **Start discussions early**: Share drafts before formal RFC
2. **Be thorough**: Address obvious concerns preemptively
3. **Stay objective**: Present alternatives fairly
4. **Respond promptly**: Engage with feedback quickly
5. **Know when to pivot**: Be willing to change or withdraw

### For Reviewers

1. **Be constructive**: Suggest improvements, not just problems
2. **Be timely**: Respect deadlines
3. **Focus on substance**: Don't bikeshed
4. **Ask questions**: Clarify before criticizing
5. **Propose alternatives**: If you disagree, suggest alternatives

## Workflow

When creating RFCs:

1. **Identify Need**: Recognize significant change requiring consensus
2. **Draft RFC**: Use template, focus on clarity
3. **Pre-Review**: Share informally for early feedback
4. **Publish**: Move to "Open for Comment"
5. **Discuss**: Engage with feedback, revise as needed
6. **Finalize**: Move to "Final Comment"
7. **Decide**: Accept, reject, or withdraw
8. **Record**: Create ADR if accepted

## Further Reading

For detailed guidance:

---

**Last Updated:** 2025-12-26

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.85%
按下载量换算26

Claude

30.9%
按下载量换算22

Cursor

19.05%
按下载量换算14

Gemini CLI

10.89%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills