triflux 3.2.0-dev.16 → 3.2.0-dev.17
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 +1 -1
- package/scripts/setup.mjs +8 -1
- package/scripts/tfx-route.sh +1 -1
- package/skills/tfx-multi/SKILL.md +5 -0
package/package.json
CHANGED
package/scripts/setup.mjs
CHANGED
|
@@ -16,10 +16,17 @@ const CODEX_DIR = join(homedir(), ".codex");
|
|
|
16
16
|
const CODEX_CONFIG_PATH = join(CODEX_DIR, "config.toml");
|
|
17
17
|
|
|
18
18
|
const REQUIRED_CODEX_PROFILES = [
|
|
19
|
+
{
|
|
20
|
+
name: "high",
|
|
21
|
+
lines: [
|
|
22
|
+
'model = "gpt-5.4"',
|
|
23
|
+
'model_reasoning_effort = "high"',
|
|
24
|
+
],
|
|
25
|
+
},
|
|
19
26
|
{
|
|
20
27
|
name: "xhigh",
|
|
21
28
|
lines: [
|
|
22
|
-
'model = "gpt-5.
|
|
29
|
+
'model = "gpt-5.4"',
|
|
23
30
|
'model_reasoning_effort = "xhigh"',
|
|
24
31
|
],
|
|
25
32
|
},
|
package/scripts/tfx-route.sh
CHANGED
|
@@ -447,7 +447,7 @@ get_gemini_mcp_servers() {
|
|
|
447
447
|
local profile="$1"
|
|
448
448
|
case "$profile" in
|
|
449
449
|
implement) echo "context7 brave-search" ;;
|
|
450
|
-
analyze) echo "context7 brave-search exa" ;;
|
|
450
|
+
analyze) echo "context7 brave-search exa tavily" ;;
|
|
451
451
|
review) echo "sequential-thinking" ;;
|
|
452
452
|
docs) echo "context7 brave-search" ;;
|
|
453
453
|
*) echo "" ;;
|
|
@@ -13,6 +13,11 @@ argument-hint: '"작업 설명" | --agents codex,gemini "작업" | --tmux "작
|
|
|
13
13
|
> 실제 작업은 `tfx-route.sh`가 수행한다. task 상태는 `team_task_list`를 truth source로 검증한다.
|
|
14
14
|
> v3 — `--quick`(기본, v2.2 호환) + `--thorough`(전체 파이프라인: plan→prd→exec→verify→fix loop).
|
|
15
15
|
|
|
16
|
+
> **[필수] Lead 웹 서치 직접 사용 금지**
|
|
17
|
+
> Lead(Claude Opus)는 brave-search, exa, tavily 등 웹 서치 MCP 도구를 직접 호출하지 마라.
|
|
18
|
+
> 리서치/검색 태스크는 반드시 `scientist` 또는 `document-specialist` 역할의 Codex 워커에 위임하라.
|
|
19
|
+
> Lead가 MCP 검색 도구에 직접 접근 가능하더라도, 위임해야 Claude 토큰을 절약할 수 있다.
|
|
20
|
+
|
|
16
21
|
## 사용법
|
|
17
22
|
|
|
18
23
|
```
|