find-rules
Discover and understand project rules, coding standards, and architectural guidelines before starting a task. Use when you need to know the constraints, patterns, or compliance requirements for a feature, file, or technology.
What this skill does
# 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
3. **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`.
3. **Extraction**: Read `.cursor/rules/react.mdc`.
4. **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`.
3. **Extraction**: Read relevant files.
4. **Findings**:
- ๐จ **CRITICAL**: Follow Elysia handler patterns.
- โ ๏ธ **MANDATORY**: Use specific data fetching wrappers.
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit โ setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard โ shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.