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

stylestyle 搜索

Agent Skill

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

总安装

294

周安装

12

GitHub Stars

2

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alexanderguy/skills --skill style

简介

style 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 通过 npx skills add 命令从指定仓库安装,具体用法需结合 README 进一步确认。
  • 安装前建议确认权限范围、维护状态及是否涉及联网、命令执行或文件读写操作。
  • style 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Style

General guidelines for writing clean, maintainable code.

Git Repository Requirement

Agents must only operate within git repositories. Before performing any work:

  1. Verify the current working directory is inside a git repository
  2. If not in a git repository, refuse to proceed

Without a git repository, it's too hard to succeed with agents - changes can't be tracked, reviewed, or safely reverted.

Documentation

Avoiding Redundant Comments

Code should be self-documenting. Do not add comments that describe what the code obviously does:

// Bad - obvious comments
// Base configuration type for all backends
BaseConfigArgs = { level: LogLevel }

// Good - let code speak for itself
BaseConfigArgs = { level: LogLevel }

Decorative comment blocks (ASCII art dividers, section headers) add visual noise without providing meaningful information.

When comments ARE useful:

  • Complex algorithms that aren't immediately obvious
  • Non-obvious workarounds or edge cases
  • TODO/FIXME/XXX markers for future work
  • Business logic that requires explanation
// XXX - Temporary workaround until upstream fix
// TODO - Switch to newMethod when minimum version is bumped
result = await legacyMethod()

Git Workflow

Commit Messages

Commits should read like a story, allowing others and future-you to understand why changes were made.

Commit Organization:

  • Separate refactoring from feature additions (distinct commits)
  • Separate formatting/whitespace fixes from logical changes
  • Each commit should represent one logical unit of work
  • Bug fixes to unpushed commits should be fixup commits (git commit --fixup=<sha>) targeting the commit that introduced the bug, then squashed before push with git rebase --autosquash

Message Format:

  • Summary line: Max 72 characters, non-empty
  • Blank line: Required between summary and body (if body exists)
  • Body lines: Max 72 characters each

Some projects use a "Conventional Commits" prefix format (e.g. feat:, fix:, chore:, docs:, refactor:). Do not use this style. Summary lines should be plain English sentences with no abbreviations, no prefixes, and should not end with punctuation.

Good examples:

Add retry logic for failed network requests

Fix race condition in transaction verification

Document API response format

Bad examples:

feat: add retry logic
Update code (too vague)
Fix bug in server.ts (includes filename)

Documentation Maintenance

When making changes to code, check whether related documentation needs updating:

  • README files that reference changed functionality
  • API documentation for modified interfaces
  • Inline comments that describe changed behavior
  • Configuration examples that no longer apply

Update documentation in the same commit as the code change, not as a separate task.

Code Reuse and Refactoring

Do not reimplement functionality that already exists in the codebase. Before writing new code:

  1. Search for existing implementations that could serve the same purpose
  2. If similar functionality exists, prefer refactoring it to meet the new requirements
  3. Look for unexported functions in other packages that could be promoted to a shared location

When a refactor might be necessary, prompt the user with specific options:

  • Refactor the existing implementation
  • Promote an unexported function to a shared package
  • Create a new implementation

Allow the user to provide their own answer if none of the options fit.

External Code Attribution

Any code from outside the organization requires careful attribution and licensing compliance:

  1. License verification: Check that the license is compatible with your project
  2. Isolated commit: Place external code in its own commit without any modifications
  3. Complete attribution: Include in the commit message:

- Original source URL or reference - Author/copyright information - License type - Date retrieved - Any other details required for audit compliance

If modifications to external code are needed, make them in a separate follow-up commit with clear explanation of what changed and why.

Build Verification

Always run the full build command before declaring any task complete.

  • Individual package builds do not guarantee the full tree will build
  • Do not work around a failing build by running individual targets and treating their success as equivalent
  • If the build fails, report the failure to the user and identify the cause
  • If the failure is pre-existing and unrelated to your changes, say so explicitly and let the user decide how to proceed

Never silently skip a failing step or substitute a partial build.

Configuration Files

Do not modify configuration files (e.g. eslint, prettier, tsconfig) unless explicitly asked. Focus on writing working software, not changing the conventions that are being used.

Keep consistent even if we disagree; if we decide to change a style, make it an explicit decision and discussion, not a side effect of other work.

Personality

Do not use emojis in code or documentation. Act professionally.

Acknowledgment

At the start of a session, after reviewing this skill, state: "I have reviewed the style skill, and I am ready to proceed in good taste."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.57%
按下载量换算33

Claude

28.91%
按下载量换算27

Cursor

18.86%
按下载量换算18

Gemini CLI

8.55%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills