🎯

parallel-explore

🎯Skill

from front-depiction/claude-setup

VibeIndex|
What it does

Explores and analyzes code patterns in parallel across multiple files or directories, providing context-aware suggestions and potential optimizations based on detected patterns.

parallel-explore

Installation

Install skill:
npx skills add https://github.com/front-depiction/claude-setup --skill parallel-explore
4
AddedJan 27, 2026

Skill Details

SKILL.md

Overview

# .claude

Pattern-based suggestions and guardrails for Claude Code tool usage via PreToolUse/PostToolUse hooks.

Overview

The pattern-detector system hooks into Claude Code's PreToolUse and PostToolUse events to provide:

  • Context-aware suggestions when patterns are detected in tool inputs
  • Permission controls (ask/deny) for dangerous operations
  • Automatic skill recommendations based on code patterns

Patterns

Patterns are markdown files in .claude/patterns/ with YAML frontmatter that match against tool inputs:

```markdown

---

name: prefer-option-over-null

description: Suggest Option type instead of null/undefined

event: PostToolUse

tool: Edit|Write

glob: "*/.ts"

pattern: "\bnull\b|\bundefined\b"

action: context

level: info

tag: code-smell

---

Use Option from Effect instead of null or undefined:

```typescript

// Avoid

const findUser = (id: string): User | null => ...

// Prefer

const findUser = (id: string): Option.Option => ...

```

```