Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

pattern-detection模式检测

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

265

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rsmdt/the-startup --skill pattern-detection

简介

pattern-detection 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 获取详细功能说明。

SKILL.md

Pattern Recognition

When to Use

  • Before writing new code to ensure consistency with existing patterns
  • During code review to verify alignment with established conventions
  • When onboarding to understand project-specific practices
  • Before refactoring to preserve intentional design decisions

Core Methodology

Pattern Discovery Process

  1. Survey representative files: Read 3-5 files of the type you will create or modify
  2. Identify recurring structures: Note repeated patterns in naming, organization, imports
  3. Verify intentionality: Check if patterns are documented or consistently applied
  4. Apply discovered patterns: Use the same conventions in new code

Priority Order for Pattern Sources

  1. Existing code in the same module/feature - Most authoritative
  2. Project style guides or CONTRIBUTING.md - Explicit documentation
  3. Test files - Often reveal expected patterns and naming
  4. Similar files in adjacent modules - Fallback when no direct examples exist

Naming Convention Recognition

File Naming Patterns

Detect and follow the project's file naming style:

PatternExampleCommon In
kebab-caseuser-profile.tsNode.js, Vue, Angular
PascalCaseUserProfile.tsxReact components
snake_caseuser_profile.pyPython
camelCaseuserProfile.jsLegacy JS, Java

Function/Method Naming

Identify the project's verb conventions:

  • get vs fetch vs retrieve for data access
  • create vs add vs new for creation
  • update vs set vs modify for mutations
  • delete vs remove vs destroy for deletion
  • is/has/can/should prefixes for booleans

Variable Naming

Detect pluralization and specificity patterns:

  • Singular vs plural for collections (user vs users vs userList)
  • Hungarian notation presence (strName, iCount)
  • Private member indicators (_private, #private, mPrivate)

Architectural Pattern Recognition

Layer Identification

Recognize how the codebase separates concerns:

COMMON LAYERING PATTERNS:
- MVC: controllers/, models/, views/
- Clean Architecture: domain/, application/, infrastructure/
- Hexagonal: core/, adapters/, ports/
- Feature-based: features/auth/, features/billing/
- Type-based: components/, services/, utils/

Dependency Direction

Identify import patterns that reveal architecture:

  • Which modules import from which (dependency flow)
  • Shared vs feature-specific code boundaries
  • Framework code vs application code separation

State Management Patterns

Recognize how state flows through the application:

  • Global stores (Redux, Vuex, MobX patterns)
  • React Context usage patterns
  • Service layer patterns for backend state
  • Event-driven vs request-response patterns

Testing Pattern Recognition

Test Organization

Identify how tests are structured:

PatternStructureExample
Co-locatedsrc/user.ts, src/user.test.tsCommon in modern JS/TS
Mirror treesrc/user.ts, tests/src/user.test.tsTraditional, Java-style
Feature-basedsrc/user/, src/user/__tests__/React, organized features

Test Naming Conventions

Detect the project's test description style:

  • BDD style: it('should return user when found')
  • Descriptive: test('getUser returns user when id exists')
  • Function-focused: test_get_user_returns_user_when_found

Test Structure Patterns

Recognize Arrange-Act-Assert or Given-When-Then patterns:

  • Setup block conventions (beforeEach, fixtures, factories)
  • Assertion style (expect vs assert vs should)
  • Mock/stub patterns (jest.mock vs sinon vs manual)

Code Organization Patterns

Import Organization

Identify import ordering and grouping:

COMMON IMPORT PATTERNS:
1. External packages first, internal modules second
2. Grouped by type (React, libraries, local)
3. Alphabetized within groups
4. Absolute imports vs relative imports preference

Export Patterns

Recognize module boundary conventions:

  • Default exports vs named exports preference
  • Barrel files (index.ts re-exports) presence
  • Public API definition patterns

Comment and Documentation Patterns

Identify documentation conventions:

  • JSDoc/TSDoc presence and style
  • Inline comment frequency and style
  • README conventions per module/feature

Best Practices

  • Follow existing patterns even if imperfect - Consistency trumps personal preference
  • Document deviations explicitly - When breaking patterns intentionally, explain why
  • Pattern changes require migration - Dont introduce new patterns without updating existing code
  • Check tests for patterns too - Test code often reveals expected conventions
  • Prefer explicit over implicit - When patterns are unclear, ask or document assumptions

Anti-Patterns to Avoid

  • Mixing naming conventions in the same codebase
  • Introducing new architectural patterns without team consensus
  • Assuming patterns from other projects apply here
  • Ignoring test patterns when writing implementation
  • Creating "special" files that dont follow established structure

References

  • examples/common-patterns.md - Concrete examples of pattern recognition in action

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

26.01%
按下载量换算16

windsurf

25.03%
按下载量换算16

OpenCode

15.94%
按下载量换算10

Gemini CLI

12.06%
按下载量换算8

trae

7.27%
按下载量换算5

Codex

3.49%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills