Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

hunting-skills

verified

Searches external skills via claude-skills-mcp, analyzes and rewrites as new project-specific skills. Use when looking for external skill implementations to adapt.

View on GitHub

Marketplace

rcc

wayne930242/Reflexive-Claude-Code

Plugin

ace

Repository

wayne930242/Reflexive-Claude-Code
7stars

plugins/ace/skills/hunting-skills/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/wayne930242/Reflexive-Claude-Code/blob/main/plugins/ace/skills/hunting-skills/SKILL.md -a claude-code --skill hunting-skills

Installation paths:

Claude
.claude/skills/hunting-skills/
Powered by add-skill CLI

Instructions

# Hunting Skills (Chrollo)

Search and adapt external skills from the Claude Skills library to create new project-specific skills.

## Prerequisites

Requires `claude-skills-mcp` MCP server.

### Installation Check

Verify MCP tools are accessible:
- `mcp__claude-skills__find_helpful_skills`
- `mcp__claude-skills__read_skill_document`
- `mcp__claude-skills__list_skills`

If not available:

```bash
claude mcp add --scope user --transport stdio claude-skills -- uvx claude-skills-mcp
claude mcp list
```

## Process

### 1. Search External Skills

```
mcp__claude-skills__find_helpful_skills(task_description: "<query>")
```

Select the most relevant skills (typically 1-3).

### 2. Read Skill Content

First list available files:

```
mcp__claude-skills__read_skill_document(skill_name: "...")
```

Then retrieve specific files:

```
mcp__claude-skills__read_skill_document(skill_name: "...", document_path: "SKILL.md")
mcp__claude-skills__read_skill_document(skill_name: "...", document_path: "references/*")
```

### 3. Analyze Project Context

```bash
find . -name "SKILL.md" -type f
ls .claude/rules/ 2>/dev/null
cat CLAUDE.md
```

Identify overlaps, project conventions, and gaps.

### 4. Rewrite as New Skill

Use the `writing-skills` skill to create a new skill that:
1. **Adapts** external skill's capabilities to project context
2. **Follows** project conventions (from CLAUDE.md and rules)
3. **Integrates** with existing skills (no duplication)

Key transformations:
- Replace generic examples with project-specific ones
- Add project conventions inline
- Reference existing skills instead of duplicating

### 5. Validate & Update Manifest

```bash
python3 skills/write-skill/scripts/validate_skill.py <new-skill-path>
```

Add the new skill to the appropriate plugin JSON.

## Output Format

```markdown
## Hunting Report

### External Skills Found
- [skill-name]: [relevance] - [description]

### New Skill Created
- Path: skills/[new-skill-name]/
- Based on: [external-skill-name]
- 

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
2005 chars