triflux 10.9.20 → 10.9.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "triflux",
3
- "version": "10.9.20",
3
+ "version": "10.9.21",
4
4
  "description": "CLI-first multi-model orchestrator for Claude Code — route tasks to Codex, Gemini, and Claude",
5
5
  "type": "module",
6
6
  "bin": {
@@ -60,7 +60,7 @@ Claude 토큰을 절약하기 위해 분석 작업은 Gemini CLI에 위임합니
60
60
  **단계 진입 시 Gemini 위임:**
61
61
 
62
62
  ```
63
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 1: Clarify. Topic: {topic}. Previous answers: none. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
63
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 1: Clarify. Topic: {topic}. Previous answers: none. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
64
64
  ```
65
65
 
66
66
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -80,7 +80,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
80
80
  **단계 진입 시 Gemini 위임:**
81
81
 
82
82
  ```
83
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 2: Decompose. Topic: {topic}. Previous answers: {stage1_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
83
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 2: Decompose. Topic: {topic}. Previous answers: {stage1_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
84
84
  ```
85
85
 
86
86
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -100,7 +100,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
100
100
  **단계 진입 시 Gemini 위임:**
101
101
 
102
102
  ```
103
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 3: Challenge. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
103
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 3: Challenge. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
104
104
  ```
105
105
 
106
106
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -120,7 +120,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
120
120
  **단계 진입 시 Gemini 위임:**
121
121
 
122
122
  ```
123
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 4: Alternatives. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
123
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 4: Alternatives. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
124
124
  ```
125
125
 
126
126
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -140,7 +140,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
140
140
  **단계 진입 시 Gemini 위임:**
141
141
 
142
142
  ```
143
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 5: Synthesize. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers} {stage4_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
143
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 5: Synthesize. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers} {stage4_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
144
144
  ```
145
145
 
146
146
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -158,7 +158,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
158
158
  **산출물 생성 Gemini 위임:**
159
159
 
160
160
  ```
161
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview complete. Topic: {topic}. All answers: {all_answers}. Generate a structured requirements document draft. Return the full markdown document.'")
161
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview complete. Topic: {topic}. All answers: {all_answers}. Generate a structured requirements document draft. Return the full markdown document.'")
162
162
  ```
163
163
 
164
164
  Gemini 실패 시 Claude가 직접 아래 형식으로 문서를 작성합니다.
@@ -60,7 +60,7 @@ Claude 토큰을 절약하기 위해 분석 작업은 Gemini CLI에 위임합니
60
60
  **단계 진입 시 Gemini 위임:**
61
61
 
62
62
  ```
63
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 1: Clarify. Topic: {topic}. Previous answers: none. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
63
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 1: Clarify. Topic: {topic}. Previous answers: none. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
64
64
  ```
65
65
 
66
66
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -80,7 +80,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
80
80
  **단계 진입 시 Gemini 위임:**
81
81
 
82
82
  ```
83
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 2: Decompose. Topic: {topic}. Previous answers: {stage1_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
83
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 2: Decompose. Topic: {topic}. Previous answers: {stage1_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
84
84
  ```
85
85
 
86
86
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -100,7 +100,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
100
100
  **단계 진입 시 Gemini 위임:**
101
101
 
102
102
  ```
103
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 3: Challenge. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
103
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 3: Challenge. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
104
104
  ```
105
105
 
106
106
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -120,7 +120,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
120
120
  **단계 진입 시 Gemini 위임:**
121
121
 
122
122
  ```
123
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 4: Alternatives. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
123
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 4: Alternatives. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
124
124
  ```
125
125
 
126
126
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -140,7 +140,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
140
140
  **단계 진입 시 Gemini 위임:**
141
141
 
142
142
  ```
143
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview Stage 5: Synthesize. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers} {stage4_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
143
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview Stage 5: Synthesize. Topic: {topic}. Previous answers: {stage1_answers} {stage2_answers} {stage3_answers} {stage4_answers}. Generate 3 probing questions for this stage and analyze prior responses. Return JSON: {analysis, questions, key_insights}'")
144
144
  ```
145
145
 
146
146
  Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게 제시합니다.
@@ -158,7 +158,7 @@ Gemini가 반환한 `questions` 배열을 AskUserQuestion으로 사용자에게
158
158
  **산출물 생성 Gemini 위임:**
159
159
 
160
160
  ```
161
- Bash("bash scripts/tfx-route.sh gemini exec 'Deep interview complete. Topic: {topic}. All answers: {all_answers}. Generate a structured requirements document draft. Return the full markdown document.'")
161
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Deep interview complete. Topic: {topic}. All answers: {all_answers}. Generate a structured requirements document draft. Return the full markdown document.'")
162
162
  ```
163
163
 
164
164
  Gemini 실패 시 Claude가 직접 아래 형식으로 문서를 작성합니다.
@@ -63,7 +63,7 @@ AskUserQuestion:
63
63
  Claude는 프로젝트 경로와 모드를 Gemini에 전달하고, Gemini가 파일 트리 스캔·메타데이터 추출·인덱스 생성을 모두 수행한다.
64
64
 
65
65
  ```
66
- Bash("bash scripts/tfx-route.sh gemini exec 'Scan the project at {path}. For each source file, extract: exports, imports, line count, file type. Exclude node_modules/, .git/, dist/, build/, coverage/, *.lock, *.log, *.map. Generate both PROJECT_INDEX.md and PROJECT_INDEX.json following this format:
66
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Scan the project at {path}. For each source file, extract: exports, imports, line count, file type. Exclude node_modules/, .git/, dist/, build/, coverage/, *.lock, *.log, *.map. Generate both PROJECT_INDEX.md and PROJECT_INDEX.json following this format:
67
67
 
68
68
  PROJECT_INDEX.md:
69
69
  # PROJECT_INDEX.md
@@ -53,7 +53,7 @@ AskUserQuestion:
53
53
  Claude는 프로젝트 경로와 모드를 Gemini에 전달하고, Gemini가 파일 트리 스캔·메타데이터 추출·인덱스 생성을 모두 수행한다.
54
54
 
55
55
  ```
56
- Bash("bash scripts/tfx-route.sh gemini exec 'Scan the project at {path}. For each source file, extract: exports, imports, line count, file type. Exclude node_modules/, .git/, dist/, build/, coverage/, *.lock, *.log, *.map. Generate both PROJECT_INDEX.md and PROJECT_INDEX.json following this format:
56
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Scan the project at {path}. For each source file, extract: exports, imports, line count, file type. Exclude node_modules/, .git/, dist/, build/, coverage/, *.lock, *.log, *.map. Generate both PROJECT_INDEX.md and PROJECT_INDEX.json following this format:
57
57
 
58
58
  PROJECT_INDEX.md:
59
59
  # PROJECT_INDEX.md
@@ -21,7 +21,7 @@ argument-hint: "<구현할 주제 또는 요구사항>"
21
21
  > "측정할 수 없으면 개선할 수 없다."
22
22
  >
23
23
  > **Gemini 위임**: 분석·점수 계산·산출물 초안은 Gemini CLI에 위임하여 Claude 토큰을 절약한다.
24
- > 위임 패턴: `Bash("bash scripts/tfx-route.sh gemini exec '{prompt}'")`
24
+ > 위임 패턴: `Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec '{prompt}'")`
25
25
 
26
26
  ## 위임 패턴
27
27
 
@@ -34,7 +34,7 @@ Claude와 Gemini의 역할을 분리하여 토큰을 최적화한다.
34
34
 
35
35
  ```bash
36
36
  # 위임 호출 형태
37
- Bash("bash scripts/tfx-route.sh gemini exec '{prompt}'")
37
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec '{prompt}'")
38
38
  ```
39
39
 
40
40
  Gemini 실패 시 Fallback: Claude Opus가 분석을 직접 처리한다.
@@ -76,7 +76,7 @@ ambiguity = 1 - (goal × 0.40 + constraints × 0.30 + criteria × 0.30)
76
76
 
77
77
  ```bash
78
78
  # Claude → Gemini 위임
79
- Bash("bash scripts/tfx-route.sh gemini exec 'Analyze the following requirement and calculate ambiguity score. Return JSON: {goal, constraints, criteria, ambiguity, suggested_questions}: {user_input}'")
79
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Analyze the following requirement and calculate ambiguity score. Return JSON: {goal, constraints, criteria, ambiguity, suggested_questions}: {user_input}'")
80
80
  ```
81
81
 
82
82
  Gemini가 반환한 JSON에서 점수를 읽어 사용자에게 표시한다:
@@ -107,7 +107,7 @@ Gemini가 반환한 JSON에서 점수를 읽어 사용자에게 표시한다:
107
107
 
108
108
  ```bash
109
109
  # 응답 수집 후 Gemini에 분석 위임
110
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 1 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
110
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 1 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
111
111
  ```
112
112
 
113
113
  ```
@@ -125,7 +125,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 1 response analysis. Previous
125
125
 
126
126
  ```bash
127
127
  # 응답 수집 후 Gemini에 분석 위임
128
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 2 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
128
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 2 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
129
129
  ```
130
130
 
131
131
  ```
@@ -143,7 +143,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 2 response analysis. Previous
143
143
 
144
144
  ```bash
145
145
  # 응답 수집 후 Gemini에 분석 위임
146
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 3 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
146
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 3 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
147
147
  ```
148
148
 
149
149
  ```
@@ -161,7 +161,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 3 response analysis. Previous
161
161
 
162
162
  ```bash
163
163
  # 응답 수집 후 Gemini에 분석 위임
164
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 4 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
164
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 4 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
165
165
  ```
166
166
 
167
167
  ```
@@ -179,7 +179,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 4 response analysis. Previous
179
179
 
180
180
  ```bash
181
181
  # 응답 수집 후 Gemini에 최종 분석 위임
182
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 5 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
182
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 5 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
183
183
  ```
184
184
 
185
185
  ```
@@ -207,7 +207,7 @@ Gemini가 인터뷰 전체 컨텍스트를 바탕으로 구조화된 문서 초
207
207
 
208
208
  ```bash
209
209
  # Gemini에 산출물 초안 생성 위임
210
- Bash("bash scripts/tfx-route.sh gemini exec 'Generate a structured interview output document based on the following interview context: {full_context}. Return the complete markdown document.'")
210
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Generate a structured interview output document based on the following interview context: {full_context}. Return the complete markdown document.'")
211
211
  ```
212
212
 
213
213
  Claude는 Gemini가 반환한 마크다운을 Write 도구로 저장한다.
@@ -21,7 +21,7 @@ argument-hint: "<구현할 주제 또는 요구사항>"
21
21
  > "측정할 수 없으면 개선할 수 없다."
22
22
  >
23
23
  > **Gemini 위임**: 분석·점수 계산·산출물 초안은 Gemini CLI에 위임하여 Claude 토큰을 절약한다.
24
- > 위임 패턴: `Bash("bash scripts/tfx-route.sh gemini exec '{prompt}'")`
24
+ > 위임 패턴: `Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec '{prompt}'")`
25
25
 
26
26
  ## 위임 패턴
27
27
 
@@ -34,7 +34,7 @@ Claude와 Gemini의 역할을 분리하여 토큰을 최적화한다.
34
34
 
35
35
  ```bash
36
36
  # 위임 호출 형태
37
- Bash("bash scripts/tfx-route.sh gemini exec '{prompt}'")
37
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec '{prompt}'")
38
38
  ```
39
39
 
40
40
  Gemini 실패 시 Fallback: Claude Opus가 분석을 직접 처리한다.
@@ -76,7 +76,7 @@ ambiguity = 1 - (goal × 0.40 + constraints × 0.30 + criteria × 0.30)
76
76
 
77
77
  ```bash
78
78
  # Claude → Gemini 위임
79
- Bash("bash scripts/tfx-route.sh gemini exec 'Analyze the following requirement and calculate ambiguity score. Return JSON: {goal, constraints, criteria, ambiguity, suggested_questions}: {user_input}'")
79
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Analyze the following requirement and calculate ambiguity score. Return JSON: {goal, constraints, criteria, ambiguity, suggested_questions}: {user_input}'")
80
80
  ```
81
81
 
82
82
  Gemini가 반환한 JSON에서 점수를 읽어 사용자에게 표시한다:
@@ -107,7 +107,7 @@ Gemini가 반환한 JSON에서 점수를 읽어 사용자에게 표시한다:
107
107
 
108
108
  ```bash
109
109
  # 응답 수집 후 Gemini에 분석 위임
110
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 1 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
110
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 1 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
111
111
  ```
112
112
 
113
113
  ```
@@ -125,7 +125,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 1 response analysis. Previous
125
125
 
126
126
  ```bash
127
127
  # 응답 수집 후 Gemini에 분석 위임
128
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 2 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
128
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 2 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
129
129
  ```
130
130
 
131
131
  ```
@@ -143,7 +143,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 2 response analysis. Previous
143
143
 
144
144
  ```bash
145
145
  # 응답 수집 후 Gemini에 분석 위임
146
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 3 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
146
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 3 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
147
147
  ```
148
148
 
149
149
  ```
@@ -161,7 +161,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 3 response analysis. Previous
161
161
 
162
162
  ```bash
163
163
  # 응답 수집 후 Gemini에 분석 위임
164
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 4 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
164
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 4 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
165
165
  ```
166
166
 
167
167
  ```
@@ -179,7 +179,7 @@ Bash("bash scripts/tfx-route.sh gemini exec 'Stage 4 response analysis. Previous
179
179
 
180
180
  ```bash
181
181
  # 응답 수집 후 Gemini에 최종 분석 위임
182
- Bash("bash scripts/tfx-route.sh gemini exec 'Stage 5 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
182
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Stage 5 response analysis. Previous context: {context}. User answer: {answer}. Calculate updated ambiguity score and generate next stage questions. Return JSON.'")
183
183
  ```
184
184
 
185
185
  ```
@@ -207,7 +207,7 @@ Gemini가 인터뷰 전체 컨텍스트를 바탕으로 구조화된 문서 초
207
207
 
208
208
  ```bash
209
209
  # Gemini에 산출물 초안 생성 위임
210
- Bash("bash scripts/tfx-route.sh gemini exec 'Generate a structured interview output document based on the following interview context: {full_context}. Return the complete markdown document.'")
210
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec 'Generate a structured interview output document based on the following interview context: {full_context}. Return the complete markdown document.'")
211
211
  ```
212
212
 
213
213
  Claude는 Gemini가 반환한 마크다운을 Write 도구로 저장한다.
@@ -41,7 +41,7 @@ Claude는 최소 컨텍스트만 수집한다.
41
41
 
42
42
  수집 후 Gemini에 위임:
43
43
  ```
44
- Bash("bash scripts/tfx-route.sh gemini exec '소프트웨어 아키텍트로서 다음 기능의 구현 계획을 수립하라.\n기능: {feature}\n프로젝트 컨텍스트: {context}\n관련 파일: {file_list}\n\n출력 형식:\n1. 영향 범위 (수정할 파일 목록)\n2. 태스크 분해 (순서대로, 각 태스크에 검증 방법 포함)\n3. 리스크 및 의존성\n4. 예상 복잡도 (low/medium/high)'")
44
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec '소프트웨어 아키텍트로서 다음 기능의 구현 계획을 수립하라.\n기능: {feature}\n프로젝트 컨텍스트: {context}\n관련 파일: {file_list}\n\n출력 형식:\n1. 영향 범위 (수정할 파일 목록)\n2. 태스크 분해 (순서대로, 각 태스크에 검증 방법 포함)\n3. 리스크 및 의존성\n4. 예상 복잡도 (low/medium/high)'")
45
45
  ```
46
46
 
47
47
  Claude는 Gemini 출력을 받아 아래 출력 형식으로 포맷팅만 수행한다.
@@ -31,7 +31,7 @@ Claude는 최소 컨텍스트만 수집한다.
31
31
 
32
32
  수집 후 Gemini에 위임:
33
33
  ```
34
- Bash("bash scripts/tfx-route.sh gemini exec '소프트웨어 아키텍트로서 다음 기능의 구현 계획을 수립하라.\n기능: {feature}\n프로젝트 컨텍스트: {context}\n관련 파일: {file_list}\n\n출력 형식:\n1. 영향 범위 (수정할 파일 목록)\n2. 태스크 분해 (순서대로, 각 태스크에 검증 방법 포함)\n3. 리스크 및 의존성\n4. 예상 복잡도 (low/medium/high)'")
34
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini exec '소프트웨어 아키텍트로서 다음 기능의 구현 계획을 수립하라.\n기능: {feature}\n프로젝트 컨텍스트: {context}\n관련 파일: {file_list}\n\n출력 형식:\n1. 영향 범위 (수정할 파일 목록)\n2. 태스크 분해 (순서대로, 각 태스크에 검증 방법 포함)\n3. 리스크 및 의존성\n4. 예상 복잡도 (low/medium/high)'")
35
35
  ```
36
36
 
37
37
  Claude는 Gemini 출력을 받아 아래 출력 형식으로 포맷팅만 수행한다.
@@ -71,7 +71,7 @@ AskUserQuestion:
71
71
  최적화된 쿼리를 Gemini CLI로 전달한다. Gemini는 네이티브 Google Search를 사용해 검색과 요약을 모두 수행한다:
72
72
 
73
73
  ```
74
- Bash("bash scripts/tfx-route.sh gemini 'Research the following topic. Use Google Search to find current information. Return a structured markdown summary with sources: {optimized_query}' auto 120")
74
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini 'Research the following topic. Use Google Search to find current information. Return a structured markdown summary with sources: {optimized_query}' auto 120")
75
75
  ```
76
76
 
77
77
  Gemini가 반환하는 결과에는 검색 결과, 출처 URL, 핵심 요약이 포함된다. Claude는 이 단계에서 토큰을 소비하지 않는다.
@@ -61,7 +61,7 @@ AskUserQuestion:
61
61
  최적화된 쿼리를 Gemini CLI로 전달한다. Gemini는 네이티브 Google Search를 사용해 검색과 요약을 모두 수행한다:
62
62
 
63
63
  ```
64
- Bash("bash scripts/tfx-route.sh gemini 'Research the following topic. Use Google Search to find current information. Return a structured markdown summary with sources: {optimized_query}' auto 120")
64
+ Bash("bash ~/.claude/scripts/tfx-route.sh gemini 'Research the following topic. Use Google Search to find current information. Return a structured markdown summary with sources: {optimized_query}' auto 120")
65
65
  ```
66
66
 
67
67
  Gemini가 반환하는 결과에는 검색 결과, 출처 URL, 핵심 요약이 포함된다. Claude는 이 단계에서 토큰을 소비하지 않는다.