oh-my-ag 1.5.0 → 1.5.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.
Files changed (4) hide show
  1. package/README.ko.md +62 -31
  2. package/README.md +52 -23
  3. package/bin/cli.js +111 -109
  4. package/package.json +1 -1
package/README.ko.md CHANGED
@@ -25,7 +25,7 @@ Google Antigravity IDE용 전문 에이전트 스킬 모음. PM, Frontend, Backe
25
25
  - [프로젝트 구조](#프로젝트-구조)
26
26
  - [스킬 아키텍처](#스킬-아키텍처)
27
27
  - [스킬 개요](#스킬-개요)
28
- - [사전 요구 사항](#사전-요구-사항)
28
+
29
29
  - [CLI 명령어](#cli-명령어)
30
30
  - [문제 해결](#문제-해결)
31
31
  - [라이선스](#라이선스)
@@ -48,7 +48,48 @@ Google Antigravity IDE용 전문 에이전트 스킬 모음. PM, Frontend, Backe
48
48
 
49
49
  ## 빠른 시작
50
50
 
51
- ### 1. 클론 & 열기
51
+ ### 사전 요구 사항
52
+
53
+ - **Google Antigravity** (2026+)
54
+ - **Bun** (CLI 및 대시보드용)
55
+
56
+ ### 옵션 1: 대화형 CLI (권장)
57
+
58
+ ```bash
59
+ # bun이 없으면 먼저 설치:
60
+ # curl -fsSL https://bun.sh/install | bash
61
+
62
+ bunx oh-my-ag
63
+ ```
64
+
65
+ 프로젝트 타입을 선택하면 `.agent/skills/`에 스킬이 설치됩니다.
66
+
67
+ | 프리셋 | 스킬 |
68
+ |--------|--------|
69
+ | ✨ All | 전체 |
70
+ | 🌐 Fullstack | frontend, backend, pm, qa, debug, commit |
71
+ | 🎨 Frontend | frontend, pm, qa, debug, commit |
72
+ | ⚙️ Backend | backend, pm, qa, debug, commit |
73
+ | 📱 Mobile | mobile, pm, qa, debug, commit |
74
+
75
+ ### 옵션 2: 전역 설치 (Orchestrator용)
76
+
77
+ SubAgent Orchestrator를 사용하거나 도구를 전역에서 사용하려면:
78
+
79
+ ```bash
80
+ bun install --global oh-my-ag
81
+ ```
82
+
83
+ 최소 1개의 CLI 도구가 필요합니다:
84
+
85
+ | CLI | 설치 | 인증 |
86
+ |-----|------|------|
87
+ | Gemini | `bun install --global @anthropic-ai/gemini-cli` | `gemini auth` |
88
+ | Claude | `bun install --global @anthropic-ai/claude-code` | `claude auth` |
89
+ | Codex | `bun install --global @openai/codex` | `codex auth` |
90
+ | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
91
+
92
+ ### 옵션 3: 클론 & 열기
52
93
 
53
94
  ```bash
54
95
  git clone <repository-url>
@@ -58,22 +99,32 @@ antigravity open .
58
99
 
59
100
  Antigravity가 `.agent/skills/`의 스킬을 자동 감지합니다.
60
101
 
61
- ### 기존 프로젝트에 통합하기
102
+ ### 옵션 4: 기존 프로젝트에 통합하기
103
+
104
+ **권장 방법 (CLI):**
62
105
 
63
- 이미 Antigravity 프로젝트가 있다면 스킬만 복사하면 됩니다:
106
+ 기존 프로젝트의 루트 디렉토리에서 다음 명령어를 실행하면 스킬과 워크플로우가 자동으로 설치됩니다:
64
107
 
65
108
  ```bash
66
- # 옵션 1: 스킬만 복사
67
- cp -r oh-my-ag/.agent/skills /path/to/your-project/.agent/
109
+ bunx oh-my-ag
110
+ ```
111
+
112
+ > **팁:** 설치 후 `bunx oh-my-ag doctor`를 실행하여 모든 설정(전역 워크플로우 포함)이 올바른지 확인하세요.
113
+
114
+ **수동 방법 (파일 복사):**
115
+
116
+ 이미 oh-my-ag 저장소를 클론했다면 파일 복사로도 가능합니다:
68
117
 
69
- # 옵션 2: 스킬 + 대시보드
118
+ ```bash
119
+ # 1. 스킬 복사
70
120
  cp -r oh-my-ag/.agent/skills /path/to/your-project/.agent/
71
121
 
72
- cp oh-my-ag/package.json /path/to/your-project/ # 의존성 병합
122
+ # 2. 워크플로우 복사
123
+ cp -r oh-my-ag/.agent/workflows /path/to/your-project/.agent/
73
124
 
74
- # 옵션 3: 특정 스킬만
75
- cp -r oh-my-ag/.agent/skills/backend-agent /path/to/your-project/.agent/skills/
76
- cp -r oh-my-ag/.agent/skills/frontend-agent /path/to/your-project/.agent/skills/
125
+ # 3. 설정 복사 (선택)
126
+ cp -r oh-my-ag/.agent/config /path/to/your-project/.agent/
127
+ cp oh-my-ag/package.json /path/to/your-project/ # 의존성 병합
77
128
  ```
78
129
 
79
130
  본인 프로젝트에서:
@@ -406,26 +457,6 @@ bunx oh-my-ag dashboard:web
406
457
  **형식**: Conventional Commits + Co-Author 태그
407
458
  **설정**: `.agent/skills/commit/config/commit-config.yaml`
408
459
 
409
- ## 사전 요구 사항
410
-
411
- - **Google Antigravity** (2026+)
412
- - **Bun** (CLI 및 대시보드용)
413
-
414
- SubAgent Orchestrator를 사용하려면 먼저 패키지를 전역으로 설치해야 합니다:
415
-
416
- ```bash
417
- bun install --global oh-my-ag
418
- ```
419
-
420
- 그 후 최소 1개의 CLI 도구가 필요합니다:
421
-
422
- | CLI | 설치 | 인증 |
423
- |-----|------|------|
424
- | Gemini | `bun install --global @anthropic-ai/gemini-cli` | `gemini auth` |
425
- | Claude | `bun install --global @anthropic-ai/claude-code` | `claude auth` |
426
- | Codex | `bun install --global @openai/codex` | `codex auth` |
427
- | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
428
-
429
460
  ## CLI 명령어
430
461
 
431
462
  ```bash
package/README.md CHANGED
@@ -28,7 +28,7 @@ Professional agent skills for Google Antigravity IDE featuring specialized PM, F
28
28
  - [Project Structure](#project-structure)
29
29
  - [Skill Architecture](#skill-architecture)
30
30
  - [Skills Overview](#skills-overview)
31
- - [Prerequisites](#prerequisites)
31
+
32
32
  - [CLI Commands](#cli-commands)
33
33
  - [Troubleshooting](#troubleshooting)
34
34
  - [Central Registry](#central-registry-for-multi-repo-setup)
@@ -86,6 +86,11 @@ A collection of **Antigravity Skills** enabling collaborative multi-agent develo
86
86
 
87
87
  ## Quick Start
88
88
 
89
+ ### Prerequisites
90
+
91
+ - **Google Antigravity** (2026+)
92
+ - **Bun** (for CLI and dashboards)
93
+
89
94
  ### Option 1: Interactive CLI (Recommended)
90
95
 
91
96
  ```bash
@@ -105,13 +110,30 @@ Select your project type and skills will be installed to `.agent/skills/`.
105
110
  | ⚙️ Backend | backend, pm, qa, debug, commit |
106
111
  | 📱 Mobile | mobile, pm, qa, debug, commit |
107
112
 
108
- ### Option 2: Using vercel-labs/skills
113
+ ### Option 2: Global Installation (For Orchestrator)
114
+
115
+ To use the core tools globally or run the SubAgent Orchestrator:
116
+
117
+ ```bash
118
+ bun install --global oh-my-ag
119
+ ```
120
+
121
+ You'll also need at least one CLI tool:
122
+
123
+ | CLI | Install | Auth |
124
+ |-----|---------|------|
125
+ | Gemini | `bun install --global @anthropic-ai/gemini-cli` | `gemini auth` |
126
+ | Claude | `bun install --global @anthropic-ai/claude-code` | `claude auth` |
127
+ | Codex | `bun install --global @openai/codex` | `codex auth` |
128
+ | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
129
+
130
+ ### Option 3: Using vercel-labs/skills
109
131
 
110
132
  ```bash
111
133
  bunx skills add first-fluke/oh-my-ag
112
134
  ```
113
135
 
114
- ### Option 3: Clone & Open
136
+ ### Option 4: Clone & Open
115
137
 
116
138
  ```bash
117
139
  git clone https://github.com/first-fluke/oh-my-ag
@@ -121,6 +143,33 @@ antigravity open .
121
143
 
122
144
  Antigravity automatically detects skills in `.agent/skills/`.
123
145
 
146
+ ### Option 5: Integrate into Existing Project
147
+
148
+ **Recommended (CLI):**
149
+
150
+ Run the following command in your project root to automatically install/update skills and workflows:
151
+
152
+ ```bash
153
+ bunx oh-my-ag
154
+ ```
155
+
156
+ > **Tip:** Run `bunx oh-my-ag doctor` after installation to verify everything is set up correctly (including global workflows).
157
+
158
+ **Manual Method:**
159
+
160
+ If you have cloned this repo, you can simply copy the `.agent` directory:
161
+
162
+ ```bash
163
+ # 1. Copy skills
164
+ cp -r oh-my-ag/.agent/skills /path/to/your-project/.agent/
165
+
166
+ # 2. Copy workflows
167
+ cp -r oh-my-ag/.agent/workflows /path/to/your-project/.agent/
168
+
169
+ # 3. Copy config (optional)
170
+ cp -r oh-my-ag/.agent/config /path/to/your-project/.agent/
171
+ ```
172
+
124
173
  ### 2. Initial Setup (Optional)
125
174
 
126
175
  ```
@@ -435,26 +484,6 @@ Each skill provides domain-specific resources:
435
484
  **Format**: Conventional Commits with Co-Author tag
436
485
  **Config**: `.agent/skills/commit/config/commit-config.yaml`
437
486
 
438
- ## Prerequisites
439
-
440
- - **Google Antigravity** (2026+)
441
- - **Bun** (for CLI and dashboards)
442
-
443
- To use the core tools, install the package globally:
444
-
445
- ```bash
446
- bun install --global oh-my-ag
447
- ```
448
-
449
- For SubAgent Orchestrator, you'll also need at least one CLI tool:
450
-
451
- | CLI | Install | Auth |
452
- |-----|---------|------|
453
- | Gemini | `bun install --global @anthropic-ai/gemini-cli` | `gemini auth` |
454
- | Claude | `bun install --global @anthropic-ai/claude-code` | `claude auth` |
455
- | Codex | `bun install --global @openai/codex` | `codex auth` |
456
- | Qwen | `bun install --global @qwen-code/qwen` | `qwen auth` |
457
-
458
487
  ## CLI Commands
459
488
 
460
489
  ```bash