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

find-rules寻找规则

Agent Skill

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

总安装

2,444

周安装

105

GitHub Stars

323

下载量

857
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pedronauck/skills --skill find-rules

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • find-rules 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Find Rules

This skill helps you discover and understand the specific rules, conventions, and guidelines that apply to your current task. It systematically explores project documentation to ensure compliance with project standards.

Instructions

Follow this workflow to identify applicable rules:

1. Understand Context

First, analyze the task to determine:

  • Task Type: PRD creation, Technical Spec, Feature Implementation, Refactoring, Bugfix, etc.
  • Technologies: React, Elysia, Tailwind, Drizzle, etc.
  • Aspects: Architecture, Testing, Styling, Naming, etc.

2. Pattern-Based Discovery

REQUIRED: Use Glob and Grep tools for local code discovery to find relevant rule files and guidelines.

EXECUTION STRATEGY: Execute 3+ tools simultaneously in the FIRST action for efficiency. Never execute tools sequentially when they can run in parallel.

MANDATORY STEPS:

  1. Find Rule Files (run in parallel): Use multiple Glob patterns simultaneously. # Primary rules Glob pattern=".cursor/rules/*.mdc" Glob pattern="**/CLAUDE.md" Glob pattern="**/AGENTS.md" # Secondary rules Glob pattern="**/CONTRIBUTING.md" Glob pattern="**/ARCHITECTURE.md" Glob pattern="**/STYLEGUIDE.md" # Alternative AI tool locations Glob pattern=".windsurf/rules/*" Glob pattern=".cursorrules" Glob pattern=".copilot/*" # Configuration files Glob pattern="**/.eslintrc*" Glob pattern="**/tsconfig.json" Glob pattern="**/biome.json"
  2. Search by Content: Use Grep to find rules mentioning specific technologies or concepts. Grep pattern="react" path=".cursor/rules" Grep pattern="CRITICAL|MANDATORY" path=".cursor/rules" output_mode="content" Grep pattern="testing" glob="*.md" Grep pattern="must|should|never" glob="*.mdc" -i=true
  3. Search Locations Priority:

- .cursor/rules/*.mdc - Technology-specific rules (highest priority) - CLAUDE.md - General project guidelines - AGENTS.md - Agent-specific instructions - .windsurf/rules/, .cursorrules - Alternative AI tool rules - docs/ - Documentation directory - Configuration files - Implicit rules from tooling

3. Extract and Categorize Rules

Once you identify the relevant files:

  1. Read: Use the Read tool to examine the full content of the identified rule files (e.g., .cursor/rules/react.mdc).
  2. Categorize Each Rule: For each rule found, determine:

- Category: Domain area (e.g., Authentication, Testing, Security, Performance, Styling, Architecture) - Content: The actual rule or guideline text - Source File: File path where the rule was found - Enforcement Level: CRITICAL, MANDATORY, RECOMMENDED, or SUGGESTED

  1. Analyze:

- Look for CRITICAL or MANDATORY requirements first - Identify naming conventions, file structures, and required patterns - Note any conflicts or specific instructions for the technologies involved - Check for keywords: "must", "should", "never", "always", "required", "forbidden"

4. Present Findings

Summarize the rules you found in a clear, actionable format:

  • Rule/Guideline: The specific standard.
  • Source: File path and section where it is defined.
  • Enforcement Level: CRITICAL, MANDATORY, RECOMMENDED.
  • Applicability: Why it applies to this task.

Documentation Sources

Primary Rule Locations

  • **.cursor/rules/*.mdc**: Technology-specific rules (React, Backend, Tailwind, etc.)
  • CLAUDE.md: General AI assistant guidelines and project context
  • AGENTS.md: Agent-specific instructions and workflows

Secondary Rule Locations

  • CONTRIBUTING.md: Contribution guidelines and processes
  • CODE_OF_CONDUCT.md: Community and code standards
  • ARCHITECTURE.md: Architectural decisions and patterns
  • STYLEGUIDE.md: Code style conventions
  • CODING_STANDARDS.md: Programming standards

Alternative AI Tool Locations

  • .windsurf/rules/: Windsurf-specific rules
  • .cursorrules: Cursor rules file
  • .copilot/: GitHub Copilot configuration
  • .codeium/: Codeium configuration

Configuration Files (Implicit Rules)

  • **.eslintrc.*,.eslintrc.json**: Linting rules
  • **.prettierrc.*,.prettierrc.json**: Formatting rules
  • tsconfig.json: TypeScript compiler options
  • .oxlintrc.json: Oxlint configuration
  • biome.json: Biome formatter/linter rules

Documentation Directories

  • docs/: Project documentation
  • .github/: GitHub-specific templates and workflows

Enforcement Levels

  • 🚨 CRITICAL: Must be followed strictly; violation leads to task rejection.
  • ⚠️ MANDATORY: Required standards that should not be skipped.
  • RECOMMENDED: Best practices that should be followed when applicable.
  • 💡 SUGGESTED: Nice-to-have guidelines.

Common Rule Categories

When categorizing rules, use these common domain areas:

  • Architecture: Design patterns, module boundaries, dependencies
  • Testing: Test requirements, coverage, patterns
  • Security: Authentication, authorization, input validation
  • Performance: Optimization requirements, caching, lazy loading
  • Styling: CSS/Tailwind conventions, component styling
  • Naming: File naming, variable naming, function naming
  • Code Quality: Linting, formatting, type safety
  • API: Endpoint patterns, request/response handling
  • State Management: Redux, Context, hooks patterns
  • Error Handling: Exception handling, error boundaries

Examples

User: "I need to create a new React component." Skill Action:

  1. Context: Feature development, React, component structure.
  2. Discovery:

- Use Glob: Glob pattern=".cursor/rules/*.mdc" to find rule files. - Use Grep: Grep pattern="react" path=".cursor/rules" to find React-related rules. - Result points to .cursor/rules/react.mdc.

  1. Extraction: Read .cursor/rules/react.mdc.
  2. Findings:

- 🚨 CRITICAL: Use functional components exclusively. - ⚠️ MANDATORY: File naming must be kebab-case.tsx. - ⚠️ MANDATORY: Use hooks for state management.

User: "How do I write a backend endpoint?" Skill Action:

  1. Context: Backend, API, implementation.
  2. Discovery:

- Use Glob: Glob pattern=".cursor/rules/*.mdc" to list available rules. - Use Grep: Grep pattern="backend|endpoint|elysia" path=".cursor/rules" to find backend rules. - Result points to .cursor/rules/elysia.mdc and .cursor/rules/data-fetch.mdc.

  1. Extraction: Read relevant files.
  2. Findings:

- 🚨 CRITICAL: Follow Elysia handler patterns. - ⚠️ MANDATORY: Use specific data fetching wrappers.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.66%
按下载量换算323

Claude

29.82%
按下载量换算256

Cursor

20%
按下载量换算171

Gemini CLI

9.5%
按下载量换算81

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills