timsquad 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +347 -0
- package/bin/tsq.js +6 -0
- package/dist/commands/feedback.d.ts +3 -0
- package/dist/commands/feedback.d.ts.map +1 -0
- package/dist/commands/feedback.js +142 -0
- package/dist/commands/feedback.js.map +1 -0
- package/dist/commands/full.d.ts +3 -0
- package/dist/commands/full.d.ts.map +1 -0
- package/dist/commands/full.js +87 -0
- package/dist/commands/full.js.map +1 -0
- package/dist/commands/git/commit.d.ts +3 -0
- package/dist/commands/git/commit.d.ts.map +1 -0
- package/dist/commands/git/commit.js +88 -0
- package/dist/commands/git/commit.js.map +1 -0
- package/dist/commands/git/index.d.ts +5 -0
- package/dist/commands/git/index.d.ts.map +1 -0
- package/dist/commands/git/index.js +5 -0
- package/dist/commands/git/index.js.map +1 -0
- package/dist/commands/git/pr.d.ts +3 -0
- package/dist/commands/git/pr.d.ts.map +1 -0
- package/dist/commands/git/pr.js +138 -0
- package/dist/commands/git/pr.js.map +1 -0
- package/dist/commands/git/release.d.ts +3 -0
- package/dist/commands/git/release.d.ts.map +1 -0
- package/dist/commands/git/release.js +158 -0
- package/dist/commands/git/release.js.map +1 -0
- package/dist/commands/git/sync.d.ts +3 -0
- package/dist/commands/git/sync.d.ts.map +1 -0
- package/dist/commands/git/sync.js +132 -0
- package/dist/commands/git/sync.js.map +1 -0
- package/dist/commands/init.d.ts +3 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +150 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/log.d.ts +3 -0
- package/dist/commands/log.d.ts.map +1 -0
- package/dist/commands/log.js +271 -0
- package/dist/commands/log.js.map +1 -0
- package/dist/commands/metrics.d.ts +3 -0
- package/dist/commands/metrics.d.ts.map +1 -0
- package/dist/commands/metrics.js +299 -0
- package/dist/commands/metrics.js.map +1 -0
- package/dist/commands/quick.d.ts +3 -0
- package/dist/commands/quick.d.ts.map +1 -0
- package/dist/commands/quick.js +136 -0
- package/dist/commands/quick.js.map +1 -0
- package/dist/commands/retro.d.ts +3 -0
- package/dist/commands/retro.d.ts.map +1 -0
- package/dist/commands/retro.js +280 -0
- package/dist/commands/retro.js.map +1 -0
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +127 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/watch.d.ts +3 -0
- package/dist/commands/watch.d.ts.map +1 -0
- package/dist/commands/watch.js +213 -0
- package/dist/commands/watch.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +50 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/config.d.ts +34 -0
- package/dist/lib/config.d.ts.map +1 -0
- package/dist/lib/config.js +108 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/lib/project.d.ts +47 -0
- package/dist/lib/project.d.ts.map +1 -0
- package/dist/lib/project.js +191 -0
- package/dist/lib/project.js.map +1 -0
- package/dist/lib/template.d.ts +33 -0
- package/dist/lib/template.d.ts.map +1 -0
- package/dist/lib/template.js +151 -0
- package/dist/lib/template.js.map +1 -0
- package/dist/types/config.d.ts +75 -0
- package/dist/types/config.d.ts.map +1 -0
- package/dist/types/config.js +66 -0
- package/dist/types/config.js.map +1 -0
- package/dist/types/feedback.d.ts +59 -0
- package/dist/types/feedback.d.ts.map +1 -0
- package/dist/types/feedback.js +26 -0
- package/dist/types/feedback.js.map +1 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +5 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/project.d.ts +89 -0
- package/dist/types/project.d.ts.map +1 -0
- package/dist/types/project.js +44 -0
- package/dist/types/project.js.map +1 -0
- package/dist/utils/colors.d.ts +30 -0
- package/dist/utils/colors.d.ts.map +1 -0
- package/dist/utils/colors.js +54 -0
- package/dist/utils/colors.js.map +1 -0
- package/dist/utils/date.d.ts +25 -0
- package/dist/utils/date.d.ts.map +1 -0
- package/dist/utils/date.js +65 -0
- package/dist/utils/date.js.map +1 -0
- package/dist/utils/fs.d.ts +49 -0
- package/dist/utils/fs.d.ts.map +1 -0
- package/dist/utils/fs.js +84 -0
- package/dist/utils/fs.js.map +1 -0
- package/dist/utils/prompts.d.ts +31 -0
- package/dist/utils/prompts.d.ts.map +1 -0
- package/dist/utils/prompts.js +95 -0
- package/dist/utils/prompts.js.map +1 -0
- package/dist/utils/yaml.d.ts +21 -0
- package/dist/utils/yaml.d.ts.map +1 -0
- package/dist/utils/yaml.js +40 -0
- package/dist/utils/yaml.js.map +1 -0
- package/package.json +71 -0
- package/templates/common/CLAUDE.md.template +254 -0
- package/templates/common/claude/agents/tsq-dba.md +290 -0
- package/templates/common/claude/agents/tsq-designer.md +304 -0
- package/templates/common/claude/agents/tsq-developer.md +118 -0
- package/templates/common/claude/agents/tsq-planner.md +90 -0
- package/templates/common/claude/agents/tsq-prompter.md +336 -0
- package/templates/common/claude/agents/tsq-qa.md +134 -0
- package/templates/common/claude/agents/tsq-retro.md +168 -0
- package/templates/common/claude/agents/tsq-security.md +190 -0
- package/templates/common/claude/skills/architecture/SKILL.md +123 -0
- package/templates/common/claude/skills/backend/node/SKILL.md +1015 -0
- package/templates/common/claude/skills/coding/SKILL.md +171 -0
- package/templates/common/claude/skills/database/prisma/SKILL.md +357 -0
- package/templates/common/claude/skills/frontend/nextjs/SKILL.md +279 -0
- package/templates/common/claude/skills/frontend/react/SKILL.md +1729 -0
- package/templates/common/claude/skills/methodology/bdd/SKILL.md +234 -0
- package/templates/common/claude/skills/methodology/ddd/SKILL.md +311 -0
- package/templates/common/claude/skills/methodology/tdd/SKILL.md +512 -0
- package/templates/common/claude/skills/planning/SKILL.md +90 -0
- package/templates/common/claude/skills/security/SKILL.md +234 -0
- package/templates/common/claude/skills/testing/SKILL.md +146 -0
- package/templates/common/claude/skills/typescript/SKILL.md +435 -0
- package/templates/common/config.template.yaml +131 -0
- package/templates/common/timsquad/architectures/clean/ARCHITECTURE.md +49 -0
- package/templates/common/timsquad/architectures/clean/backend.xml +210 -0
- package/templates/common/timsquad/architectures/clean/frontend.xml +148 -0
- package/templates/common/timsquad/architectures/fsd/ARCHITECTURE.md +67 -0
- package/templates/common/timsquad/architectures/fsd/frontend.xml +288 -0
- package/templates/common/timsquad/architectures/hexagonal/ARCHITECTURE.md +60 -0
- package/templates/common/timsquad/architectures/hexagonal/backend.xml +300 -0
- package/templates/common/timsquad/constraints/competency-framework.xml +501 -0
- package/templates/common/timsquad/constraints/ssot-schema.xml +433 -0
- package/templates/common/timsquad/feedback/feedback-router.sh +341 -0
- package/templates/common/timsquad/feedback/routing-rules.yaml +352 -0
- package/templates/common/timsquad/generators/data-design.xml +290 -0
- package/templates/common/timsquad/generators/prd.xml +280 -0
- package/templates/common/timsquad/generators/requirements.xml +220 -0
- package/templates/common/timsquad/generators/service-spec.xml +266 -0
- package/templates/common/timsquad/logs/_example.md +81 -0
- package/templates/common/timsquad/logs/_template.md +46 -0
- package/templates/common/timsquad/patterns/cqrs.xml +127 -0
- package/templates/common/timsquad/patterns/event-sourcing.xml +85 -0
- package/templates/common/timsquad/patterns/repository.xml +64 -0
- package/templates/common/timsquad/process/state-machine.xml +343 -0
- package/templates/common/timsquad/process/validation-rules.xml +308 -0
- package/templates/common/timsquad/process/workflow-base.xml +202 -0
- package/templates/common/timsquad/retrospective/cycle-report.template.md +205 -0
- package/templates/common/timsquad/retrospective/metrics/metrics-schema.json +203 -0
- package/templates/common/timsquad/retrospective/patterns/failure-patterns.md +199 -0
- package/templates/common/timsquad/retrospective/patterns/success-patterns.md +262 -0
- package/templates/common/timsquad/retrospective/retrospective-config.xml +294 -0
- package/templates/common/timsquad/retrospective/retrospective-state.xml +210 -0
- package/templates/common/timsquad/ssot/adr/ADR-000-template.md +121 -0
- package/templates/common/timsquad/ssot/adr/ADR-001-example.md +115 -0
- package/templates/common/timsquad/ssot/data-design.template.md +132 -0
- package/templates/common/timsquad/ssot/deployment-spec.template.md +384 -0
- package/templates/common/timsquad/ssot/env-config.template.md +346 -0
- package/templates/common/timsquad/ssot/error-codes.template.md +114 -0
- package/templates/common/timsquad/ssot/functional-spec.template.md +185 -0
- package/templates/common/timsquad/ssot/glossary.template.md +148 -0
- package/templates/common/timsquad/ssot/integration-spec.template.md +391 -0
- package/templates/common/timsquad/ssot/planning.template.md +94 -0
- package/templates/common/timsquad/ssot/prd.template.md +102 -0
- package/templates/common/timsquad/ssot/requirements.template.md +117 -0
- package/templates/common/timsquad/ssot/security-spec.template.md +309 -0
- package/templates/common/timsquad/ssot/service-spec.template.md +194 -0
- package/templates/common/timsquad/ssot/test-spec.template.md +264 -0
- package/templates/common/timsquad/ssot/ui-ux-spec.template.md +262 -0
- package/templates/common/timsquad/state/workspace.xml +217 -0
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!--
|
|
3
|
+
TimSquad Competency Framework
|
|
4
|
+
|
|
5
|
+
이론적 기반:
|
|
6
|
+
- ACM TOSEM "LLM-Based Multi-Agent Systems for Software Engineering" (DOI: 10.1145/3712003)
|
|
7
|
+
- Competency Mapping: 역할별 필수 스킬, 지식, 역량 정의
|
|
8
|
+
- Performance Evaluation: 정량적/정성적 평가 방법
|
|
9
|
+
- Expert Consultation: 전문가 피드백 기반 개선
|
|
10
|
+
|
|
11
|
+
"Competency mapping entails developing comprehensive competency frameworks
|
|
12
|
+
for each specialized role. These frameworks define the essential skills,
|
|
13
|
+
knowledge areas, and competencies required."
|
|
14
|
+
-->
|
|
15
|
+
<competency-framework version="1.0">
|
|
16
|
+
<metadata>
|
|
17
|
+
<description>TimSquad 에이전트 역량 프레임워크</description>
|
|
18
|
+
<theoretical-basis>
|
|
19
|
+
<paper doi="10.1145/3712003">ACM TOSEM LMA Survey</paper>
|
|
20
|
+
<concept>Competency Mapping</concept>
|
|
21
|
+
<concept>Performance Evaluation</concept>
|
|
22
|
+
</theoretical-basis>
|
|
23
|
+
</metadata>
|
|
24
|
+
|
|
25
|
+
<!-- ============================================================
|
|
26
|
+
역량 카테고리 정의
|
|
27
|
+
============================================================ -->
|
|
28
|
+
<competency-categories>
|
|
29
|
+
<category id="technical" name="기술 역량">
|
|
30
|
+
<description>프로그래밍, 도구, 방법론 관련 역량</description>
|
|
31
|
+
</category>
|
|
32
|
+
<category id="domain" name="도메인 역량">
|
|
33
|
+
<description>특정 분야 전문 지식</description>
|
|
34
|
+
</category>
|
|
35
|
+
<category id="soft" name="소프트 역량">
|
|
36
|
+
<description>문제 해결, 커뮤니케이션, 협업</description>
|
|
37
|
+
</category>
|
|
38
|
+
<category id="process" name="프로세스 역량">
|
|
39
|
+
<description>워크플로우, 문서화, 품질 관리</description>
|
|
40
|
+
</category>
|
|
41
|
+
</competency-categories>
|
|
42
|
+
|
|
43
|
+
<!-- ============================================================
|
|
44
|
+
역량 레벨 정의
|
|
45
|
+
============================================================ -->
|
|
46
|
+
<competency-levels>
|
|
47
|
+
<level id="1" name="novice" score-range="0-20">
|
|
48
|
+
<description>기본 개념 이해, 가이드 필요</description>
|
|
49
|
+
</level>
|
|
50
|
+
<level id="2" name="beginner" score-range="21-40">
|
|
51
|
+
<description>기본 작업 수행 가능, 일부 지원 필요</description>
|
|
52
|
+
</level>
|
|
53
|
+
<level id="3" name="intermediate" score-range="41-60">
|
|
54
|
+
<description>독립적 작업 가능, 일반적인 문제 해결</description>
|
|
55
|
+
</level>
|
|
56
|
+
<level id="4" name="advanced" score-range="61-80">
|
|
57
|
+
<description>복잡한 문제 해결, 최적화 가능</description>
|
|
58
|
+
</level>
|
|
59
|
+
<level id="5" name="expert" score-range="81-100">
|
|
60
|
+
<description>전문가 수준, 다른 에이전트 가이드 가능</description>
|
|
61
|
+
</level>
|
|
62
|
+
</competency-levels>
|
|
63
|
+
|
|
64
|
+
<!-- ============================================================
|
|
65
|
+
에이전트별 역량 정의
|
|
66
|
+
============================================================ -->
|
|
67
|
+
<agents>
|
|
68
|
+
<!-- tsq-planner 역량 -->
|
|
69
|
+
<agent id="tsq-planner">
|
|
70
|
+
<role>Planning Agent</role>
|
|
71
|
+
<description>PRD, 기획, 아키텍처 설계 담당</description>
|
|
72
|
+
|
|
73
|
+
<competencies>
|
|
74
|
+
<!-- 기술 역량 -->
|
|
75
|
+
<competency id="architecture_design" category="technical">
|
|
76
|
+
<name>아키텍처 설계</name>
|
|
77
|
+
<description>시스템 아키텍처 설계 및 문서화</description>
|
|
78
|
+
<expected-level>expert</expected-level>
|
|
79
|
+
<indicators>
|
|
80
|
+
<indicator>Clean Architecture 적용</indicator>
|
|
81
|
+
<indicator>적절한 패턴 선택</indicator>
|
|
82
|
+
<indicator>확장성 고려</indicator>
|
|
83
|
+
</indicators>
|
|
84
|
+
<measurement>
|
|
85
|
+
<metric>architecture_review_pass_rate</metric>
|
|
86
|
+
<metric>adr_quality_score</metric>
|
|
87
|
+
</measurement>
|
|
88
|
+
</competency>
|
|
89
|
+
|
|
90
|
+
<competency id="api_design" category="technical">
|
|
91
|
+
<name>API 설계</name>
|
|
92
|
+
<description>RESTful API 명세 작성</description>
|
|
93
|
+
<expected-level>expert</expected-level>
|
|
94
|
+
<indicators>
|
|
95
|
+
<indicator>RESTful 원칙 준수</indicator>
|
|
96
|
+
<indicator>명확한 Request/Response 정의</indicator>
|
|
97
|
+
<indicator>에러 코드 체계화</indicator>
|
|
98
|
+
</indicators>
|
|
99
|
+
</competency>
|
|
100
|
+
|
|
101
|
+
<competency id="requirements_analysis" category="domain">
|
|
102
|
+
<name>요구사항 분석</name>
|
|
103
|
+
<description>비즈니스 요구사항을 기술 요건으로 변환</description>
|
|
104
|
+
<expected-level>expert</expected-level>
|
|
105
|
+
<indicators>
|
|
106
|
+
<indicator>명확한 수용 조건 정의</indicator>
|
|
107
|
+
<indicator>우선순위 분류 (MoSCoW)</indicator>
|
|
108
|
+
<indicator>모호성 제거</indicator>
|
|
109
|
+
</indicators>
|
|
110
|
+
</competency>
|
|
111
|
+
|
|
112
|
+
<!-- 소프트 역량 -->
|
|
113
|
+
<competency id="communication" category="soft">
|
|
114
|
+
<name>커뮤니케이션</name>
|
|
115
|
+
<description>이해관계자와의 명확한 소통</description>
|
|
116
|
+
<expected-level>expert</expected-level>
|
|
117
|
+
<indicators>
|
|
118
|
+
<indicator>명확한 상태 보고</indicator>
|
|
119
|
+
<indicator>적절한 질문</indicator>
|
|
120
|
+
<indicator>승인 요청 타이밍</indicator>
|
|
121
|
+
</indicators>
|
|
122
|
+
</competency>
|
|
123
|
+
|
|
124
|
+
<!-- 프로세스 역량 -->
|
|
125
|
+
<competency id="documentation" category="process">
|
|
126
|
+
<name>문서화</name>
|
|
127
|
+
<description>SSOT 문서 작성 및 관리</description>
|
|
128
|
+
<expected-level>expert</expected-level>
|
|
129
|
+
<indicators>
|
|
130
|
+
<indicator>템플릿 준수</indicator>
|
|
131
|
+
<indicator>일관된 형식</indicator>
|
|
132
|
+
<indicator>변경 이력 관리</indicator>
|
|
133
|
+
</indicators>
|
|
134
|
+
</competency>
|
|
135
|
+
</competencies>
|
|
136
|
+
|
|
137
|
+
<!-- 성과 지표 -->
|
|
138
|
+
<performance-metrics>
|
|
139
|
+
<metric id="prd_approval_rate" weight="0.2">
|
|
140
|
+
<description>PRD 첫 제출 승인률</description>
|
|
141
|
+
<formula>approved_first_submission / total_submissions</formula>
|
|
142
|
+
<target>80%</target>
|
|
143
|
+
</metric>
|
|
144
|
+
<metric id="requirement_clarity" weight="0.2">
|
|
145
|
+
<description>요구사항 명확성 (Level 3 피드백 역수)</description>
|
|
146
|
+
<formula>1 - (level3_feedback / total_requirements)</formula>
|
|
147
|
+
<target>90%</target>
|
|
148
|
+
</metric>
|
|
149
|
+
<metric id="ssot_completeness" weight="0.2">
|
|
150
|
+
<description>SSOT 문서 완성도</description>
|
|
151
|
+
<formula>filled_fields / required_fields</formula>
|
|
152
|
+
<target>95%</target>
|
|
153
|
+
</metric>
|
|
154
|
+
<metric id="api_consistency" weight="0.2">
|
|
155
|
+
<description>API 명세 일관성</description>
|
|
156
|
+
<formula>consistent_implementations / total_implementations</formula>
|
|
157
|
+
<target>95%</target>
|
|
158
|
+
</metric>
|
|
159
|
+
<metric id="handoff_quality" weight="0.2">
|
|
160
|
+
<description>Handoff 품질</description>
|
|
161
|
+
<formula>complete_handoffs / total_handoffs</formula>
|
|
162
|
+
<target>90%</target>
|
|
163
|
+
</metric>
|
|
164
|
+
</performance-metrics>
|
|
165
|
+
</agent>
|
|
166
|
+
|
|
167
|
+
<!-- tsq-developer 역량 -->
|
|
168
|
+
<agent id="tsq-developer">
|
|
169
|
+
<role>Development Agent</role>
|
|
170
|
+
<description>코드 구현, 테스트 작성, 리팩토링</description>
|
|
171
|
+
|
|
172
|
+
<competencies>
|
|
173
|
+
<competency id="coding" category="technical">
|
|
174
|
+
<name>코딩</name>
|
|
175
|
+
<description>클린 코드 작성</description>
|
|
176
|
+
<expected-level>expert</expected-level>
|
|
177
|
+
<indicators>
|
|
178
|
+
<indicator>SOLID 원칙 준수</indicator>
|
|
179
|
+
<indicator>적절한 추상화</indicator>
|
|
180
|
+
<indicator>가독성 높은 코드</indicator>
|
|
181
|
+
</indicators>
|
|
182
|
+
</competency>
|
|
183
|
+
|
|
184
|
+
<competency id="testing" category="technical">
|
|
185
|
+
<name>테스트</name>
|
|
186
|
+
<description>TDD, 테스트 작성</description>
|
|
187
|
+
<expected-level>expert</expected-level>
|
|
188
|
+
<indicators>
|
|
189
|
+
<indicator>테스트 커버리지 80%+</indicator>
|
|
190
|
+
<indicator>Given-When-Then 패턴</indicator>
|
|
191
|
+
<indicator>엣지 케이스 커버</indicator>
|
|
192
|
+
</indicators>
|
|
193
|
+
</competency>
|
|
194
|
+
|
|
195
|
+
<competency id="debugging" category="technical">
|
|
196
|
+
<name>디버깅</name>
|
|
197
|
+
<description>버그 분석 및 수정</description>
|
|
198
|
+
<expected-level>advanced</expected-level>
|
|
199
|
+
<indicators>
|
|
200
|
+
<indicator>근본 원인 분석</indicator>
|
|
201
|
+
<indicator>재현 가능한 테스트</indicator>
|
|
202
|
+
<indicator>회귀 방지</indicator>
|
|
203
|
+
</indicators>
|
|
204
|
+
</competency>
|
|
205
|
+
|
|
206
|
+
<competency id="ssot_compliance" category="process">
|
|
207
|
+
<name>SSOT 준수</name>
|
|
208
|
+
<description>SSOT 문서 기반 구현</description>
|
|
209
|
+
<expected-level>expert</expected-level>
|
|
210
|
+
<indicators>
|
|
211
|
+
<indicator>service-spec.md 준수</indicator>
|
|
212
|
+
<indicator>data-design.md 준수</indicator>
|
|
213
|
+
<indicator>error-codes.md 사용</indicator>
|
|
214
|
+
</indicators>
|
|
215
|
+
</competency>
|
|
216
|
+
|
|
217
|
+
<competency id="problem_solving" category="soft">
|
|
218
|
+
<name>문제 해결</name>
|
|
219
|
+
<description>복잡한 기술 문제 해결</description>
|
|
220
|
+
<expected-level>advanced</expected-level>
|
|
221
|
+
<indicators>
|
|
222
|
+
<indicator>문제 분해</indicator>
|
|
223
|
+
<indicator>대안 탐색</indicator>
|
|
224
|
+
<indicator>트레이드오프 분석</indicator>
|
|
225
|
+
</indicators>
|
|
226
|
+
</competency>
|
|
227
|
+
</competencies>
|
|
228
|
+
|
|
229
|
+
<performance-metrics>
|
|
230
|
+
<metric id="test_coverage" weight="0.25">
|
|
231
|
+
<description>테스트 커버리지</description>
|
|
232
|
+
<formula>covered_lines / total_lines</formula>
|
|
233
|
+
<target>80%</target>
|
|
234
|
+
</metric>
|
|
235
|
+
<metric id="code_review_pass_rate" weight="0.25">
|
|
236
|
+
<description>코드 리뷰 통과율</description>
|
|
237
|
+
<formula>passed_first_review / total_reviews</formula>
|
|
238
|
+
<target>90%</target>
|
|
239
|
+
</metric>
|
|
240
|
+
<metric id="bug_introduction_rate" weight="0.2">
|
|
241
|
+
<description>버그 도입률</description>
|
|
242
|
+
<formula>bugs_introduced / tasks_completed</formula>
|
|
243
|
+
<target>< 5%</target>
|
|
244
|
+
</metric>
|
|
245
|
+
<metric id="ssot_alignment" weight="0.2">
|
|
246
|
+
<description>SSOT 정합성</description>
|
|
247
|
+
<formula>aligned_implementations / total_implementations</formula>
|
|
248
|
+
<target>100%</target>
|
|
249
|
+
</metric>
|
|
250
|
+
<metric id="avg_revision_count" weight="0.1">
|
|
251
|
+
<description>평균 수정 횟수</description>
|
|
252
|
+
<formula>total_revisions / tasks_completed</formula>
|
|
253
|
+
<target>< 2</target>
|
|
254
|
+
</metric>
|
|
255
|
+
</performance-metrics>
|
|
256
|
+
</agent>
|
|
257
|
+
|
|
258
|
+
<!-- tsq-qa 역량 -->
|
|
259
|
+
<agent id="tsq-qa">
|
|
260
|
+
<role>QA Agent</role>
|
|
261
|
+
<description>코드 리뷰, 테스트 검증, 품질 체크</description>
|
|
262
|
+
|
|
263
|
+
<competencies>
|
|
264
|
+
<competency id="code_review" category="technical">
|
|
265
|
+
<name>코드 리뷰</name>
|
|
266
|
+
<description>체계적인 코드 리뷰</description>
|
|
267
|
+
<expected-level>expert</expected-level>
|
|
268
|
+
<indicators>
|
|
269
|
+
<indicator>SSOT 정합성 검증</indicator>
|
|
270
|
+
<indicator>보안 취약점 탐지</indicator>
|
|
271
|
+
<indicator>성능 이슈 식별</indicator>
|
|
272
|
+
</indicators>
|
|
273
|
+
</competency>
|
|
274
|
+
|
|
275
|
+
<competency id="test_verification" category="technical">
|
|
276
|
+
<name>테스트 검증</name>
|
|
277
|
+
<description>테스트 품질 및 커버리지 검증</description>
|
|
278
|
+
<expected-level>expert</expected-level>
|
|
279
|
+
<indicators>
|
|
280
|
+
<indicator>테스트 케이스 완전성</indicator>
|
|
281
|
+
<indicator>엣지 케이스 커버</indicator>
|
|
282
|
+
<indicator>테스트 가독성</indicator>
|
|
283
|
+
</indicators>
|
|
284
|
+
</competency>
|
|
285
|
+
|
|
286
|
+
<competency id="feedback_quality" category="soft">
|
|
287
|
+
<name>피드백 품질</name>
|
|
288
|
+
<description>건설적이고 명확한 피드백</description>
|
|
289
|
+
<expected-level>expert</expected-level>
|
|
290
|
+
<indicators>
|
|
291
|
+
<indicator>구체적 개선 제안</indicator>
|
|
292
|
+
<indicator>적절한 피드백 레벨 분류</indicator>
|
|
293
|
+
<indicator>재현 가능한 이슈 설명</indicator>
|
|
294
|
+
</indicators>
|
|
295
|
+
</competency>
|
|
296
|
+
|
|
297
|
+
<competency id="quality_standards" category="process">
|
|
298
|
+
<name>품질 기준</name>
|
|
299
|
+
<description>품질 기준 적용 및 검증</description>
|
|
300
|
+
<expected-level>expert</expected-level>
|
|
301
|
+
<indicators>
|
|
302
|
+
<indicator>체크리스트 준수</indicator>
|
|
303
|
+
<indicator>일관된 기준 적용</indicator>
|
|
304
|
+
<indicator>품질 메트릭 추적</indicator>
|
|
305
|
+
</indicators>
|
|
306
|
+
</competency>
|
|
307
|
+
</competencies>
|
|
308
|
+
|
|
309
|
+
<performance-metrics>
|
|
310
|
+
<metric id="bug_detection_rate" weight="0.3">
|
|
311
|
+
<description>버그 탐지율</description>
|
|
312
|
+
<formula>bugs_found_in_review / total_bugs</formula>
|
|
313
|
+
<target>80%</target>
|
|
314
|
+
</metric>
|
|
315
|
+
<metric id="false_positive_rate" weight="0.2">
|
|
316
|
+
<description>오탐률</description>
|
|
317
|
+
<formula>invalid_issues / total_issues_raised</formula>
|
|
318
|
+
<target>< 10%</target>
|
|
319
|
+
</metric>
|
|
320
|
+
<metric id="review_thoroughness" weight="0.25">
|
|
321
|
+
<description>리뷰 철저함</description>
|
|
322
|
+
<formula>issues_per_100_lines</formula>
|
|
323
|
+
<target>적정 범위</target>
|
|
324
|
+
</metric>
|
|
325
|
+
<metric id="feedback_actionability" weight="0.25">
|
|
326
|
+
<description>피드백 실행 가능성</description>
|
|
327
|
+
<formula>actioned_feedback / total_feedback</formula>
|
|
328
|
+
<target>95%</target>
|
|
329
|
+
</metric>
|
|
330
|
+
</performance-metrics>
|
|
331
|
+
</agent>
|
|
332
|
+
|
|
333
|
+
<!-- tsq-security 역량 -->
|
|
334
|
+
<agent id="tsq-security">
|
|
335
|
+
<role>Security Agent</role>
|
|
336
|
+
<description>보안 검토, 취약점 분석, 컴플라이언스</description>
|
|
337
|
+
|
|
338
|
+
<competencies>
|
|
339
|
+
<competency id="security_analysis" category="technical">
|
|
340
|
+
<name>보안 분석</name>
|
|
341
|
+
<description>코드 보안 취약점 분석</description>
|
|
342
|
+
<expected-level>expert</expected-level>
|
|
343
|
+
<indicators>
|
|
344
|
+
<indicator>OWASP Top 10 점검</indicator>
|
|
345
|
+
<indicator>인증/인가 검증</indicator>
|
|
346
|
+
<indicator>데이터 보호 검증</indicator>
|
|
347
|
+
</indicators>
|
|
348
|
+
</competency>
|
|
349
|
+
|
|
350
|
+
<competency id="threat_modeling" category="domain">
|
|
351
|
+
<name>위협 모델링</name>
|
|
352
|
+
<description>잠재적 위협 식별 및 대응</description>
|
|
353
|
+
<expected-level>advanced</expected-level>
|
|
354
|
+
<indicators>
|
|
355
|
+
<indicator>STRIDE 모델 적용</indicator>
|
|
356
|
+
<indicator>공격 벡터 식별</indicator>
|
|
357
|
+
<indicator>완화 전략 제시</indicator>
|
|
358
|
+
</indicators>
|
|
359
|
+
</competency>
|
|
360
|
+
|
|
361
|
+
<competency id="compliance" category="domain">
|
|
362
|
+
<name>컴플라이언스</name>
|
|
363
|
+
<description>규정 준수 검증</description>
|
|
364
|
+
<expected-level>advanced</expected-level>
|
|
365
|
+
<indicators>
|
|
366
|
+
<indicator>개인정보보호법 준수</indicator>
|
|
367
|
+
<indicator>업계 표준 준수</indicator>
|
|
368
|
+
<indicator>감사 준비</indicator>
|
|
369
|
+
</indicators>
|
|
370
|
+
</competency>
|
|
371
|
+
</competencies>
|
|
372
|
+
|
|
373
|
+
<performance-metrics>
|
|
374
|
+
<metric id="vulnerability_detection" weight="0.4">
|
|
375
|
+
<description>취약점 탐지율</description>
|
|
376
|
+
<formula>vulnerabilities_found / total_vulnerabilities</formula>
|
|
377
|
+
<target>90%</target>
|
|
378
|
+
</metric>
|
|
379
|
+
<metric id="false_alarm_rate" weight="0.2">
|
|
380
|
+
<description>오탐률</description>
|
|
381
|
+
<formula>false_positives / total_findings</formula>
|
|
382
|
+
<target>< 15%</target>
|
|
383
|
+
</metric>
|
|
384
|
+
<metric id="remediation_guidance" weight="0.2">
|
|
385
|
+
<description>수정 가이드 품질</description>
|
|
386
|
+
<formula>implemented_recommendations / total_recommendations</formula>
|
|
387
|
+
<target>90%</target>
|
|
388
|
+
</metric>
|
|
389
|
+
<metric id="compliance_coverage" weight="0.2">
|
|
390
|
+
<description>컴플라이언스 커버리지</description>
|
|
391
|
+
<formula>checked_requirements / total_requirements</formula>
|
|
392
|
+
<target>100%</target>
|
|
393
|
+
</metric>
|
|
394
|
+
</performance-metrics>
|
|
395
|
+
</agent>
|
|
396
|
+
|
|
397
|
+
<!-- tsq-retro 역량 -->
|
|
398
|
+
<agent id="tsq-retro">
|
|
399
|
+
<role>Retrospective Agent</role>
|
|
400
|
+
<description>회고 분석, 패턴 식별, 개선 제안</description>
|
|
401
|
+
|
|
402
|
+
<competencies>
|
|
403
|
+
<competency id="data_analysis" category="technical">
|
|
404
|
+
<name>데이터 분석</name>
|
|
405
|
+
<description>로그 및 메트릭 분석</description>
|
|
406
|
+
<expected-level>expert</expected-level>
|
|
407
|
+
<indicators>
|
|
408
|
+
<indicator>정확한 메트릭 계산</indicator>
|
|
409
|
+
<indicator>트렌드 식별</indicator>
|
|
410
|
+
<indicator>통계적 분석</indicator>
|
|
411
|
+
</indicators>
|
|
412
|
+
</competency>
|
|
413
|
+
|
|
414
|
+
<competency id="pattern_recognition" category="domain">
|
|
415
|
+
<name>패턴 인식</name>
|
|
416
|
+
<description>반복 패턴 식별 및 분류</description>
|
|
417
|
+
<expected-level>expert</expected-level>
|
|
418
|
+
<indicators>
|
|
419
|
+
<indicator>실패 패턴 탐지</indicator>
|
|
420
|
+
<indicator>성공 패턴 식별</indicator>
|
|
421
|
+
<indicator>근본 원인 분석</indicator>
|
|
422
|
+
</indicators>
|
|
423
|
+
</competency>
|
|
424
|
+
|
|
425
|
+
<competency id="improvement_design" category="soft">
|
|
426
|
+
<name>개선 설계</name>
|
|
427
|
+
<description>실행 가능한 개선안 제시</description>
|
|
428
|
+
<expected-level>advanced</expected-level>
|
|
429
|
+
<indicators>
|
|
430
|
+
<indicator>구체적 액션 아이템</indicator>
|
|
431
|
+
<indicator>측정 가능한 목표</indicator>
|
|
432
|
+
<indicator>우선순위 제시</indicator>
|
|
433
|
+
</indicators>
|
|
434
|
+
</competency>
|
|
435
|
+
</competencies>
|
|
436
|
+
|
|
437
|
+
<performance-metrics>
|
|
438
|
+
<metric id="pattern_accuracy" weight="0.3">
|
|
439
|
+
<description>패턴 정확도</description>
|
|
440
|
+
<formula>validated_patterns / identified_patterns</formula>
|
|
441
|
+
<target>85%</target>
|
|
442
|
+
</metric>
|
|
443
|
+
<metric id="improvement_adoption" weight="0.3">
|
|
444
|
+
<description>개선안 채택률</description>
|
|
445
|
+
<formula>adopted_improvements / proposed_improvements</formula>
|
|
446
|
+
<target>70%</target>
|
|
447
|
+
</metric>
|
|
448
|
+
<metric id="improvement_effectiveness" weight="0.4">
|
|
449
|
+
<description>개선 효과</description>
|
|
450
|
+
<formula>resolved_patterns / targeted_patterns</formula>
|
|
451
|
+
<target>80%</target>
|
|
452
|
+
</metric>
|
|
453
|
+
</performance-metrics>
|
|
454
|
+
</agent>
|
|
455
|
+
</agents>
|
|
456
|
+
|
|
457
|
+
<!-- ============================================================
|
|
458
|
+
평가 프로세스
|
|
459
|
+
ACM TOSEM: "Expert consultation and iterative refinement"
|
|
460
|
+
============================================================ -->
|
|
461
|
+
<evaluation-process>
|
|
462
|
+
<step order="1" name="Data Collection">
|
|
463
|
+
<description>작업 로그, 피드백, 메트릭 수집</description>
|
|
464
|
+
<sources>
|
|
465
|
+
<source>.timsquad/logs/</source>
|
|
466
|
+
<source>.timsquad/state/workspace.xml</source>
|
|
467
|
+
<source>.timsquad/retrospective/</source>
|
|
468
|
+
</sources>
|
|
469
|
+
</step>
|
|
470
|
+
|
|
471
|
+
<step order="2" name="Quantitative Evaluation">
|
|
472
|
+
<description>정량적 메트릭 기반 점수 계산</description>
|
|
473
|
+
<method>performance-metrics 기반 가중 평균</method>
|
|
474
|
+
</step>
|
|
475
|
+
|
|
476
|
+
<step order="3" name="Qualitative Assessment">
|
|
477
|
+
<description>정성적 평가 (코드 품질, 문서 품질)</description>
|
|
478
|
+
<method>샘플링 기반 리뷰</method>
|
|
479
|
+
</step>
|
|
480
|
+
|
|
481
|
+
<step order="4" name="Expert Consultation">
|
|
482
|
+
<description>PM/사용자 피드백 수집</description>
|
|
483
|
+
<method>회고 리포트 검토</method>
|
|
484
|
+
</step>
|
|
485
|
+
|
|
486
|
+
<step order="5" name="Score Aggregation">
|
|
487
|
+
<description>최종 점수 산출</description>
|
|
488
|
+
<formula>
|
|
489
|
+
final_score =
|
|
490
|
+
(quantitative_score * 0.6) +
|
|
491
|
+
(qualitative_score * 0.2) +
|
|
492
|
+
(expert_feedback_score * 0.2)
|
|
493
|
+
</formula>
|
|
494
|
+
</step>
|
|
495
|
+
|
|
496
|
+
<step order="6" name="Improvement Planning">
|
|
497
|
+
<description>저성과 영역 개선 계획 수립</description>
|
|
498
|
+
<trigger>score < 70</trigger>
|
|
499
|
+
</step>
|
|
500
|
+
</evaluation-process>
|
|
501
|
+
</competency-framework>
|