소스 정보
- 저장소
- AxGord/claude-workflow
- 최근 소스 활동
- 2026년 7월 15일 20:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/AxGord/claude-workflow --skill coding-skill-selector명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Debugging meta-patterns — what to do when fixes don't stick
Game dev precision and physics gotchas
Claude Code configuration gotchas — permission rule syntax and evaluation order, settings hierarchy, plugin install scopes, hook behavior
| name | coding-skill-selector |
| description | Select and load coding skills by file extensions and domains |
Load coding skills for the languages/domains THIS TASK will touch.
Always: Skill("preferences") + Skill("architecture")
Language menu (preferred path): the session's routing prompt included a
"Project language menu" block — an engine-run scan with per-extension file
counts and tool probes. Pick from it ONLY the languages this task will
actually touch: counts are a hint (1 stray file ≠ project language), the
task text decides. Do NOT re-scan the project yourself.
No menu in this session (spawned agent, scanner unavailable, empty block) →
fallback: determine extensions from the task's files yourself.
Tool-bound skills (a skill that mandates a CLI tool) load ONLY when the
language's menu line ends in an available-probe marker — (<tool> OK)
vs (<tool> missing) — or, when there is no menu or the language's line
is absent from it, after one command -v <tool> probe succeeds. Tool
unavailable → skip the tool skill and work with regular tools; a tool
discipline only applies where the tool exists.
By file extension (menu-picked or fallback):
Skill("lang-python")Skill("lang-haxe")Skill("lang-as3")Top-up rule: if mid-task you touch a file of a language whose skills are not loaded (task turned out wider than it looked) — load that language's skills per rule 3, including its tool conditions, BEFORE editing the file.
By domain (detect from imports, paths, or task description):
Skill("domain-yolo")pixi.js, PIXI globals) → Skill("domain-pixi")Skill("domain-reid")Skill("domain-gamedev")Skill("domain-ui")Skill("debugging")Skill("target-openfl-native")Skill("math")By tooling/platform:
Skill("build-cmake")Skill("ci-github-actions")Skill("aws-lambda")Skill("mcp-setup")Skill("claude-code-config")Skill("workflow-authoring")Skill("lint-setup") (skip if not installed; it loads the
user's preferences-lint lists itself — neither loads for normal
coding/review)Skill("web-reading")Skill("browser-verify")If 3+ independent files or parallel work → Skill("task-delegation")
Call Skill(name) for EVERY matched skill.
Gap check: If files involve a language/domain/tool with no matching skill above, ask the user: "No skill for [X] — proceed without, or create one first?"