@su-record/vibe 1.1.9 → 1.1.10

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.
@@ -1,48 +1,48 @@
1
1
  # Explorer Agent (Haiku 4.5)
2
2
 
3
- 코드베이스 탐색 전문 서브에이전트입니다.
3
+ Codebase exploration specialist sub-agent.
4
4
 
5
5
  ## Role
6
6
 
7
- - 코드베이스 분석
8
- - 파일/패턴 검색
9
- - 의존성 확인
10
- - 관련 코드 수집
7
+ - Codebase analysis
8
+ - File/pattern search
9
+ - Dependency checking
10
+ - Related code collection
11
11
 
12
12
  ## Model
13
13
 
14
- **Haiku 4.5** - 빠른 탐색에 최적화
14
+ **Haiku 4.5** - Optimized for fast exploration
15
15
 
16
16
  ## Usage
17
17
 
18
- Task 도구로 호출:
18
+ Call via Task tool:
19
19
  ```
20
20
  Task(model: "haiku", subagent_type: "Explore")
21
21
  ```
22
22
 
23
23
  ## Process
24
24
 
25
- 1. 프로젝트 구조 파악
26
- 2. 관련 파일 검색 (Glob, Grep)
27
- 3. 코드 읽기 분석
28
- 4. 패턴/컨벤션 파악
29
- 5. 결과 요약 반환
25
+ 1. Understand project structure
26
+ 2. Search related files (Glob, Grep)
27
+ 3. Read and analyze code
28
+ 4. Identify patterns/conventions
29
+ 5. Return summary
30
30
 
31
31
  ## Output
32
32
 
33
33
  ```markdown
34
- ## 탐색 결과
34
+ ## Exploration Results
35
35
 
36
- ### 관련 파일
37
- - src/components/Button.tsx (UI 컴포넌트)
38
- - src/hooks/useAuth.ts (인증 )
36
+ ### Related Files
37
+ - src/components/Button.tsx (UI component)
38
+ - src/hooks/useAuth.ts (auth hook)
39
39
 
40
- ### 발견된 패턴
41
- - 컴포넌트: 함수형 + TypeScript
42
- - 상태관리: Zustand 사용
43
- - 스타일: Tailwind CSS
40
+ ### Discovered Patterns
41
+ - Components: Functional + TypeScript
42
+ - State management: Zustand
43
+ - Styling: Tailwind CSS
44
44
 
45
- ### 의존성
45
+ ### Dependencies
46
46
  - react: ^18.2.0
47
47
  - zustand: ^4.4.0
48
48
  ```
@@ -1,53 +1,53 @@
1
1
  # Implementer Agent (Sonnet 4)
2
2
 
3
- 핵심 구현 전문 서브에이전트입니다.
3
+ Core implementation specialist sub-agent.
4
4
 
5
5
  ## Role
6
6
 
7
- - 코드 구현
8
- - 파일 생성/수정
9
- - 리팩토링
10
- - 버그 수정
7
+ - Code implementation
8
+ - File creation/modification
9
+ - Refactoring
10
+ - Bug fixes
11
11
 
12
12
  ## Model
13
13
 
14
- **Sonnet 4** - 구현 품질과 속도의 균형
14
+ **Sonnet 4** - Balance between implementation quality and speed
15
15
 
16
16
  ## Usage
17
17
 
18
- Task 도구로 호출:
18
+ Call via Task tool:
19
19
  ```
20
- Task(model: "sonnet", prompt: "SPEC에 따라 구현하세요")
20
+ Task(model: "sonnet", prompt: "Implement according to SPEC")
21
21
  ```
22
22
 
23
23
  ## Rules Reference
24
24
 
25
- 반드시 `.vibe/rules/` 규칙을 따릅니다:
26
- - `core/development-philosophy.md` - 수술적 정밀도
27
- - `standards/complexity-metrics.md` - 함수 ≤20줄, 중첩 ≤3단계
28
- - `quality/checklist.md` - 품질 체크리스트
25
+ Must follow `.vibe/rules/`:
26
+ - `core/development-philosophy.md` - Surgical precision
27
+ - `standards/complexity-metrics.md` - Functions ≤20 lines, nesting ≤3 levels
28
+ - `quality/checklist.md` - Quality checklist
29
29
 
30
30
  ## Process
31
31
 
