@tienne/gestalt 0.23.0 → 0.23.1
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/CLAUDE.md +21 -0
- package/dist/package.json +1 -1
- package/dist/skills/agent/SKILL.md +14 -0
- package/package.json +1 -1
- package/skills/agent/SKILL.md +14 -0
package/CLAUDE.md
CHANGED
|
@@ -40,6 +40,27 @@ pnpm tsx bin/gestalt.ts init # gestalt.json + code graph + post-commit hook
|
|
|
40
40
|
설정 레퍼런스 → [`docs/configuration.md`](./docs/configuration.md)
|
|
41
41
|
코드 그래프 → [`docs/code-graph.md`](./docs/code-graph.md)
|
|
42
42
|
|
|
43
|
+
## Role Agent 자동 라우팅
|
|
44
|
+
|
|
45
|
+
아래 상황에서는 사용자가 명시적으로 에이전트를 지정하지 않아도 해당 에이전트를 proactively 사용한다. `/agent [이름] "태스크"` 또는 `ges_agent` MCP 도구로 호출한다.
|
|
46
|
+
|
|
47
|
+
| 상황 | 에이전트 |
|
|
48
|
+
|------|---------|
|
|
49
|
+
| 영상/비디오 URL이 포함되거나 "요약해줘" 요청 | `video-summarizer` |
|
|
50
|
+
| 번역투·AI 말투·어색한 한국어 교정 요청 | `humanize-monolith` |
|
|
51
|
+
| README, API 문서, 가이드, 개발자 문서 작성 | `technical-writer` |
|
|
52
|
+
| 슬라이드·발표자료·프레젠테이션 제작 | `presentation-designer` |
|
|
53
|
+
| 시스템 설계, 아키텍처 리뷰, 설계 패턴 | `architect` |
|
|
54
|
+
| 보안 취약점, 인증/인가, 시크릿 노출 검토 | `security-reviewer` |
|
|
55
|
+
| 성능 병목, N+1, 메모리 누수 분석 | `performance-reviewer` |
|
|
56
|
+
| 코드 가독성, SOLID, 에러 처리 리뷰 | `quality-reviewer` |
|
|
57
|
+
| 테스트 케이스, 엣지 케이스, QA | `qa-engineer` |
|
|
58
|
+
| UI, React, 접근성, 컴포넌트 설계 | `frontend-developer` |
|
|
59
|
+
| API, DB, 인증, 서버 로직 | `backend-developer` |
|
|
60
|
+
| CI/CD, 인프라, 모니터링 | `devops-engineer` |
|
|
61
|
+
| 요구사항 정리, 로드맵, 유저 스토리 | `product-planner` |
|
|
62
|
+
| 기술 분석, 벤치마크, 사례 조사 | `researcher` |
|
|
63
|
+
|
|
43
64
|
## Project Structure
|
|
44
65
|
```
|
|
45
66
|
src/core/ — types, errors, Result monad, config, constants
|
package/dist/package.json
CHANGED
|
@@ -70,6 +70,20 @@ Invoke any Gestalt Role or Review agent directly, outside the Gestalt pipeline.
|
|
|
70
70
|
| `performance-reviewer` | Memory leaks, N+1 queries, bundle size, async |
|
|
71
71
|
| `quality-reviewer` | Readability, SOLID, error handling, DRY |
|
|
72
72
|
|
|
73
|
+
## Proactive Invocation
|
|
74
|
+
|
|
75
|
+
이 스킬은 사용자가 `/agent`를 명시하지 않아도 아래 상황에서 자동으로 실행된다. CLAUDE.md의 Role Agent 자동 라우팅 규칙에 따라 적절한 에이전트를 선택해 실행한다.
|
|
76
|
+
|
|
77
|
+
- 영상·비디오 URL 포함 또는 "요약해줘" → `video-summarizer`
|
|
78
|
+
- 번역투·AI 말투 교정 → `humanize-monolith`
|
|
79
|
+
- 문서·README·가이드 작성 → `technical-writer`
|
|
80
|
+
- 슬라이드·발표자료 → `presentation-designer`
|
|
81
|
+
- 보안 검토 → `security-reviewer`
|
|
82
|
+
- 성능 분석 → `performance-reviewer`
|
|
83
|
+
- 코드 리뷰 → `quality-reviewer`
|
|
84
|
+
|
|
85
|
+
에이전트 이름 없이 태스크 설명만 있는 경우: `ges_agent({ action: "list" })`로 전체 목록을 조회한 뒤 설명과 domain을 기반으로 가장 적합한 에이전트를 자동 선택한다.
|
|
86
|
+
|
|
73
87
|
## Instructions
|
|
74
88
|
|
|
75
89
|
### Listing agents
|
package/package.json
CHANGED
package/skills/agent/SKILL.md
CHANGED
|
@@ -70,6 +70,20 @@ Invoke any Gestalt Role or Review agent directly, outside the Gestalt pipeline.
|
|
|
70
70
|
| `performance-reviewer` | Memory leaks, N+1 queries, bundle size, async |
|
|
71
71
|
| `quality-reviewer` | Readability, SOLID, error handling, DRY |
|
|
72
72
|
|
|
73
|
+
## Proactive Invocation
|
|
74
|
+
|
|
75
|
+
이 스킬은 사용자가 `/agent`를 명시하지 않아도 아래 상황에서 자동으로 실행된다. CLAUDE.md의 Role Agent 자동 라우팅 규칙에 따라 적절한 에이전트를 선택해 실행한다.
|
|
76
|
+
|
|
77
|
+
- 영상·비디오 URL 포함 또는 "요약해줘" → `video-summarizer`
|
|
78
|
+
- 번역투·AI 말투 교정 → `humanize-monolith`
|
|
79
|
+
- 문서·README·가이드 작성 → `technical-writer`
|
|
80
|
+
- 슬라이드·발표자료 → `presentation-designer`
|
|
81
|
+
- 보안 검토 → `security-reviewer`
|
|
82
|
+
- 성능 분석 → `performance-reviewer`
|
|
83
|
+
- 코드 리뷰 → `quality-reviewer`
|
|
84
|
+
|
|
85
|
+
에이전트 이름 없이 태스크 설명만 있는 경우: `ges_agent({ action: "list" })`로 전체 목록을 조회한 뒤 설명과 domain을 기반으로 가장 적합한 에이전트를 자동 선택한다.
|
|
86
|
+
|
|
73
87
|
## Instructions
|
|
74
88
|
|
|
75
89
|
### Listing agents
|