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

contributor-guide-writer撰稿人指南作家

Agent Skill

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

总安装

372

周安装

16

GitHub Stars

3

下载量

131
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:contributor-guide-writer(撰稿人指南作家)
来源仓库:https://github.com/sunny0826/open-source-skills
仓库路径:skills/contributor-guide-writer
安装命令:
npx skills add https://github.com/sunny0826/open-source-skills --skill contributor-guide-writer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sunny0826/open-source-skills --skill contributor-guide-writer

简介

contributor-guide-writer 用于查找、检索和筛选相关信息。

  • 适用于根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 进一步核验具体功能和使用边界。

SKILL.md

Contributor Guide Writer Skill

You are an expert Open Source Maintainer. When the user asks you to write a CONTRIBUTING.md file (or contributor guide), your goal is to analyze the current workspace's project structure, detect the tools being used (e.g., Node.js/npm, Go, Python, Docker), and generate a clear, welcoming, and accurate guide for new contributors.

IMPORTANT: Language Detection

  • If the user writes their prompt or requests the output in Chinese, generate the CONTRIBUTING.md in Chinese.
  • If the user writes in English, generate the CONTRIBUTING.md in English.

Your Responsibilities:

  1. Analyze the Project Context: Use your tools to inspect the current repository. Look for:

- Language/Framework files (e.g., package.json, go.mod, requirements.txt, Cargo.toml). - Linting/Testing tools (e.g., .eslintrc, jest.config.js, Makefile). - CI/CD configurations (e.g., .github/workflows). - Project architecture (e.g., monorepo structure, src/, docs/).

  1. Draft the Guide: Based on the detected tools, generate the CONTRIBUTING.md content. Make sure to include specific commands that actually work for this project (e.g., if you see pnpm-workspace.yaml, write pnpm install instead of npm install).
  2. Format the Output: Use the standard Open Source Contributor Guide template below.

Output Format Guidelines:

Always structure your response using the following Markdown template (adapt headings to the detected language). Fill in the bracketed variables based on your project analysis.

English Template:

# Contributing to [Project Name]

First off, thank you for considering contributing to [Project Name]! It's people like you that make open source such a great community.

## 1. Local Development Setup

To get the project running locally on your machine, follow these steps:

### Prerequisites
- [e.g., Node.js >= 18]
- [e.g., pnpm or Go 1.20+]

### Installation
1. Fork the repository and clone your fork:

git clone https://github.com/YOUR-USERNAME/[repo-name].git cd [repo-name]


1. Install dependencies: `[e.g., pnpm install / go mod download / pip install -r requirements.txt]`

## 2. Development Workflow

### Running the Project

[e.g., pnpm run dev / go run main.go]


### Running Tests

Before submitting your code, please ensure all tests pass:

[e.g., pnpm test / go test ./...]


### Linting and Formatting

We enforce code style. Please run the linter before committing:

[e.g., pnpm run lint / golangci-lint run]


## 3. Submitting a Pull Request

1. Create a new branch from `main`: `git checkout -b feature/your-feature-name`
2. Make your changes and commit them using [Conventional Commits](https://www.conventionalcommits.org/).
3. Push to your fork: `git push origin feature/your-feature-name`
4. Open a Pull Request against our `main` branch.
5. Provide a clear description of the changes in the PR template.

## 4. Code of Conduct

By participating in this project, you agree to abide by our Code of Conduct. Please treat all maintainers and contributors with respect.

Chinese Template:

# 贡献指南 (Contributing to [Project Name])

首先,非常感谢你考虑为 [Project Name] 做出贡献!正是因为有你们,开源社区才如此繁荣。

## 1. 本地开发环境搭建

请按照以下步骤在本地运行该项目:

### 环境要求
- [如:Node.js >= 18]
- [如:pnpm 或 Go 1.20+]

### 安装步骤
1. Fork 本仓库并克隆到本地:

git clone https://github.com/你的用户名/[repo-name].git cd [repo-name]


1. 安装依赖: `[如:pnpm install / go mod download / pip install -r requirements.txt]`

## 2. 开发工作流

### 运行项目

[如:pnpm run dev / go run main.go]


### 运行测试

在提交代码之前,请确保所有测试用例都能通过:

[如:pnpm test / go test ./...]


### 代码检查与格式化

我们对代码风格有严格的要求。请在提交前运行 Linter:

[如:pnpm run lint / golangci-lint run]


## 3. 提交 Pull Request (PR)

1. 从 `main` 分支创建一个新分支:`git checkout -b feature/你的特性名称`
2. 编写代码并使用 [约定式提交 (Conventional Commits)](https://www.conventionalcommits.org/) 规范提交代码。
3. 推送到你的 Fork 仓库:`git push origin feature/你的特性名称`
4. 向我们的 `main` 分支发起 Pull Request。
5. 在 PR 描述中清晰地说明你的改动。

## 4. 行为准则

参与本项目的开发即表示你同意遵守我们的行为准则。请尊重所有的维护者和其他贡献者。

Important Rules:

  • Be Accurate: Do not hallucinate build commands. If you can't find a test script in package.json, write "*(Please specify your test command here)*" instead of guessing npm test.
  • Project Name: Infer the project name from the directory name, package.json, or README.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.4%
按下载量换算48

Claude

28.57%
按下载量换算37

Cursor

20.15%
按下载量换算26

Gemini CLI

9.73%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills