소스 정보
- 저장소
- ForceInjection/domain-driven-design-skills
- 최근 소스 활동
- 2026년 5월 8일 03:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 25
- 포크
- 7
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill select-agents명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Conduct deep academic research for philosophy, neuroscience, cognitive science, and theoretical computer science (computability, complexity, AI theory, logic). Use when user asks to: research academic topics, find scholarly papers, conduct literature reviews, analyze citations, synthesize research findings, explore philosophical arguments, investigate consciousness/cognition, study computability/decidability/Turing machines, or analyze academic debates. Triggers on: 'research papers', 'literature review', 'academic sources', 'scholarly articles', 'philosophy of mind', 'computability theory', 'neuroscience studies', 'find papers on', 'what does the research say'.
Create clear action plans with steps, success criteria, and risk awareness. Use before implementing features, making changes, starting projects, or anytime you need a roadmap to success. Triggers on "plan this", "how should we approach", "what's the strategy", "steps to complete", or when facing complex multi-step work.
Add keyboard navigation to a feature using CommandRegistryService. Use when implementing keyboard shortcuts, vim-style navigation, or hotkeys for a page or component.
SOC 직업 분류 기준
| name | select-agents |
| description | Determine risk level and select appropriate stakeholder agents for a task |
| allowed-tools | Bash, Read, Glob |
Purpose: Classify task risk level and select the appropriate stakeholder agents during CLASSIFIED state.
Performance: Ensures correct agent selection, prevents over/under-staffing tasks.
| Files Modified | Risk Level | Required Agents |
|---|---|---|
src/main/java/** | HIGH | architect, formatter, engineer, tester, builder |
src/test/java/** | MEDIUM | architect, engineer, tester |
pom.xml, build.gradle | HIGH | architect, builder |
.github/**, CI/CD | HIGH | architect, builder, security |
docs/**/*.md | LOW | (none, or architect for technical docs) |
CLAUDE.md, protocol docs | HIGH | architect, formatter |
checkstyle.xml, style configs | HIGH | architect, formatter, builder |
| Task Type | Required Agents |
|---|---|
| New feature implementation | architect, formatter, engineer, tester, builder |
| Bug fix | architect, tester |
| Refactoring | architect, engineer |
| Performance optimization | architect, performance |
| Security enhancement | architect, security |
| Documentation only | (none) |
| Test additions | architect, tester |
| Style/formatting | architect, formatter, builder |
# List files that will be modified
FILES_TO_MODIFY=(
# Add file paths here
)
# Classify each file
HIGH_RISK=false
MEDIUM_RISK=false
LOW_RISK=true
for file in "${FILES_TO_MODIFY[@]}"; do
case "$file" in
src/main/java/*|src/*/main/java/*)
HIGH_RISK=true
;;
pom.xml|*/pom.xml|build.gradle)
HIGH_RISK=true
;;
.github/*|CLAUDE.md|**/task-protocol*.md)
HIGH_RISK=true
;;
checkstyle*.xml|pmd*.xml)
HIGH_RISK=true
;;
src/test/java/*|src/*/test/java/*)
MEDIUM_RISK=true
;;
docs/code-style/*|**/resources/*.properties)
MEDIUM_RISK=true
;;
*.md|*.txt|README*)
# Already LOW_RISK
;;
esac
done
if $HIGH_RISK; then
RISK_LEVEL="HIGH"
elif $MEDIUM_RISK; then
RISK_LEVEL="MEDIUM"
else
RISK_LEVEL="LOW"
fi
echo "Risk Level: $RISK_LEVEL"
TASK_DESCRIPTION="$TASK_DESCRIPTION" # Set task description
# Keywords that force escalation to HIGH
ESCALATION_KEYWORDS="security|authentication|authorization|encryption|breaking|architecture|api|database|concurrent|performance"
if echo "$TASK_DESCRIPTION" | grep -qiE "$ESCALATION_KEYWORDS"; then
echo "Escalation trigger detected - forcing HIGH risk"
RISK_LEVEL="HIGH"
fi
case "$RISK_LEVEL" in
"HIGH")
AGENTS=("architect") # Always required
# Add based on task type
if echo "$TASK_DESCRIPTION" | grep -qi "implement\|feature\|add\|create"; then
AGENTS+=("formatter" "engineer" "tester" "builder")
fi
if echo "$TASK_DESCRIPTION" | grep -qi "security\|auth"; then
AGENTS+=("security")
fi
if echo "$TASK_DESCRIPTION" | grep -qi "performance\|optim\|speed\|memory"; then
AGENTS+=("performance")
fi
if echo "$TASK_DESCRIPTION" | grep -qi "user\|interface\|ux\|ui"; then
AGENTS+=("usability")
fi
;;
"MEDIUM")
AGENTS=("architect" "engineer")
if echo "$TASK_DESCRIPTION" | grep -qi "test";
AGENTS+=()
| grep -qi ;
AGENTS+=()
;;
)
AGENTS=()
;;
Task requires file modifications?
│
├─ NO ──► RISK: LOW, AGENTS: none
│
└─ YES ──► Analyze file types
│
├─ src/main/java/** ──► HIGH RISK
│ └─ AGENTS: architect + formatter + engineer + tester + builder
│
├─ pom.xml, build config ──► HIGH RISK
│ └─ AGENTS: architect + builder
│
├─ CI/CD, security files ──► HIGH RISK
│ └─ AGENTS: architect + builder + security
│
├─ src/test/java/** ──► MEDIUM RISK
│ └─ AGENTS: architect + engineer + tester
│
├─ Style/config files ──► MEDIUM RISK
│ └─ AGENTS: architect + formatter
│
└─ Documentation only ──► LOW RISK
└─ AGENTS: none (or architect for technical docs)
| Agent | Domain | Responsibilities |
|---|---|---|
| architect | Architecture | Design decisions, API contracts, dependencies, implementation strategy |
| formatter | Style | Code formatting, style compliance, documentation standards |
| engineer | Quality | Refactoring, best practices, code quality patterns |
| tester | Testing | Test strategy, test implementation, coverage analysis |
| builder | Build | Build configuration, CI/CD, automated validation |
| Agent | Domain | When to Include |
|---|---|---|
| security | Security | Auth, encryption, input validation, sensitive data |
| performance | Performance | Algorithms, database queries, memory/CPU optimization |
| usability | UX | User-facing features, interface design, documentation |
❌ Wrong: Including performance agent for simple CRUD operations ❌ Wrong: Including security agent for internal utility class ❌ Wrong: Including usability agent for backend-only changes
❌ Wrong: New feature without tester agent ❌ Wrong: API changes without architect agent ❌ Wrong: Style configuration changes without formatter agent
Task: "Implement user authentication"
Task: "Fix typo in README"
Task: "Add unit tests for Calculator class"
After selection, update task.json with selected agents:
TASK_NAME="$TASK_NAME"
AGENTS='["architect", "formatter", "engineer", "tester", "builder"]'
RISK_LEVEL="HIGH"
jq --argjson agents "$AGENTS" \
--arg risk "$RISK_LEVEL" \
'.required_agents = $agents | .risk_level = $risk' \
/workspace/tasks/$TASK_NAME/task.json > /tmp/task.json.tmp
mv /tmp/task.json.tmp /workspace/tasks/$TASK_NAME/task.json