@orbweva/academy 0.2.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/CHANGELOG.md ADDED
@@ -0,0 +1,40 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@orbweva/academy` will be documented here. Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
+
5
+ ## [Unreleased]
6
+
7
+ ## [0.2.0] — 2026-04-14
8
+
9
+ ### Added
10
+ - **Auto-install for CLI tools and MCP servers.** After skills land, the installer now prompts Y/n per CLI command (brew/winget/scoop/npm, `gh auth login`, etc.) and per `claude mcp add`, then actually runs the ones you approve. Previously it only printed the commands.
11
+ - `--no-run` flag for users who want the old print-only behavior.
12
+ - `--yes` now auto-approves every CLI and MCP command in addition to skill choices.
13
+
14
+ ### Changed
15
+ - `--skills-only` now fully skips the CLI + MCP section (previously it printed guidance and stopped).
16
+ - Re-licensed to dual MIT + CC BY-NC-SA 4.0 to match the broader ORBWEVA ecosystem. Code is MIT; docs and prose are CC BY-NC-SA 4.0. See `LICENSE` and `LICENSE-DOCS`.
17
+ - Windows CLI steps now use explicit `winget install --id <pkg> -e` form and `Set-ExecutionPolicy … -Force` for the Scoop bootstrap.
18
+
19
+ ### Notes
20
+ - Interactive commands (`gh auth login`) work because child processes inherit stdio — follow the browser prompts as usual.
21
+ - Windows admin steps (`winget install …`) fail if Node was launched from non-Admin PowerShell. Re-run those from an Admin window, or use `--no-run` and run manually.
22
+
23
+ ## [0.1.0] — 2026-04-14
24
+
25
+ ### Added
26
+ - Initial public release.
27
+ - `npx @orbweva/academy` installer CLI with zero runtime dependencies (Node 18+, `git` required at install time).
28
+ - **Tracks**: `accelerator` (12-week cohort, 15 skills), `course` (self-paced, 9 skills), `mentoring` (1:1, 13 skills), `founder` (partner-delivered, 10 skills), `full` (everything).
29
+ - **Specialization packs** (architecture ready; repos planned): `loka`, `marketing`, `web-video`.
30
+ - Bundle composition: track + stackable packs, auto-deduped across shared repos.
31
+ - Interactive prompts with `--yes` non-interactive mode.
32
+ - Flags: `--track`, `--pack` (repeatable), `--global`, `--local`, `--skills-only`, `--dry-run`, `--help`.
33
+ - Post-install guidance: per-OS CLI tool commands (`brew`/`winget`/`scoop`) and `claude mcp add` suggestions.
34
+ - Pulls 11 public ORBWEVA skill repos via shallow git clone into `~/.claude/skills/` (or project-local `./.claude/skills/`).
35
+ - Graceful skip for `status: "planned"` repos that don't exist yet.
36
+
37
+ ### Known limitations
38
+ - Prereqs (Node, Git, Claude Code) are not auto-installed — the script assumes they're present.
39
+ - CLI tools and MCP servers are printed, not executed. Auto-run planned for a later release.
40
+ - Pack repos (`ORBWEVA/loka-pack`, `ORBWEVA/marketing-pack`, `ORBWEVA/web-video-pack`) are referenced in `manifest.json` but not yet published.
@@ -0,0 +1,77 @@
1
+ # Contributing to @orbweva/academy
2
+
3
+ This installer is deliberately small. Most changes are **one-line edits to `manifest.json`** — no code changes required.
4
+
5
+ ## Adding a new track
6
+
7
+ A track is a base program (Accelerator, Course, Mentoring, etc.). To add one:
8
+
9
+ 1. Open `manifest.json`.
10
+ 2. Add an entry under `tracks`:
11
+ ```json
12
+ "your-track-key": {
13
+ "label": "Your Track Name",
14
+ "tagline": "One-line description shown in menus",
15
+ "required": ["secure-setup", "orbweva-method", "..."],
16
+ "optional": ["founder-pitch", "..."]
17
+ }
18
+ ```
19
+ 3. `required` and `optional` reference keys from `skillRepos` (existing entries). Don't invent new repo keys unless you also add them to `skillRepos`.
20
+ 4. Run `node bin/install.js --help` — your new track should appear in the help output.
21
+ 5. Dry-run: `node bin/install.js --track your-track-key --dry-run --yes --global`.
22
+
23
+ ## Adding a new specialization pack
24
+
25
+ Packs are stackable add-ons to tracks (e.g., `--pack marketing`). Same pattern:
26
+
27
+ 1. Under `packs` in `manifest.json`:
28
+ ```json
29
+ "your-pack-key": {
30
+ "label": "Your Pack Name",
31
+ "tagline": "One-line description",
32
+ "required": ["..."],
33
+ "optional": ["..."]
34
+ }
35
+ ```
36
+ 2. If the pack references a repo that doesn't exist yet, add it to `skillRepos` with `"status": "planned"` so the installer skips it gracefully until the repo is published.
37
+
38
+ ## Adding a new skill repo
39
+
40
+ If a new skill lives in a brand-new ORBWEVA repo:
41
+
42
+ 1. Make sure the repo is **public** and has this layout:
43
+ ```
44
+ skills/<skill-name>/SKILL.md
45
+ ```
46
+ 2. Add to `skillRepos` in `manifest.json`:
47
+ ```json
48
+ "your-repo-key": {
49
+ "repo": "ORBWEVA/your-repo-name",
50
+ "skills": ["skill-name-1", "skill-name-2"]
51
+ }
52
+ ```
53
+ 3. Reference it from one or more `tracks` or `packs`.
54
+
55
+ ## Testing locally
56
+
57
+ ```bash
58
+ # Verify parsing + help renders
59
+ node bin/install.js --help
60
+
61
+ # Dry-run the flow
62
+ node bin/install.js --track accelerator --dry-run --yes --global
63
+
64
+ # Full install into a sandboxed HOME (won't touch your real ~/.claude/)
65
+ HOME=/tmp/academy-test node bin/install.js --yes --global --skills-only --track accelerator
66
+ ls /tmp/academy-test/.claude/skills/
67
+ ```
68
+
69
+ ## PR guidelines
70
+
71
+ - **One change per PR** where possible (new track + new pack should be two PRs).
72
+ - **Update `CHANGELOG.md`** under `[Unreleased]` with the change.
73
+ - **Commit style**: imperative mood, explain *why* not *what* in the body.
74
+
75
+ ## Questions
76
+
77
+ Open an issue at https://github.com/ORBWEVA/academy/issues or ping @orbweva on X.
package/LICENSE ADDED
@@ -0,0 +1,43 @@
1
+ ORBWEVA Academy CLI — Dual License
2
+ ===================================
3
+
4
+ This repository is dual-licensed to match ORBWEVA's broader licensing posture:
5
+
6
+ 1. **Source code** — `bin/`, `src/`, `manifest.json`, and any other executable
7
+ or configuration files — is licensed under **the MIT License** (see below).
8
+
9
+ 2. **Documentation and prose** — `README.md`, `README.ja-JP.md`, `README.ko-KR.md`,
10
+ `CHANGELOG.md`, `CONTRIBUTING.md`, `SECURITY.md`, and everything under `docs/` —
11
+ is licensed under **Creative Commons Attribution-NonCommercial-ShareAlike 4.0
12
+ International (CC BY-NC-SA 4.0)**. See `LICENSE-DOCS` for full terms.
13
+
14
+ The installed skills themselves live in separate ORBWEVA repositories, each
15
+ carrying its own `LICENSE` (typically CC BY-NC-SA 4.0). This installer does not
16
+ relicense them — it merely copies their files into your Claude Code skills
17
+ directory.
18
+
19
+ If you have questions about reuse or permissions, contact legal@orbweva.com.
20
+
21
+ -------------------------------------------------------------------------------
22
+ MIT License (applies to source code only)
23
+ -------------------------------------------------------------------------------
24
+
25
+ Copyright (c) 2026 ORBWEVA
26
+
27
+ Permission is hereby granted, free of charge, to any person obtaining a copy
28
+ of this software and associated configuration files (the "Software"), to deal
29
+ in the Software without restriction, including without limitation the rights
30
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
31
+ copies of the Software, and to permit persons to whom the Software is
32
+ furnished to do so, subject to the following conditions:
33
+
34
+ The above copyright notice and this permission notice shall be included in all
35
+ copies or substantial portions of the Software.
36
+
37
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43
+ SOFTWARE.
package/LICENSE-DOCS ADDED
@@ -0,0 +1,35 @@
1
+ Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
2
+
3
+ Copyright (c) 2026 ORBWEVA
4
+
5
+ This license applies to the **documentation and prose** in this repository:
6
+ README.md, README.ja-JP.md, README.ko-KR.md, CHANGELOG.md, CONTRIBUTING.md,
7
+ SECURITY.md, and everything under docs/. Source code (bin/, src/, manifest.json)
8
+ is licensed separately under the MIT License — see LICENSE.
9
+
10
+ You are free to:
11
+
12
+ - **Share** — copy and redistribute the material in any medium or format
13
+ - **Adapt** — remix, transform, and build upon the material
14
+
15
+ Under the following terms:
16
+
17
+ - **Attribution** — You must give appropriate credit to ORBWEVA, provide a
18
+ link to the license, and indicate if changes were made. You may do so in
19
+ any reasonable manner, but not in any way that suggests the licensor
20
+ endorses you or your use.
21
+
22
+ - **NonCommercial** — You may not use the material for commercial purposes
23
+ without explicit written permission from ORBWEVA.
24
+
25
+ - **ShareAlike** — If you remix, transform, or build upon the material,
26
+ you must distribute your contributions under the same license as the
27
+ original.
28
+
29
+ - **No additional restrictions** — You may not apply legal terms or
30
+ technological measures that legally restrict others from doing anything
31
+ the license permits.
32
+
33
+ Full license text: https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
34
+
35
+ For commercial licensing inquiries, contact legal@orbweva.com.
@@ -0,0 +1,156 @@
1
+ <div align="center">
2
+
3
+ # @orbweva/academy
4
+
5
+ [English](README.md) · **日本語** · [한국어](README.ko-KR.md)
6
+
7
+ ファウンダーに必要なORBWEVA Claude Codeスキルを、1つのコマンドでインストール。
8
+
9
+ ```
10
+ npx @orbweva/academy@latest
11
+ ```
12
+
13
+ **macOS、Windows、Linux**で動作。Node 18+、ランタイム依存ゼロ。
14
+
15
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
16
+ [![ORBWEVA Academy](https://img.shields.io/badge/ORBWEVA-Academy-1f6feb.svg)](https://orbweva.com/ja/accelerator/skills)
17
+
18
+ [なぜ存在するのか](#なぜ存在するのか) · [クイックスタート](#クイックスタート) · [トラック](#トラック) · [スペシャライゼーションパック](#スペシャライゼーションパック) · [関連ドキュメント](#関連ドキュメント)
19
+
20
+ </div>
21
+
22
+ ---
23
+
24
+ ## なぜ存在するのか
25
+
26
+ ORBWEVAの生徒が最初にやることは、22個のスラッシュコマンドを順番に入力することでした。`/plugin marketplace add …` の後に `/plugin install …` を11回。順番を間違えると `Unknown skill: discovery — Create a new one?` が表示され、反射的にEnterを押すと偽のスキルが作成され、エラーメッセージも出ません。Windowsでは、管理者権限の `winget` と非管理者権限の `scoop` のために2つのPowerShellウィンドウが必要で、`EBADENGINE` 警告は無害だが「'gh' が認識されない」はPATHが古いだけ、と気づくまで半分のインストールが失敗し続けます。
27
+
28
+ 誰も望まない通過儀礼でした。だからこれを作りました。
29
+
30
+ **このツールができること** — 22個の `/plugin …` コマンドを1つの `npx` 呼び出しに置き換えます。公開されている11個のORBWEVAスキルリポジトリをシャロークローンし、`skills/<name>/` ディレクトリを `~/.claude/skills/` にコピー、その後まだ必要なプラットフォーム固有のCLIツールとMCPサーバーコマンドを表示します。ランタイム依存ゼロ。Node 18+と `git` のみが前提条件です。
31
+
32
+ ## 対象ユーザー
33
+
34
+ - **ORBWEVA Acceleratorの受講生** — 12週間のコホートプログラム
35
+ - **ファウンダートラックのパートナー** — クライアントに軽量なファウンダーベースを再販する代理店など
36
+ - **メンタリングクライアント** — 1:1のオペレーターサポートを受けている既存ビジネス
37
+ - **セルフペース学習者** — Courseトラック
38
+ - **スペシャリスト** — トラックに垂直方向のスキルを重ねる人(Lokaエコシステム、マーケティング代理店、Web+ビデオスタジオ)
39
+
40
+ どれにも当てはまらないがスキルは欲しい場合は、`--track full` を実行してください。
41
+
42
+ ## クイックスタート
43
+
44
+ ```bash
45
+ # メニューからトラックを選択し、いくつかのプロンプトに答える
46
+ npx @orbweva/academy@latest
47
+
48
+ # 特定のトラックに直接行き、オプションスキルごとにプロンプト
49
+ npx @orbweva/academy@latest --track accelerator
50
+
51
+ # 完全に非対話モード(全デフォルト、全オプションスキル、グローバル)
52
+ npx @orbweva/academy@latest --track accelerator --yes --global
53
+
54
+ # トラックの上にスペシャライゼーションを重ねる
55
+ npx @orbweva/academy@latest --track accelerator --pack loka
56
+ npx @orbweva/academy@latest --track accelerator --pack marketing --pack web-video
57
+
58
+ # パートナー提供型の軽量ファウンダーベース(Acceleratorのオーバーヘッドなし)
59
+ npx @orbweva/academy@latest --track founder
60
+ ```
61
+
62
+ ## トラック
63
+
64
+ 1つのベースプログラムを選択。トラックごとの詳細は [docs/TRACKS.md](docs/TRACKS.md) を参照。
65
+
66
+ | トラック | 対象 | スキル数 |
67
+ |---|---|---|
68
+ | `accelerator` | 12週間コホート — ゼロから一へのファウンダー | 15 |
69
+ | `course` | セルフペースのファウンダー基礎 | 9 |
70
+ | `mentoring` | 既存ビジネス向け1:1オペレーターサポート | 13 |
71
+ | `founder` | パートナー提供型プログラムの軽量ベース(代理店、リセラー) | 10 |
72
+ | `full` | すべて — トレードオフなし | 15 |
73
+
74
+ ## スペシャライゼーションパック
75
+
76
+ どのトラックにも重ねて使用可能。[docs/PACKS.md](docs/PACKS.md) 参照。
77
+
78
+ | パック | 対象 | ステータス |
79
+ |---|---|---|
80
+ | `loka` | Loka living-textbook + LoLAアバタープラットフォーム上のビジネス | 計画中 |
81
+ | `marketing` | 1人(または小チーム)のマーケティング代理店 | 計画中 |
82
+ | `web-video` | Webデザイン + ビデオ編集スタジオ | 計画中 |
83
+
84
+ > パックリポジトリは `manifest.json` でステージングされていますが、まだ公開されていません。リポジトリが公開されるまで、インストーラーは計画中のパックを優雅にスキップします。
85
+
86
+ ## インストールされる内容
87
+
88
+ インストーラーはトラック + 追加したパックからスキルセットを構成し、関連する公開ORBWEVAリポジトリをClaude Codeのスキルフォルダにクローンします。
89
+
90
+ **すべてのスキルとコマンドのフェーズ別カタログ** — [ORBWEVA Accelerator Skills Reference](https://orbweva.com/ja/accelerator/skills) を参照してください。これが正式な情報源です。ここでは重複させません。
91
+
92
+ ## インストールの確認
93
+
94
+ インストーラーが完了したら、Claude Codeを開いて実行:
95
+
96
+ ```
97
+ /discovery:help
98
+ ```
99
+
100
+ カスタマーディスカバリーのコマンドメニューが表示されるはずです。`Unknown skill` と表示される場合は [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) を参照。
101
+
102
+ ## 更新の維持
103
+
104
+ ワンライナーを再実行:
105
+
106
+ ```bash
107
+ npx @orbweva/academy@latest
108
+ ```
109
+
110
+ 各リポジトリを再クローンし、既存のスキルフォルダを上書きします。エアギャップまたはnpmなしの環境については [docs/manual-update.md](docs/manual-update.md) を参照。
111
+
112
+ ## すべてのフラグ
113
+
114
+ | フラグ | 意味 |
115
+ |---|---|
116
+ | `-t, --track <name>` | トラック選択: `accelerator`, `course`, `mentoring`, `founder`, `full` |
117
+ | `-p, --pack <name>` | スペシャライゼーションパックを追加(繰り返し可能) |
118
+ | `-g, --global` | `~/.claude/skills/` にインストール |
119
+ | `-l, --local` | `./.claude/skills/` にインストール |
120
+ | `-y, --yes` | 全デフォルトを受け入れ、CLI/MCPコマンドも全て自動実行、プロンプトなし |
121
+ | `--skills-only` | スキルのみインストール、CLI + MCPセットアップは完全にスキップ |
122
+ | `--no-run` | CLI + MCPコマンドを表示するが実行しない。スキルはインストールされる。 |
123
+ | `--dry-run` | 予定を表示、ディスクには触れない |
124
+ | `-h, --help` | ヘルプを表示 |
125
+
126
+ ## 関連ドキュメント
127
+
128
+ **このリポジトリ内:**
129
+ - [docs/USER-GUIDE.md](docs/USER-GUIDE.md) — 全フラグの組み合わせを含む詳細ウォークスルー
130
+ - [docs/TRACKS.md](docs/TRACKS.md) — トラックごとの詳細
131
+ - [docs/PACKS.md](docs/PACKS.md) — スペシャライゼーションパックの構造 + 追加方法
132
+ - [docs/CLI-TOOLS.md](docs/CLI-TOOLS.md) — OS別CLIインストールリファレンス(Windowsの落とし穴を含む)
133
+ - [docs/MCP-SERVERS.md](docs/MCP-SERVERS.md) — トラック別MCPサーバー設定
134
+ - [docs/manual-update.md](docs/manual-update.md) — npmなし環境向けフォールバックインストール
135
+ - [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) — インストーラー固有の問題
136
+
137
+ **ORBWEVAエコシステム内:**
138
+ - [ORBWEVA Accelerator Skills Reference](https://orbweva.com/ja/accelerator/skills) — スキル + コマンドのフェーズ別正式カタログ
139
+ - [Accelerator Curriculum Template](https://github.com/ORBWEVA/accelerator-template) — 12週間プログラムガイド
140
+ - [プログラムトラブルシューティングガイド](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/TROUBLESHOOTING.md) — インストーラー以外の問題(セッション中のスキル失敗、APIキーなど)
141
+ - [卒業基準](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/GRADUATION_CRITERIA.md) — Acceleratorの「完了」の定義
142
+
143
+ ## コントリビュート
144
+
145
+ トラック、パック、スキルリポジトリの追加は [CONTRIBUTING.md](CONTRIBUTING.md) 参照。ほとんどの変更は `manifest.json` の1行編集です。
146
+
147
+ ## ライセンス
148
+
149
+ ORBWEVAエコシステムに合わせてデュアルライセンス:
150
+
151
+ - **ソースコード** (`bin/`, `src/`, `manifest.json`) — [MIT](LICENSE)
152
+ - **ドキュメントとプロース** (READMEファイル、`docs/`、`CHANGELOG` など) — [CC BY-NC-SA 4.0](LICENSE-DOCS)
153
+
154
+ インストールされるスキルは個別のORBWEVAリポジトリにあり、それぞれ独自のライセンス(通常CC BY-NC-SA 4.0)に従います。このインストーラーは再ライセンスしません。
155
+
156
+ © 2026 ORBWEVA. 商用利用のお問い合わせ: legal@orbweva.com.
@@ -0,0 +1,156 @@
1
+ <div align="center">
2
+
3
+ # @orbweva/academy
4
+
5
+ [English](README.md) · [日本語](README.ja-JP.md) · **한국어**
6
+
7
+ 파운더가 필요한 모든 ORBWEVA Claude Code 스킬을 명령어 하나로 설치.
8
+
9
+ ```
10
+ npx @orbweva/academy@latest
11
+ ```
12
+
13
+ **macOS, Windows, Linux**에서 작동. Node 18+, 런타임 의존성 없음.
14
+
15
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
16
+ [![ORBWEVA Academy](https://img.shields.io/badge/ORBWEVA-Academy-1f6feb.svg)](https://orbweva.com/ko/accelerator/skills)
17
+
18
+ [존재 이유](#존재-이유) · [빠른 시작](#빠른-시작) · [트랙](#트랙) · [스페셜라이제이션 팩](#스페셜라이제이션-팩) · [관련 문서](#관련-문서)
19
+
20
+ </div>
21
+
22
+ ---
23
+
24
+ ## 존재 이유
25
+
26
+ ORBWEVA 수강생이 제일 먼저 하는 일은 22개의 슬래시 명령어를 순서대로 입력하는 것이었습니다. `/plugin marketplace add …` 다음 `/plugin install …`, 11번 반복. 순서를 틀리면 `Unknown skill: discovery — Create a new one?`이 뜨고, 반사적으로 Enter를 누르면 가짜 스킬이 생성되며 오류 메시지도 없습니다. Windows에서는 관리자 권한 `winget`용과 비관리자 권한 `scoop`용 PowerShell 창 두 개가 동시에 필요하고, `EBADENGINE` 경고는 무해하지만 "'gh'를 인식할 수 없다"는 단순히 PATH가 갱신되지 않았다는 것을 깨닫기 전까지 절반이 조용히 실패합니다.
27
+
28
+ 아무도 원치 않는 통과 의례였습니다. 그래서 이걸 만들었습니다.
29
+
30
+ **이 도구가 하는 일** — 22개의 `/plugin …` 명령어를 하나의 `npx` 호출로 대체합니다. 11개의 공개 ORBWEVA 스킬 저장소를 얕게 클론하고, `skills/<name>/` 디렉터리를 `~/.claude/skills/`로 복사한 뒤, 여전히 필요한 플랫폼별 CLI 도구와 MCP 서버 명령어를 출력합니다. 런타임 의존성 없음. Node 18+와 `git`만 있으면 됩니다.
31
+
32
+ ## 대상 사용자
33
+
34
+ - **ORBWEVA Accelerator 수강생** — 12주 코호트 프로그램
35
+ - **파운더 트랙 파트너** — 고객에게 경량 파운더 베이스를 재판매하는 에이전시 등
36
+ - **멘토링 고객** — 1:1 운영자 지원을 받는 기존 비즈니스
37
+ - **자율 학습자** — Course 트랙
38
+ - **스페셜리스트** — 트랙 위에 수직 영역을 쌓는 사용자 (Loka 생태계, 마케팅 에이전시, 웹+비디오 스튜디오)
39
+
40
+ 위에 해당하지 않지만 스킬이 필요하면 `--track full`을 실행하세요.
41
+
42
+ ## 빠른 시작
43
+
44
+ ```bash
45
+ # 메뉴에서 트랙 선택, 몇 가지 프롬프트에 답변
46
+ npx @orbweva/academy@latest
47
+
48
+ # 특정 트랙으로 직행, 옵션 스킬별 프롬프트
49
+ npx @orbweva/academy@latest --track accelerator
50
+
51
+ # 완전 비대화형 (모든 기본값, 모든 옵션 스킬, 글로벌)
52
+ npx @orbweva/academy@latest --track accelerator --yes --global
53
+
54
+ # 트랙 위에 스페셜라이제이션 쌓기
55
+ npx @orbweva/academy@latest --track accelerator --pack loka
56
+ npx @orbweva/academy@latest --track accelerator --pack marketing --pack web-video
57
+
58
+ # 파트너 제공 경량 파운더 베이스 (Accelerator 오버헤드 없음)
59
+ npx @orbweva/academy@latest --track founder
60
+ ```
61
+
62
+ ## 트랙
63
+
64
+ 베이스 프로그램 하나 선택. 트랙별 상세는 [docs/TRACKS.md](docs/TRACKS.md) 참조.
65
+
66
+ | 트랙 | 대상 | 스킬 수 |
67
+ |---|---|---|
68
+ | `accelerator` | 12주 코호트 — 제로투원 파운더 | 15 |
69
+ | `course` | 자율 학습 파운더 기본기 | 9 |
70
+ | `mentoring` | 기존 비즈니스를 위한 1:1 운영자 지원 | 13 |
71
+ | `founder` | 파트너 제공 프로그램용 경량 베이스 (에이전시, 리셀러) | 10 |
72
+ | `full` | 전체 — 트레이드오프 없음 | 15 |
73
+
74
+ ## 스페셜라이제이션 팩
75
+
76
+ 어떤 트랙 위에도 쌓을 수 있습니다. [docs/PACKS.md](docs/PACKS.md) 참조.
77
+
78
+ | 팩 | 대상 | 상태 |
79
+ |---|---|---|
80
+ | `loka` | Loka living-textbook + LoLA 아바타 플랫폼 위 비즈니스 | 계획 중 |
81
+ | `marketing` | 1인 (또는 소규모 팀) 마케팅 에이전시 | 계획 중 |
82
+ | `web-video` | 웹 디자인 + 비디오 편집 스튜디오 | 계획 중 |
83
+
84
+ > 팩 저장소는 `manifest.json`에 스테이징되어 있지만 아직 공개되지 않았습니다. 저장소가 공개되기 전까지 설치 관리자는 계획 중인 팩을 우아하게 건너뜁니다.
85
+
86
+ ## 설치되는 것
87
+
88
+ 설치 관리자는 트랙 + 추가한 팩으로 스킬 세트를 구성하고 관련 공개 ORBWEVA 저장소를 Claude Code 스킬 폴더에 클론합니다.
89
+
90
+ **모든 스킬과 명령어의 페이즈별 카탈로그**는 [ORBWEVA Accelerator Skills Reference](https://orbweva.com/ko/accelerator/skills)를 참조. 그게 공식 출처이며, 여기서는 중복하지 않습니다.
91
+
92
+ ## 설치 확인
93
+
94
+ 설치 관리자가 끝나면 Claude Code를 열고 실행:
95
+
96
+ ```
97
+ /discovery:help
98
+ ```
99
+
100
+ 고객 발견 명령어 메뉴가 나타나야 합니다. Claude가 `Unknown skill`이라고 하면 [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) 참조.
101
+
102
+ ## 최신 상태 유지
103
+
104
+ 동일한 원라이너 재실행:
105
+
106
+ ```bash
107
+ npx @orbweva/academy@latest
108
+ ```
109
+
110
+ 각 저장소를 다시 클론하고 기존 스킬 폴더를 덮어씁니다. 에어갭 또는 npm 없는 환경은 [docs/manual-update.md](docs/manual-update.md) 참조.
111
+
112
+ ## 모든 플래그
113
+
114
+ | 플래그 | 의미 |
115
+ |---|---|
116
+ | `-t, --track <name>` | 트랙: `accelerator`, `course`, `mentoring`, `founder`, `full` |
117
+ | `-p, --pack <name>` | 스페셜라이제이션 팩 추가 (반복 가능) |
118
+ | `-g, --global` | `~/.claude/skills/`에 설치 |
119
+ | `-l, --local` | `./.claude/skills/`에 설치 |
120
+ | `-y, --yes` | 모든 기본값 수락 + CLI/MCP 명령어도 모두 자동 실행, 프롬프트 없음 |
121
+ | `--skills-only` | 스킬만 설치, CLI + MCP 설정은 완전히 건너뛰기 |
122
+ | `--no-run` | CLI + MCP 명령어를 출력만 하고 실행하지 않음. 스킬은 설치됨. |
123
+ | `--dry-run` | 예정 표시, 디스크 변경 없음 |
124
+ | `-h, --help` | 도움말 표시 |
125
+
126
+ ## 관련 문서
127
+
128
+ **이 저장소 내:**
129
+ - [docs/USER-GUIDE.md](docs/USER-GUIDE.md) — 모든 플래그 조합 포함 상세 워크스루
130
+ - [docs/TRACKS.md](docs/TRACKS.md) — 트랙별 딥다이브
131
+ - [docs/PACKS.md](docs/PACKS.md) — 스페셜라이제이션 팩 아키텍처 + 추가 방법
132
+ - [docs/CLI-TOOLS.md](docs/CLI-TOOLS.md) — OS별 CLI 설치 레퍼런스 (Windows 함정 포함)
133
+ - [docs/MCP-SERVERS.md](docs/MCP-SERVERS.md) — 트랙별 MCP 서버 설정
134
+ - [docs/manual-update.md](docs/manual-update.md) — npm 없는 환경용 대체 설치
135
+ - [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) — 설치 관리자 관련 문제
136
+
137
+ **ORBWEVA 생태계 내:**
138
+ - [ORBWEVA Accelerator Skills Reference](https://orbweva.com/ko/accelerator/skills) — 스킬 + 명령어의 페이즈별 공식 카탈로그
139
+ - [Accelerator Curriculum Template](https://github.com/ORBWEVA/accelerator-template) — 12주 프로그램 가이드
140
+ - [프로그램 트러블슈팅 가이드](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/TROUBLESHOOTING.md) — 설치 외 문제 (세션 중 스킬 실패, API 키 등)
141
+ - [졸업 기준](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/GRADUATION_CRITERIA.md) — Accelerator "완료"의 의미
142
+
143
+ ## 기여
144
+
145
+ 트랙, 팩, 스킬 저장소 추가는 [CONTRIBUTING.md](CONTRIBUTING.md) 참조. 대부분의 변경은 `manifest.json`의 한 줄 편집입니다.
146
+
147
+ ## 라이선스
148
+
149
+ ORBWEVA 생태계에 맞춘 듀얼 라이선스:
150
+
151
+ - **소스 코드** (`bin/`, `src/`, `manifest.json`) — [MIT](LICENSE)
152
+ - **문서 및 산문** (README 파일, `docs/`, `CHANGELOG` 등) — [CC BY-NC-SA 4.0](LICENSE-DOCS)
153
+
154
+ 설치되는 스킬은 별도의 ORBWEVA 저장소에 있으며 각자의 라이선스(일반적으로 CC BY-NC-SA 4.0)를 따릅니다. 이 설치 관리자는 재라이선스하지 않습니다.
155
+
156
+ © 2026 ORBWEVA. 상업적 라이선스 문의: legal@orbweva.com.
package/README.md ADDED
@@ -0,0 +1,158 @@
1
+ <div align="center">
2
+
3
+ # @orbweva/academy
4
+
5
+ **English** · [日本語](README.ja-JP.md) · [한국어](README.ko-KR.md)
6
+
7
+ One command to install every ORBWEVA Claude Code skill a founder needs.
8
+
9
+ ```
10
+ npx @orbweva/academy@latest
11
+ ```
12
+
13
+ Works on **macOS, Windows, and Linux.** Node 18+, zero runtime dependencies.
14
+
15
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
16
+ [![ORBWEVA Academy](https://img.shields.io/badge/ORBWEVA-Academy-1f6feb.svg)](https://orbweva.com/en/accelerator/skills)
17
+
18
+ [Why this exists](#why-this-exists) · [Quick start](#quick-start) · [Tracks](#tracks) · [Specialization packs](#specialization-packs) · [Related docs](#related-docs)
19
+
20
+ </div>
21
+
22
+ ---
23
+
24
+ ## Why this exists
25
+
26
+ The first thing every ORBWEVA student used to do was type twenty-two slash commands in a row. `/plugin marketplace add …` then `/plugin install …`, eleven times. Get the order wrong, see `Unknown skill: discovery — Create a new one?` — hit Enter by reflex — now you have a fake skill and no error message. On Windows, half the installs fail silently until you discover you needed two PowerShell windows, one Admin for `winget` and one non-Admin for `scoop`, and that `EBADENGINE` warnings are fine but "recognize 'gh'" means your PATH is stale.
27
+
28
+ It was a rite of passage nobody asked for. So we built this.
29
+
30
+ **What it does** — replaces the 22 `/plugin …` commands with one `npx` invocation. Shallow-clones the 11 public ORBWEVA skill repos, copies the `skills/<name>/` directories into `~/.claude/skills/`, then prints the platform-specific CLI tool and MCP server commands you still need to run. Zero runtime dependencies. Node 18+ and `git` are the only prereqs.
31
+
32
+ ## Who this is for
33
+
34
+ - **ORBWEVA Accelerator students** — the 12-week cohort program
35
+ - **Founder-track partners** — e.g. agencies reselling a lean founder base to their clients
36
+ - **Mentoring clients** — existing businesses getting 1:1 operator support
37
+ - **Self-paced learners** — the Course track
38
+ - **Specialists** — anyone layering a vertical on top of a track (Loka ecosystem, marketing agency, web+video studio)
39
+
40
+ If you're none of those but still want the skills, run `--track full`.
41
+
42
+ ## Quick start
43
+
44
+ ```bash
45
+ # Pick a track from the menu, answer a few prompts
46
+ npx @orbweva/academy@latest
47
+
48
+ # Go straight to a track, prompt per optional skill
49
+ npx @orbweva/academy@latest --track accelerator
50
+
51
+ # Fully non-interactive (all defaults, all optional skills, global)
52
+ npx @orbweva/academy@latest --track accelerator --yes --global
53
+
54
+ # Stack a specialization on top of a track
55
+ npx @orbweva/academy@latest --track accelerator --pack loka
56
+ npx @orbweva/academy@latest --track accelerator --pack marketing --pack web-video
57
+
58
+ # Partner-delivered lean founder base (no Accelerator overhead)
59
+ npx @orbweva/academy@latest --track founder
60
+ ```
61
+
62
+ ## Tracks
63
+
64
+ Pick one base program. See [docs/TRACKS.md](docs/TRACKS.md) for full details per track.
65
+
66
+ | Track | For | Skills |
67
+ |---|---|---|
68
+ | `accelerator` | 12-week cohort — zero-to-one founders | 15 |
69
+ | `course` | Self-paced founder fundamentals | 9 |
70
+ | `mentoring` | 1:1 operator support for existing businesses | 13 |
71
+ | `founder` | Lean base for partner-delivered programs (agencies, resellers) | 10 |
72
+ | `full` | Everything — no tradeoffs | 15 |
73
+
74
+ ## Specialization packs
75
+
76
+ Stackable on top of any track. See [docs/PACKS.md](docs/PACKS.md).
77
+
78
+ | Pack | For | Status |
79
+ |---|---|---|
80
+ | `loka` | Businesses on the Loka living-textbook + LoLA avatar platform | Planned |
81
+ | `marketing` | One-person (or small team) marketing agencies | Planned |
82
+ | `web-video` | Web design + video editing studios | Planned |
83
+
84
+ > Pack repos are staged in `manifest.json` but not yet published. The installer skips planned packs gracefully until their repos go live.
85
+
86
+ ## What gets installed
87
+
88
+ The installer composes a skill set from the track + any packs you add, then clones the relevant public ORBWEVA repos into your Claude Code skills folder.
89
+
90
+ **For the full phase-by-phase catalog of every skill and command** — see the [ORBWEVA Accelerator Skills Reference](https://orbweva.com/en/accelerator/skills) (or [ACCELERATOR_SKILLS_REFERENCE.md](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/ACCELERATOR_SKILLS_REFERENCE.md)). That's the authoritative source; we don't duplicate it here.
91
+
92
+ ## Verify install
93
+
94
+ After the installer finishes, open Claude Code and run:
95
+
96
+ ```
97
+ /discovery:help
98
+ ```
99
+
100
+ You should see the customer-discovery command menu. If Claude says `Unknown skill`, see [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md).
101
+
102
+ ## Staying updated
103
+
104
+ Re-run the one-liner:
105
+
106
+ ```bash
107
+ npx @orbweva/academy@latest
108
+ ```
109
+
110
+ It re-clones each repo and overwrites existing skill folders. For air-gapped or npm-less environments, see [docs/manual-update.md](docs/manual-update.md).
111
+
112
+ ## All flags
113
+
114
+ | Flag | Meaning |
115
+ |---|---|
116
+ | `-t, --track <name>` | Pick track: `accelerator`, `course`, `mentoring`, `founder`, `full` |
117
+ | `-p, --pack <name>` | Add a specialization pack (repeatable) |
118
+ | `-g, --global` | Install to `~/.claude/skills/` |
119
+ | `-l, --local` | Install to `./.claude/skills/` |
120
+ | `-y, --yes` | Accept all defaults AND auto-run every CLI/MCP command — no prompts |
121
+ | `--skills-only` | Install skills only; skip CLI + MCP setup entirely |
122
+ | `--no-run` | Print CLI + MCP commands (don't execute them). Skills still install. |
123
+ | `--dry-run` | Show what would happen, touch nothing |
124
+ | `-h, --help` | Show help |
125
+
126
+ After skills install, the CLI prompts Y/n per CLI tool (brew/winget/scoop/npm/`gh auth login`) and per `claude mcp add` command, then runs the ones you approve. Use `--yes` to run them all silently; `--no-run` to see the commands without executing.
127
+
128
+ ## Related docs
129
+
130
+ **In this repo:**
131
+ - [docs/USER-GUIDE.md](docs/USER-GUIDE.md) — long-form walkthrough with every flag combo
132
+ - [docs/TRACKS.md](docs/TRACKS.md) — per-track deep dive
133
+ - [docs/PACKS.md](docs/PACKS.md) — specialization pack architecture + how to add one
134
+ - [docs/CLI-TOOLS.md](docs/CLI-TOOLS.md) — full per-OS CLI install reference (with Windows gotchas)
135
+ - [docs/MCP-SERVERS.md](docs/MCP-SERVERS.md) — MCP server setup per track
136
+ - [docs/manual-update.md](docs/manual-update.md) — fallback install for no-npm environments
137
+ - [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) — installer-specific issues
138
+
139
+ **In the ORBWEVA ecosystem:**
140
+ - [ORBWEVA Accelerator Skills Reference](https://orbweva.com/en/accelerator/skills) — canonical skill + command catalog, phase-by-phase
141
+ - [Accelerator Curriculum Template](https://github.com/ORBWEVA/accelerator-template) — 12-week program guide
142
+ - [Program Troubleshooting Guide](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/TROUBLESHOOTING.md) — for non-installer issues (skills failing mid-session, API keys, etc.)
143
+ - [Graduation Criteria](https://github.com/ORBWEVA/accelerator-template/blob/main/docs/GRADUATION_CRITERIA.md) — what "completing" the Accelerator means
144
+
145
+ ## Contributing
146
+
147
+ To add a track, pack, or skill repo, see [CONTRIBUTING.md](CONTRIBUTING.md). Most changes are one-line edits to `manifest.json`.
148
+
149
+ ## License
150
+
151
+ Dual-licensed to match the ORBWEVA ecosystem:
152
+
153
+ - **Source code** (`bin/`, `src/`, `manifest.json`) — [MIT](LICENSE)
154
+ - **Documentation and prose** (README files, `docs/`, `CHANGELOG`, etc.) — [CC BY-NC-SA 4.0](LICENSE-DOCS)
155
+
156
+ Installed skills live in separate ORBWEVA repos, each under their own license (typically CC BY-NC-SA 4.0). This installer does not relicense them.
157
+
158
+ © 2026 ORBWEVA. Commercial licensing inquiries: legal@orbweva.com.