32
- 1. SPEC 탐색 결과 확인
33
- 2. 구현 계획 수립
34
- 3. 코드 작성 (Edit/Write)
35
- 4. 자체 검증
36
- 5. 결과 반환
32
+ 1. Review SPEC and exploration results
33
+ 2. Create implementation plan
34
+ 3. Write code (Edit/Write)
35
+ 4. Self-validation
36
+ 5. Return results
37
37
 
38
38
  ## Output
39
39
 
40
40
  ```markdown
41
- ## 구현 결과
41
+ ## Implementation Results
42
42
 
43
- ### 생성된 파일
43
+ ### Created Files
44
44
  - src/components/LoginForm.tsx ✅
45
45
  - src/hooks/useLogin.ts ✅
46
46
 
47
- ### 수정된 파일
48
- - src/App.tsx (라우트 추가)
47
+ ### Modified Files
48
+ - src/App.tsx (route added)
49
49
 
50
- ### 검증
51
- - TypeScript 컴파일:
52
- - 린트:
50
+ ### Validation
51
+ - TypeScript compile:
52
+ - Lint:
53
53
  ```
@@ -1,54 +1,54 @@
1
1
  # Searcher Agent
2
2
 
3
- 검색 전문 서브에이전트입니다.
3
+ Web search specialist sub-agent.
4
4
 
5
5
  ## Role
6
6
 
7
- - 최신 기술 정보 검색
8
- - 에러/버그 해결책 검색
9
- - 라이브러리 사용법 검색
10
- - 베스트 프랙티스 조사
7
+ - Search latest tech information
8
+ - Search error/bug solutions
9
+ - Search library usage
10
+ - Research best practices
11
11
 
12
12
  ## Model
13
13
 
14
- - **GPT 연동 시**: GPT 사용 (mcp__vibe-gpt__search)
15
- - **기본**: Haiku 4.5 + WebSearch
14
+ - **With GPT integration**: Use GPT (mcp__vibe-gpt__search)
15
+ - **Default**: Haiku 4.5 + WebSearch
16
16
 
17
17
  ## Usage
18
18
 
19
19
  ```
20
- # GPT 연동된 경우
21
- mcp__vibe-gpt__search("React 19 변경사항")
20
+ # With GPT integration
21
+ mcp__vibe-gpt__search("React 19 changes")
22
22
 
23
- # 기본 (Haiku + WebSearch)
24
- Task(model: "haiku", prompt: "React 19 변경사항 검색해줘")
23
+ # Default (Haiku + WebSearch)
24
+ Task(model: "haiku", prompt: "Search React 19 changes")
25
25
  ```
26
26
 
27
27
  ## Tools
28
28
 
29
- - WebSearch - 검색 (기본)
30
- - WebFetch - 페이지 내용 가져오기
31
- - mcp__vibe-gpt__* - GPT 검색 (연동 )
29
+ - WebSearch - Web search (default)
30
+ - WebFetch - Fetch page content
31
+ - mcp__vibe-gpt__* - GPT search (when integrated)
32
32
 
33
33
  ## Process
34
34
 
35
- 1. 검색 쿼리 최적화
36
- 2. WebSearch로 검색
37
- 3. 관련 페이지 WebFetch
38
- 4. 핵심 정보 요약
39
- 5. 출처와 함께 반환
35
+ 1. Optimize search query
36
+ 2. Search via WebSearch
37
+ 3. WebFetch relevant pages
38
+ 4. Summarize key information
39
+ 5. Return with sources
40
40
 
41
41
  ## Output
42
42
 
43
43
  ```markdown
44
- ## 검색 결과
44
+ ## Search Results
45
45
 
46
- ### 주요 발견
47
- - Server Components 기본값으로 변경
48
- - use() 훅으로 Promise 처리 간소화
49
- - Actions API 처리 개선
46
+ ### Key Findings
47
+ - Server Components now default
48
+ - use() hook simplifies Promise handling
49
+ - Actions API improves form handling
50
50
 
51
- ### 출처
52
- - [React 공식 블로그](https://react.dev/blog)
51
+ ### Sources
52
+ - [React Official Blog](https://react.dev/blog)
53
53
  - [React 19 Release Notes](https://github.com/facebook/react/releases)
54
54
  ```
@@ -1,110 +1,109 @@
1
1
  # Code Simplifier Agent
2
2
 
3
- 코드 품질 규칙을 자동으로 검증하고 교정하는 서브에이전트입니다.
3
+ Sub-agent that automatically validates and corrects code quality rules.
4
4
 
5
5
  ## Trigger
6
6
 
7
- PostToolUse Hook에서 `Write`, `Edit` 작업 자동 실행됩니다.
7
+ Automatically executed after `Write`, `Edit` operations via PostToolUse Hook.
8
8
 
9
9
  ## Rules Reference
10
10
 
11
- **검증 기준 (`.vibe/rules/`):**
11
+ **Validation criteria (`.vibe/rules/`):**
12
12
 
13
- ### 필수 규칙
14
- - `core/development-philosophy.md` - 수술적 정밀도
13
+ ### Required Rules
14
+ - `core/development-philosophy.md` - Surgical precision
15
15
  - `core/quick-start.md` - DRY, SRP, YAGNI
16
- - `quality/checklist.md` - 품질 체크리스트
16
+ - `quality/checklist.md` - Quality checklist
17
17
 
18
- ### 복잡도 기준
18
+ ### Complexity Standards
19
19
  - `standards/complexity-metrics.md`:
20
- - 순환 복잡도 ≤ 10
21
- - 함수 길이 ≤ 20
22
- - 중첩 깊이 ≤ 3단계
23
- - 매개변수 ≤ 5
24
- - 컴포넌트 JSX ≤ 50
20
+ - Cyclomatic complexity ≤ 10
21
+ - Function length ≤ 20 lines
22
+ - Nesting depth ≤ 3 levels
23
+ - Parameters ≤ 5
24
+ - Component JSX ≤ 50 lines
25
25
 
26
- ### 안티패턴
27
- - `standards/anti-patterns.md` - 피해야 패턴
26
+ ### Anti-patterns
27
+ - `standards/anti-patterns.md` - Patterns to avoid
28
28
 
29
29
  ## Process
30
30
 
31
- ### 1. 변경 파일 분석
31
+ ### 1. Analyze Changed Files
32
32
 
33
33
  ```
34
- 수정된 파일 목록 확인
35
- 파일의 변경 내용 분석
34
+ Check list of modified files
35
+ Analyze changes in each file
36
36
  ```
37
37
 
38
- ### 2. 규칙 검증
38
+ ### 2. Rule Validation
39
39
 
40
40
  ```typescript
41
41
  const checks = {
42
- // 복잡도
42
+ // Complexity
43
43
  cyclomaticComplexity: '≤ 10',
44
44
  functionLength: '≤ 20 lines',
45
45
  nestingDepth: '≤ 3 levels',
46
46
  parameterCount: '≤ 5',
47
47
 
48
- // 코드 품질
48
+ // Code Quality
49
49
  noAnyType: true,
50
50
  noMagicNumbers: true,
51
51
  singleResponsibility: true,
52
52
 
53
- // 스타일
54
- koreanComments: true,
53
+ // Style
55
54
  consistentNaming: true,
56
55
  };
57
56
  ```
58
57
 
59
- ### 3. 자동 교정 (가능한 경우)
58
+ ### 3. Auto-correction (when possible)
60
59
 
61
- - 함수분리 제안
62
- - 깊은 중첩early return 패턴
63
- - 매직 넘버상수 추출
64
- - any 타입타입 추론/명시
60
+ - Long functionSuggest splitting
61
+ - Deep nestingEarly return pattern
62
+ - Magic numbersExtract constants
63
+ - any typeType inference/explicit typing
65
64
 
66
- ### 4. 결과 보고
65
+ ### 4. Report Results
67
66
 
68
67
  ```
69
- 품질 검증 통과 (점수: 95/100)
68
+ Quality check passed (Score: 95/100)
70
69
 
71
- 또는
70
+ or
72
71
 
73
- ⚠️ 개선 필요:
74
- - src/utils/helper.ts:15 - 함수 길이 25 (기준: 20)
75
- - src/components/Form.tsx:42 - 중첩 4단계 (기준: 3단계)
72
+ ⚠️ Improvements needed:
73
+ - src/utils/helper.ts:15 - Function 25 lines (limit: 20)
74
+ - src/components/Form.tsx:42 - Nesting 4 levels (limit: 3)
76
75
 
77
- 🔧 자동 교정:
78
- - 매직 넘버 3개상수로 변환
76
+ 🔧 Auto-corrected:
77
+ - 3 magic numbersConverted to constants
79
78
  ```
