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

generate-comprehensive-style-guide生成全面的风格指南

Agent Skill

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

总安装

360

周安装

15

GitHub Stars

1

下载量

120
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:generate-comprehensive-style-guide(生成全面的风格指南)
来源仓库:https://github.com/skinnyandbald/fish-skills
仓库路径:skills/generate-comprehensive-style-guide
安装命令:
npx skills add https://github.com/skinnyandbald/fish-skills --skill generate-comprehensive-style-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/skinnyandbald/fish-skills --skill generate-comprehensive-style-guide

简介

用于查找、检索和筛选相关信息,支持风格指南生成场景。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前应检查是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Generate Comprehensive Style Guide

Perform a deep analysis of this codebase and generate (or regenerate) a STYLE_GUIDE.md file with full evidence citations for every convention.

When to use this vs /setup-ai: /setup-ai generates a quick-pass style guide as part of initial project setup. This skill is for when you need the thorough version — 17 sections, every convention backed by specific file citations, inconsistencies flagged for human decision. Run this after /setup-ai for more depth, or independently when conventions have drifted.

Rules

  • ONLY document patterns you actually observe in the code. Never hallucinate or assume conventions.
  • When patterns are inconsistent across the codebase, note the inconsistency and ask the user which convention to standardize on.
  • Cite specific files as evidence: "Based on src/services/UserService.ts, src/services/OrderService.ts..."
  • If a STYLE_GUIDE.md already exists, read it first and improve/incorporate rather than overwriting.

Analysis Process

Step 1: Detect Tech Stack

Search for dependency and config files:

FileStack
package.jsonNode.js / JavaScript / TypeScript
tsconfig.jsonTypeScript specifically
GemfileRuby
requirements.txt, pyproject.toml, PipfilePython
go.modGo
Cargo.tomlRust
composer.jsonPHP
pom.xml, build.gradleJava / Kotlin
*.csproj, *.slnC# /.NET

Read the dependency file to identify: language version, framework and version, key libraries, build tools, testing framework, linter/formatter configuration.

Step 2: Read Existing Configuration

Check for existing style/convention docs that define rules:

  • .eslintrc, .eslintrc.json, .eslintrc.js
  • .prettierrc, .prettierrc.json
  • .rubocop.yml
  • .editorconfig
  • biome.json, biome.jsonc
  • ruff.toml, pyproject.toml (ruff/black sections)
  • CLAUDE.md, AGENTS.md, .cursorrules

These are authoritative — extract rules from them directly.

Step 3: Sample Code for Patterns

Read 10-15 representative files — sample strategically, don't try to read everything:

  • 3-4 "core" files (models, services, controllers, components)
  • 2-3 test files
  • 1-2 configuration/setup files
  • 1-2 utility/helper files
  • 1 entry point or router file

For each file, extract patterns for:

  • Naming: camelCase, snake_case, PascalCase, kebab-case — for variables, functions, classes, files
  • File naming: *.service.ts, *_controller.rb, *.spec.js, etc.
  • Imports: ordering (stdlib → external → internal), style (named vs default), path aliases
  • Exports: named exports, default exports, module.exports, barrel files
  • Error handling: try/catch, Result types, error middleware, rescue blocks
  • Comments: style, density, JSDoc/RDoc/docstrings
  • Types: TypeScript strict mode, JSDoc annotations, Python type hints, none
  • Functions: arrow vs declaration, parameter patterns, return style, async/await

Step 4: Identify Testing Patterns

From the test files:

  • Framework (Jest, Vitest, RSpec, pytest, Go testing, etc.)
  • File naming convention (*_test.rb, *.spec.ts, *.test.js, test_*.py)
  • Test structure (describe/it, test(), class-based, table-driven)
  • Fixture/factory patterns
  • Mocking approach (jest.mock, factory_bot, unittest.mock)
  • Assertion style (expect().toBe, assert, should)
  • Test file co-location vs separate directory

Step 5: Check Git History (if available)

Run git log --oneline -20 to see:

  • Commit message format (conventional commits? Ticket refs? Free-form?)

Run git branch -a | head -20 to see:

  • Branch naming convention (feature/, fix/, etc.)

Generate: STYLE_GUIDE.md

Write to the project root. Use this structure:

# Coding Style Guide

> Auto-generated from codebase analysis on [date]. Review and adjust — these patterns were extracted from your existing code. Where patterns were inconsistent, the most common convention was chosen.

## Language & Formatting
[Indentation: tabs or spaces, width. Line length limit. Semicolons. Quote style. Trailing commas.]
**Evidence:** Based on [cite 2-3 representative files]

## Naming Conventions

### Files & Directories
[Pattern with real examples from the codebase]

### Variables & Functions
[camelCase / snake_case / etc. with real examples]

### Classes, Types & Interfaces
[PascalCase / etc. with real examples]

### Constants
[UPPER_SNAKE_CASE / etc.]

### Database
[Column naming (snake_case?), table naming (plural?), migration naming]

## Code Organization

### File Structure
[Standard order within a file: imports → types → constants → main logic → helpers → exports]
**Evidence:** [cite a file that exemplifies this pattern]

### Import Ordering
[Standard order: stdlib/framework → external packages → internal modules → relative imports]
[Are there path aliases? (@/ or ~/)]

## Function Patterns
[Arrow functions vs declarations. When to use each. Parameter destructuring. Return style. Async/await conventions.]
**Evidence:** [cite examples]

## Error Handling
[The standard error handling pattern — with a real code example copied from the codebase]

## Testing Standards

### File Naming
[Pattern: `*.spec.ts`, `*_test.rb`, etc.]

### Test Structure
[describe/it blocks, test() calls, class-based — with skeleton example]

### What to Test
[Unit tests for what, integration tests for what, what coverage is expected]

### Fixtures & Mocking
[How test data is set up. How external dependencies are mocked.]

## API Patterns
[Endpoint naming. Request validation. Response format (envelope? direct?). Error response format. Status code conventions.]

## Database Patterns
[Migration style. Model/schema definitions. Query conventions. Transactions.]

## Component Patterns (if frontend)
[Component file structure. Props patterns. State management. Styling approach.]

## Git Conventions
[Commit message format. Branch naming. PR description expectations.]

## Anti-Patterns — Do NOT Replicate
[Patterns found in the codebase that should NOT be followed in new code. Legacy approaches being phased out. Inconsistencies being resolved.]

After Generation

  1. Present a summary to the user: what you found, what looks solid, what was ambiguous
  2. Highlight any inconsistencies that need a human decision
  3. Tell the user: "Review this file. I extracted these patterns from your code but your team knows the intent. Edit anything that's wrong or aspirational rather than actual."
  4. If AGENTS.md doesn't exist yet, suggest: "Run /setup-ai to generate your AGENTS.md and CLAUDE.md, then it will reference STYLE_GUIDE.md automatically."
  5. Suggest: "Run /review-style-guide before PRs to automatically check new code against this style guide."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.09%
按下载量换算43

Claude

31.19%
按下载量换算37

Cursor

18.75%
按下载量换算23

Gemini CLI

9.03%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills