No description
Find a file
2026-08-17 12:58:29 +08:00
docs Harden multi-commit review boundaries 2026-08-17 12:58:29 +08:00
skills Harden multi-commit review boundaries 2026-08-17 12:58:29 +08:00
AGENTS.md Initialize skills repository documentation 2026-07-27 14:30:40 +08:00
CLAUDE.md Initialize skills repository documentation 2026-07-27 14:30:40 +08:00
README.md Harden multi-commit review boundaries 2026-08-17 12:58:29 +08:00

Skills

A personal collection of reusable agent skills, installable with the skills CLI.

Install

List the skills available in this repository:

npx skills add ssh://git@git.yongbeom.com:222/dernbu/skills.git --list

Install interactively:

npx skills add ssh://git@git.yongbeom.com:222/dernbu/skills.git

To install one skill for a specific agent:

npx skills add ssh://git@git.yongbeom.com:222/dernbu/skills.git \
  --skill <skill-name> \
  --agent codex

The Git remote requires access to git.yongbeom.com.

Skills

  • high-level-design — Collaboratively settle product behavior, error handling, and edge cases in a confirmed design.
  • interview-me — Compose high- and low-level design interviews, then implement the explicitly approved result.
  • jj-prepare-review — Prepare a current or specified JJ commit for a user-driven review with multiple approved commits, then summarize it and order changed files from downstream to upstream.
  • jj-simplify — Infer a JJ commit's requirement and minimize its implementation in a new cleanup child.
  • low-level-design — Collaboratively settle implementation paths, symbols, import relationships, and call relationships.

Structure

Each skill lives in its own directory:

skills/
└── <skill-name>/
    ├── SKILL.md
    ├── agents/       # Optional agent metadata
    ├── scripts/      # Optional executable helpers
    ├── references/   # Optional supporting documentation
    └── assets/       # Optional templates and other output assets

See AGENTS.md for contribution conventions.