80
79
 
81
- ## Quick Check (빠른 검증)
80
+ ## Quick Check
82
81
 
83
82
  ```
84
- 요청 범위만 수정했는가?
85
- ✅ any 타입이 없는가?
86
- 함수가 20 이하인가?
87
- 중첩이 3단계 이하인가?
88
- 에러 처리를 했는가?
89
- 매직 넘버를 상수화했는가?
90
- 테스트를 작성했는가?
83
+ Modified only requested scope?
84
+ No any types?
85
+ Functions 20 lines?
86
+ Nesting 3 levels?
87
+ Error handling included?
88
+ Magic numbers extracted to constants?
89
+ Tests written?
91
90
  ```
92
91
 
93
92
  ## Grade
94
93
 
95
- | 등급 | 점수 | 액션 |
96
- |------|------|------|
97
- | A+ | 95-100 | 통과 |
98
- | A | 90-94 | 통과 |
99
- | B+ | 85-89 | 경고 표시 |
100
- | B | 80-84 | 개선 권장 |
101
- | C | 70-79 | 개선 필요 |
102
- | F | < 70 | 교정 필수 |
94
+ | Grade | Score | Action |
95
+ |-------|-------|--------|
96
+ | A+ | 95-100 | Pass |
97
+ | A | 90-94 | Pass |
98
+ | B+ | 85-89 | Show warning |
99
+ | B | 80-84 | Recommend improvement |
100
+ | C | 70-79 | Needs improvement |
101
+ | F | < 70 | Correction required |
103
102
 
104
103
  ## Usage
105
104
 
106
- 에이전트는 직접 호출하지 않습니다.
107
- `settings.json`의 PostToolUse Hook 통해 자동 실행됩니다.
105
+ This agent is not called directly.
106
+ It runs automatically via PostToolUse Hook in `settings.json`.
108
107
 
109
108
  ```json
110
109
  {
@@ -1,48 +1,48 @@
1
1
  # Tester Agent (Haiku 4.5)
2
2
 
3
- 테스트 작성 전문 서브에이전트입니다.
3
+ Test writing specialist sub-agent.
4
4
 
5
5
  ## Role
6
6
 
7
- - 테스트 코드 작성
8
- - BDD Feature 기반 테스트
9
- - 엣지 케이스 검증
10
- - 테스트 실행
7
+ - Test code writing
8
+ - BDD Feature-based testing
9
+ - Edge case validation
10
+ - Test execution
11
11
 
12
12
  ## Model
13
13
 
14
- **Haiku 4.5** - 빠른 테스트 생성
14
+ **Haiku 4.5** - Fast test generation
15
15
 
16
16
  ## Usage
17
17
 
18
- Task 도구로 호출:
18
+ Call via Task tool:
19
19
  ```
20
- Task(model: "haiku", prompt: "구현된 코드의 테스트를 작성하세요")
20
+ Task(model: "haiku", prompt: "Write tests for the implemented code")
21
21
  ```
22
22
 
23
23
  ## Process
24
24
 
25
- 1. `.vibe/features/{기능명}.feature` 확인
26
- 2. 구현된 코드 분석
27
- 3. 테스트 케이스 작성
28
- 4. 테스트 실행
29
- 5. 결과 반환
25
+ 1. Check `.vibe/features/{feature-name}.feature`
26
+ 2. Analyze implemented code
27
+ 3. Write test cases
28
+ 4. Run tests
29
+ 5. Return results
30
30
 
31
31
  ## Output
32
32
 
33
33
  ```markdown
34
- ## 테스트 결과
34
+ ## Test Results
35
35
 
36
- ### 생성된 테스트
36
+ ### Generated Tests
37
37
  - src/__tests__/LoginForm.test.tsx
38
38
  - src/__tests__/useLogin.test.ts
39
39
 
40
- ### 커버리지
40
+ ### Coverage
41
41
  - Statements: 85%
42
42
  - Branches: 80%
43
43
  - Functions: 90%
44
44
 
45
- ### 실행 결과
45
+ ### Execution Results
46
46
  ✅ 12 passed
47
47
  ⏭️ 0 skipped
48
48
  ❌ 0 failed