From 3a28193d7a7a86efd4c88590d1f33785d0a1d7db Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Wed, 21 Jan 2026 08:46:14 +0900 Subject: [PATCH 1/2] chore: remove continuous-learning skill --- skills/continuous-learning/SKILL.md | 125 ---------------------------- 1 file changed, 125 deletions(-) delete mode 100644 skills/continuous-learning/SKILL.md diff --git a/skills/continuous-learning/SKILL.md b/skills/continuous-learning/SKILL.md deleted file mode 100644 index e301db8..0000000 --- a/skills/continuous-learning/SKILL.md +++ /dev/null @@ -1,125 +0,0 @@ ---- -name: continuous-learning -allowed-tools: Read, Write, Glob, Grep, Bash, TodoWrite -description: Extract and persist reusable knowledge from debugging sessions into the skills repository ---- - -# /continuous-learning — Extract debugging knowledge - -Persist non-obvious solutions discovered during tasks as new skills in the skills repository. - -## When to Use - -| Trigger | Example | -|---------|---------| -| Solved obscure bug after hours of debugging | Finally fixed that race condition no Stack Overflow mentioned | -| Found undocumented API behavior | Discovered retry logic needed for flaky endpoint | -| Created reusable workflow | Built a deployment pipeline others could use | -| Discovered tool gotcha | Learned bun handles imports differently than node | -| Session ending with valuable insight | About to close terminal with hard-won knowledge | - -## Before Creating - -Check if skill already exists: - -```bash -ls ~/dotfiles/dotagents/skills/ -``` - -If a similar skill exists, consider updating it instead of creating a new one. - -## Quick Workflow - -```bash -# 1. Check skill doesn't already exist -ls ~/dotfiles/dotagents/skills/ | grep -i && echo "Skill exists!" && exit 1 - -# 2. Create skill directory -cd ~/dotfiles/dotagents -git checkout main && git pull origin main -mkdir -p skills/ - -# 3. Write SKILL.md -cat > skills//SKILL.md << 'SKILL' ---- -name: -allowed-tools: Read, Write, Bash, TodoWrite -description: ---- - -# / - - - -## When to Use - -| Trigger | Example | -|---------|---------| -| | | - -## Quick Workflow - -```bash -# Key commands or steps -``` - -## Guidelines - -- Key point 1 -- Key point 2 -SKILL - -# 4. Commit, create PR, and return to main -git checkout -b feat/-skill -git add skills/ -git commit -m "feat: add skill" -git push -u origin feat/-skill -gh pr create --title "feat: add skill" --body "Add skill for..." -git checkout main -``` - -## Extraction Criteria - -Ask before extracting: - -1. **Exists?** — Check if skill already exists in the repository -2. **Discovered?** — Not just read from documentation -3. **Reusable?** — Helps in future similar situations -4. **Non-trivial?** — Would take time to rediscover -5. **Verifiable?** — Has clear verification steps - -Extract only if skill doesn't exist and **all four criteria** are yes. - -## Skill Format Requirements - -Match existing skills in `~/dotfiles/dotagents/skills/`: - -```yaml ---- -name: kebab-case-name -allowed-tools: Read, Write, Bash, TodoWrite # tools the skill needs -description: One-line description with specific keywords ---- -``` - -## Description Best Practices - -| Bad | Good | -|-----|------| -| "Database issues" | "Fix PrismaClientKnownRequestError in serverless" | -| "Build problems" | "Resolve vite circular dependency with barrel files" | - -## Anti-Patterns - -- **Duplicate skills** — Check existing skills first -- **Documentation lookups** — Just reading official docs -- **Trivial fixes** — Typos, missing imports -- **Unverified** — Hasn't been confirmed to work - -## Guidelines - -- Check existing skills before creating new ones -- One skill per directory with SKILL.md -- Match format of existing skills (pr-create, changesets, etc.) -- Create PR and checkout back to main -- Run `/continuous-learning` after solving complex problems From 36440e7e82bd9940fa2f38893757c4a98fd9b75c Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Wed, 21 Jan 2026 08:47:20 +0900 Subject: [PATCH 2/2] chore: remove continuous-learning skill --- .ruler/skills/continuous-learning/SKILL.md | 125 --------------------- 1 file changed, 125 deletions(-) delete mode 100644 .ruler/skills/continuous-learning/SKILL.md diff --git a/.ruler/skills/continuous-learning/SKILL.md b/.ruler/skills/continuous-learning/SKILL.md deleted file mode 100644 index e301db8..0000000 --- a/.ruler/skills/continuous-learning/SKILL.md +++ /dev/null @@ -1,125 +0,0 @@ ---- -name: continuous-learning -allowed-tools: Read, Write, Glob, Grep, Bash, TodoWrite -description: Extract and persist reusable knowledge from debugging sessions into the skills repository ---- - -# /continuous-learning — Extract debugging knowledge - -Persist non-obvious solutions discovered during tasks as new skills in the skills repository. - -## When to Use - -| Trigger | Example | -|---------|---------| -| Solved obscure bug after hours of debugging | Finally fixed that race condition no Stack Overflow mentioned | -| Found undocumented API behavior | Discovered retry logic needed for flaky endpoint | -| Created reusable workflow | Built a deployment pipeline others could use | -| Discovered tool gotcha | Learned bun handles imports differently than node | -| Session ending with valuable insight | About to close terminal with hard-won knowledge | - -## Before Creating - -Check if skill already exists: - -```bash -ls ~/dotfiles/dotagents/skills/ -``` - -If a similar skill exists, consider updating it instead of creating a new one. - -## Quick Workflow - -```bash -# 1. Check skill doesn't already exist -ls ~/dotfiles/dotagents/skills/ | grep -i && echo "Skill exists!" && exit 1 - -# 2. Create skill directory -cd ~/dotfiles/dotagents -git checkout main && git pull origin main -mkdir -p skills/ - -# 3. Write SKILL.md -cat > skills//SKILL.md << 'SKILL' ---- -name: -allowed-tools: Read, Write, Bash, TodoWrite -description: ---- - -# / - - - -## When to Use - -| Trigger | Example | -|---------|---------| -| | | - -## Quick Workflow - -```bash -# Key commands or steps -``` - -## Guidelines - -- Key point 1 -- Key point 2 -SKILL - -# 4. Commit, create PR, and return to main -git checkout -b feat/-skill -git add skills/ -git commit -m "feat: add skill" -git push -u origin feat/-skill -gh pr create --title "feat: add skill" --body "Add skill for..." -git checkout main -``` - -## Extraction Criteria - -Ask before extracting: - -1. **Exists?** — Check if skill already exists in the repository -2. **Discovered?** — Not just read from documentation -3. **Reusable?** — Helps in future similar situations -4. **Non-trivial?** — Would take time to rediscover -5. **Verifiable?** — Has clear verification steps - -Extract only if skill doesn't exist and **all four criteria** are yes. - -## Skill Format Requirements - -Match existing skills in `~/dotfiles/dotagents/skills/`: - -```yaml ---- -name: kebab-case-name -allowed-tools: Read, Write, Bash, TodoWrite # tools the skill needs -description: One-line description with specific keywords ---- -``` - -## Description Best Practices - -| Bad | Good | -|-----|------| -| "Database issues" | "Fix PrismaClientKnownRequestError in serverless" | -| "Build problems" | "Resolve vite circular dependency with barrel files" | - -## Anti-Patterns - -- **Duplicate skills** — Check existing skills first -- **Documentation lookups** — Just reading official docs -- **Trivial fixes** — Typos, missing imports -- **Unverified** — Hasn't been confirmed to work - -## Guidelines - -- Check existing skills before creating new ones -- One skill per directory with SKILL.md -- Match format of existing skills (pr-create, changesets, etc.) -- Create PR and checkout back to main -- Run `/continuous-learning` after solving complex problems