@claudetree/cli 0.3.1 → 0.4.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/README.ja.md CHANGED
@@ -23,7 +23,7 @@ pnpm add -g @claudetree/cli
23
23
  # プロジェクトで初期化
24
24
  ct init
25
25
 
26
- # GitHub課題の作業開始
26
+ # GitHub課題の作業開始(TDDモードがデフォルト)
27
27
  ct start https://github.com/you/repo/issues/42
28
28
 
29
29
  # 進捗監視
@@ -33,6 +33,28 @@ ct status
33
33
  ct web
34
34
  ```
35
35
 
36
+ ## TDDモード(デフォルト)
37
+
38
+ すべてのセッションはデフォルトでTDDモードで実行されます:
39
+
40
+ ```bash
41
+ # TDDモード(2時間タイムアウト、デフォルト)
42
+ ct start 42
43
+
44
+ # カスタムタイムアウトとゲート
45
+ ct start 42 --timeout 60 --gates test,type,lint
46
+
47
+ # TDDモードを無効化
48
+ ct start 42 --no-tdd
49
+ ```
50
+
51
+ **TDDオプション:**
52
+ - `--timeout <分>` - セッションタイムアウト(デフォルト:120)
53
+ - `--idle-timeout <分>` - アイドルタイムアウト(デフォルト:10)
54
+ - `--gates <gates>` - 検証ゲート:test,type,lint,build(デフォルト:test,type)
55
+ - `--max-retries <n>` - ゲートリトライ回数(デフォルト:3)
56
+ - `--no-tdd` - TDDモード無効化
57
+
36
58
  ## コマンド
37
59
 
38
60
  | コマンド | 説明 |
package/README.ko.md CHANGED
@@ -23,7 +23,7 @@ pnpm add -g @claudetree/cli
23
23
  # 프로젝트에서 초기화
24
24
  ct init
25
25
 
26
- # GitHub 이슈 작업 시작
26
+ # GitHub 이슈 작업 시작 (TDD 모드 기본)
27
27
  ct start https://github.com/you/repo/issues/42
28
28
 
29
29
  # 진행상황 모니터링
@@ -33,6 +33,28 @@ ct status
33
33
  ct web
34
34
  ```
35
35
 
36
+ ## TDD 모드 (기본)
37
+
38
+ 모든 세션은 기본적으로 TDD 모드로 실행됩니다:
39
+
40
+ ```bash
41
+ # TDD 모드 (2시간 타임아웃, 기본값)
42
+ ct start 42
43
+
44
+ # 커스텀 타임아웃 및 게이트
45
+ ct start 42 --timeout 60 --gates test,type,lint
46
+
47
+ # TDD 모드 끄기
48
+ ct start 42 --no-tdd
49
+ ```
50
+
51
+ **TDD 옵션:**
52
+ - `--timeout <분>` - 세션 타임아웃 (기본: 120)
53
+ - `--idle-timeout <분>` - 유휴 타임아웃 (기본: 10)
54
+ - `--gates <gates>` - 검증 게이트: test,type,lint,build (기본: test,type)
55
+ - `--max-retries <n>` - 게이트 재시도 횟수 (기본: 3)
56
+ - `--no-tdd` - TDD 모드 비활성화
57
+
36
58
  ## 명령어
37
59
 
38
60
  | 명령어 | 설명 |
package/README.md CHANGED
@@ -23,7 +23,7 @@ pnpm add -g @claudetree/cli
23
23
  # Initialize in your project
24
24
  ct init
25
25
 
26
- # Start working on a GitHub issue
26
+ # Start working on a GitHub issue (TDD mode by default)
27
27
  ct start https://github.com/you/repo/issues/42
28
28
 
29
29
  # Monitor progress
@@ -33,6 +33,28 @@ ct status
33
33
  ct web
34
34
  ```
35
35
 
36
+ ## TDD Mode (Default)
37
+
38
+ All sessions run in TDD mode by default:
39
+
40
+ ```bash
41
+ # TDD mode with 2h timeout (default)
42
+ ct start 42
43
+
44
+ # Custom timeout and gates
45
+ ct start 42 --timeout 60 --gates test,type,lint
46
+
47
+ # Disable TDD mode
48
+ ct start 42 --no-tdd
49
+ ```
50
+
51
+ **TDD Options:**
52
+ - `--timeout <min>` - Session timeout (default: 120)
53
+ - `--idle-timeout <min>` - Idle timeout (default: 10)
54
+ - `--gates <gates>` - Validation gates: test,type,lint,build (default: test,type)
55
+ - `--max-retries <n>` - Gate retry count (default: 3)
56
+ - `--no-tdd` - Disable TDD mode
57
+
36
58
  ## Commands
37
59
 
38
60
  | Command | Description |
package/README.zh.md CHANGED
@@ -23,7 +23,7 @@ pnpm add -g @claudetree/cli
23
23
  # 在项目中初始化
24
24
  ct init
25
25
 
26
- # 开始处理GitHub问题
26
+ # 开始处理GitHub问题(默认TDD模式)
27
27
  ct start https://github.com/you/repo/issues/42
28
28
 
29
29
  # 监控进度
@@ -33,6 +33,28 @@ ct status
33
33
  ct web
34
34
  ```
35
35
 
36
+ ## TDD模式(默认)
37
+
38
+ 所有会话默认以TDD模式运行:
39
+
40
+ ```bash
41
+ # TDD模式(2小时超时,默认)
42
+ ct start 42
43
+
44
+ # 自定义超时和验证门
45
+ ct start 42 --timeout 60 --gates test,type,lint
46
+
47
+ # 禁用TDD模式
48
+ ct start 42 --no-tdd
49
+ ```
50
+
51
+ **TDD选项:**
52
+ - `--timeout <分钟>` - 会话超时(默认:120)
53
+ - `--idle-timeout <分钟>` - 空闲超时(默认:10)
54
+ - `--gates <gates>` - 验证门:test,type,lint,build(默认:test,type)
55
+ - `--max-retries <n>` - 门重试次数(默认:3)
56
+ - `--no-tdd` - 禁用TDD模式
57
+
36
58
  ## 命令
37
59
 
38
60
  | 命令 | 描述 |
@@ -1 +1 @@
1
- {"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAwDpC,eAAO,MAAM,YAAY,SA8crB,CAAC"}
1
+ {"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAwGpC,eAAO,MAAM,YAAY,SA0kBrB,CAAC"}