Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

xdg-claude

xdg-claude에는 xdg에서 수집한 skills 21개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
21
Stars
20
업데이트
2026-07-24
Forks
2
직업 범위
직업 카테고리 3개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

decision-log
소프트웨어 개발자

Record a durable engineering decision in the repo's append-only decision log (docs/decisions.md by default). Use after choosing between real alternatives — a dependency, a version pin, an architecture or protocol choice, a deliberate non-implementation, or a reversal of an earlier decision. Also use when the user says "log that decision", "write this down", or asks what was decided and why.

2026-07-24
ast-grep
소프트웨어 개발자

Structural code search and refactoring via ast-grep. Reach for this when Edit fails with "old_string not unique", when refactoring across formatting variations, or when matching code shape rather than text.

2026-06-29
code-structure
소프트웨어 개발자

Outline a file or package (functions, classes, methods, types, imports, exports) instead of reading it whole. Use before opening an unfamiliar or large file to orient, when surveying a package's API surface, or to find where a symbol is defined so you can Read just that range -- any "what's in / list / show me the structure of" need. Not for "where is X used" (search) or "how does X work" (read the body).

2026-06-29
authoring-plugins
소프트웨어 개발자

How to author Claude Code plugins (agents, skills, commands, hooks, MCP servers) and distribute them via a marketplace. Use when creating, structuring, or revising a plugin, deciding which skill pattern fits, or writing SKILL.md / agent / hook / manifest files.

2026-06-08
adversarial-implementation
소프트웨어 개발자

Implement TODO.md items via isolated subagents, then adversarially verify correctness. Drives a phased loop that implements one checkbox at a time, runs independent lint/test/review subagents, handles human verification, and commits per subsection.

2026-06-08
todo-planner
프로젝트 관리 전문가

Create and maintain structured TODO.md implementation plans with phased tasks, testing philosophy, and verification checklists. This skill should be used when the user asks to create a TODO file, implementation plan, project roadmap, or phased development plan. Also use when asked to update or extend an existing TODO.md in this style.

2026-06-08
interview-user
프로젝트 관리 전문가

When the user asks to be interviewed, grilled, or talked through an under-formed plan, design, or strategy, use this skill to run a structured tree-shaped Q&A persisted to disk. Elicitation only; does not produce the final artifact.

2026-05-31
commit
소프트웨어 개발자

Commit current changes with intelligent analysis and best-practice messages

2026-05-15
how-to-commit
소프트웨어 개발자

When the user asks to commit, check in, or save changes, consult this skill to decide whether to delegate to the commit subagent and how to craft the prompt.

2026-05-15
jira-cli
소프트웨어 개발자

Manage Jira issues via the jira-cli tool.

2026-05-11
how-to-plan-refactor
소프트웨어 개발자

When the user asks what to refactor, where to improve code quality, or for analysis of refactoring opportunities, consult this skill to decide whether to delegate to the plan-refactor subagent and how to craft the prompt.

2026-05-10
how-to-refactor
소프트웨어 개발자

When the user asks to refactor, restructure, extract, rename, simplify, or clean up code without changing behavior, consult this skill to decide whether to delegate to the refactor subagent and how to craft the prompt.

2026-05-10
plan-refactor
소프트웨어 개발자

Analyze code and recommend refactoring opportunities

2026-05-10
refactor
소프트웨어 개발자

Improve code quality without changing behavior via surgical refactoring

2026-05-10
how-to-isolated
소프트웨어 개발자

When a task would pollute the main context with intermediate results, file reads, or speculative exploration, consult this skill to decide whether to delegate to the isolated subagent and how to craft the prompt.

2026-05-10
isolated
소프트웨어 개발자

Execute a focused task in isolated context without polluting main conversation history

2026-05-10
code-review
소프트웨어 품질 보증 분석가·테스터

Analyze code quality, security, performance, and maintainability

2026-05-10
how-to-code-review
소프트웨어 품질 보증 분석가·테스터

When the user asks for a code review, PR review, or critical look at recent changes, consult this skill to decide whether to delegate to the code-review subagent and how to craft the prompt.

2026-05-10
ripgrep
소프트웨어 개발자

Search code and text files via ripgrep (rg) in Bash. Prefer rg over the Grep tool: rg gives full unredacted output, supports pipe composition, and exposes flags Grep does not (-F, -w, -L, -v).

2026-05-09
yq
소프트웨어 개발자

Extract a known field from a YAML file by running yq instead of reading the whole file.

2026-05-09
jq
소프트웨어 개발자

Extract a known field from a JSON file by running jq instead of reading the whole file.

2026-05-09