uctm 1.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.
@@ -0,0 +1,47 @@
1
+ {
2
+ "$schema": "http://uc-taskmanager.local/schemas/router-rules/v1.0.json",
3
+ "version": "1.1.0",
4
+ "description": "Router execution-mode 판정 기준 설정. 프로젝트별로 이 파일을 수정하여 라우팅 기준을 커스터마이즈한다.",
5
+ "decision_flow": [
6
+ "1. build_test_required 여부 판단 → false이면 direct",
7
+ "2. single_domain + sequential DAG → pipeline",
8
+ "3. 아래 full_conditions 중 하나라도 해당 → full"
9
+ ],
10
+ "rules": {
11
+ "direct": {
12
+ "description": "Router 단독 처리 — 빌드/테스트 검증 불필요, 서브에이전트 0",
13
+ "criteria": {
14
+ "build_test_required": false,
15
+ "note": "파일 수·줄 수 무관. 검증 없이 끝나는 작업이면 direct (텍스트 편집, 설정 변경, 단순 치환 등)"
16
+ }
17
+ },
18
+ "pipeline": {
19
+ "description": "Builder → Verifier → Committer 단일 흐름 — Builder 1회 호출",
20
+ "criteria": {
21
+ "build_test_required": true,
22
+ "single_domain_only": true,
23
+ "max_tasks": 5,
24
+ "dag_complexity": "sequential",
25
+ "note": "빌드/테스트 필요하지만 단일 도메인(BE만 또는 FE만)이고 한 흐름으로 처리 가능한 경우"
26
+ }
27
+ },
28
+ "full": {
29
+ "description": "Planner → Scheduler → [Builder → Verifier → Committer] × N",
30
+ "criteria": {
31
+ "any_of": [
32
+ "task_count > 5",
33
+ "dag_complexity == complex (TASK 간 의존성이 2레벨 이상)",
34
+ "multi_domain == true (BE + FE 동시 변경)",
35
+ "new_module == true (신규 모듈/기능 — 설계→구현→검증 다단계)",
36
+ "partial_rollback_needed == true (TASK 실패 시 부분 롤백 필요)"
37
+ ],
38
+ "note": "Builder를 여러 번 독립 호출해야 안전한 규모"
39
+ }
40
+ }
41
+ },
42
+ "customization_guide": {
43
+ "uc-taskmanager형 프로젝트 (md 편집 중심)": "direct 범위를 넓게. build_test_required=false인 경우 대부분 direct 처리",
44
+ "uc-teamspace형 프로젝트 (코드 개발 중심)": "pipeline/full 중심. 단순 버그 수정은 pipeline, 멀티도메인 기능은 full",
45
+ "max_tasks 조정": "팀 규모나 컨텍스트 한계에 따라 pipeline의 max_tasks를 3~7 사이로 조정 가능"
46
+ }
47
+ }