Skill Create

SkillFiles & storage

Analyze local git history to extract coding patterns and generate SKILL.md files that teach your team's practices.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Skill Create skill

What this skill tells your AI

The instructions your AI receives, as published by luohaothu/everything-codex in skills/skill-create/SKILL.md and read by ahel’s review.

Analyze your repository's git history to extract coding patterns and generate SKILL.md files.

Usage

/skill-create                    # Analyze current repo
/skill-create --commits 100      # Analyze last 100 commits
/skill-create --output ./skills  # Custom output directory

Analysis Steps

Step 1: Gather Git Data

# Get recent commits with file changes
git log --oneline -n 200 --name-only --pretty=format:"%H|%s|%ad" --date=short

# Get commit frequency by file
git log --oneline -n 200 --name-only | sort | uniq -c | sort -rn | head -20

# Get commit message patterns
git log --oneline -n 200 | cut -d' ' -f2- | head -50

Step 2: Detect Patterns

PatternDetection Method
Commit conventionsRegex on commit messages
File co-changesFiles that always change together
Workflow sequencesRepeated file change patterns
ArchitectureFolder structure and naming conventions
Testing patternsTest file locations, naming, coverage

Step 3: Generate SKILL.md

---
name: <repo-name>-patterns
description: Coding patterns extracted from <repo-name>
---

# <Repo Name> Patterns

## Commit Conventions
<detected patterns>

## Code Architecture
<detected structure>

## Workflows
<detected file change patterns>

## Testing Patterns
<detected test conventions>

Process

  1. Ask user to confirm before saving
  2. Generate SKILL.md to specified output directory
  3. Report patterns found and confidence levels

Signals

GitHub stars
24
Forks
5
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
skill-create-luohaothu
Source
github.com/luohaothu/everything-codex