|
7 | 7 | | 渠道 | 目标用户 | 实现方式 | 工作量 | |
8 | 8 | |------|---------|---------|--------| |
9 | 9 | | **GitHub Releases** | 所有平台 | goreleaser + GitHub Actions | 1h | |
10 | | -| **go install** | Go 开发者 | 已就绪(`go install github.com/4ier/notion-cli@latest`) | 0 | |
11 | | -| **Homebrew Tap** | macOS/Linux 开发者 | goreleaser 自动生成 formula → `4ier/homebrew-tap` | 30min | |
| 10 | +| **go install** | Go 开发者 | 已就绪(`go install github.com/MaxMa04/notion-agent-cli@latest`) | 0 | |
| 11 | +| **Homebrew Tap** | macOS/Linux 开发者 | goreleaser 自动生成 formula → `MaxMa04/homebrew-tap` | 30min | |
12 | 12 |
|
13 | 13 | ### Tier 2 — 应该做(扩大覆盖) |
14 | 14 |
|
15 | 15 | | 渠道 | 目标用户 | 实现方式 | 工作量 | |
16 | 16 | |------|---------|---------|--------| |
17 | | -| **npm wrapper** | Node.js/agent 生态 | 轻量 npm 包 `@4ier/notion-cli`,postinstall 拉二进制 | 2h | |
18 | | -| **Docker** | CI/CD/自动化 | `ghcr.io/4ier/notion-cli` | 30min | |
| 17 | +| **npm wrapper** | Node.js/agent 生态 | 轻量 npm 包 `@vibelabsio/notion-agent-cli`,postinstall 拉二进制 | 2h | |
| 18 | +| **Docker** | CI/CD/自动化 | `ghcr.io/MaxMa04/notion-agent-cli` | 30min | |
19 | 19 | | **Scoop** | Windows | goreleaser 内置 scoop manifest | 15min | |
20 | 20 |
|
21 | 21 | ### Tier 3 — 锦上添花(长尾) |
|
37 | 37 | ├── builds: linux/darwin/windows × amd64/arm64 |
38 | 38 | ├── archives: tar.gz (unix) / zip (windows) |
39 | 39 | ├── checksum: SHA256 |
40 | | -├── homebrew_formulas: 4ier/homebrew-tap |
41 | | -├── scoop: 4ier/scoop-bucket |
| 40 | +├── homebrew_formulas: MaxMa04/homebrew-tap |
| 41 | +├── scoop: MaxMa04/scoop-bucket |
42 | 42 | └── changelog: auto from git |
43 | 43 |
|
44 | 44 | .github/workflows/release.yml |
|
51 | 51 | **执行步骤:** |
52 | 52 | 1. 创建 `.goreleaser.yaml` |
53 | 53 | 2. 创建 `.github/workflows/release.yml` + `.github/workflows/test.yml` |
54 | | -3. 创建 `4ier/homebrew-tap` 和 `4ier/scoop-bucket` 仓库 |
| 54 | +3. 创建 `MaxMa04/homebrew-tap` 和 `MaxMa04/scoop-bucket` 仓库 |
55 | 55 | 4. 打 tag `v0.2.0`,推送触发自动发布 |
56 | | -5. 验证: `brew install 4ier/tap/notion-cli` |
| 56 | +5. 验证: `brew install MaxMa04/tap/notion-agent-cli` |
57 | 57 |
|
58 | 58 | ### Phase 2: npm wrapper(本周) |
59 | 59 |
|
60 | 60 | ``` |
61 | | -notion-cli-npm/ |
62 | | -├── package.json # name: @4ier/notion-cli |
| 61 | +notion-agent-cli-npm/ |
| 62 | +├── package.json # name: @vibelabsio/notion-agent-cli |
63 | 63 | ├── install.js # postinstall: 检测平台 → 下载对应 GitHub Release 二进制 |
64 | 64 | ├── bin/notion # shell wrapper → 执行下载的二进制 |
65 | 65 | └── README.md |
66 | 66 | ``` |
67 | 67 |
|
68 | | -用户体验: `npx @4ier/notion-cli search "meeting notes"` |
| 68 | +用户体验: `npx @vibelabsio/notion-agent-cli search "meeting notes"` |
69 | 69 |
|
70 | 70 | ### Phase 3: Docker(本周) |
71 | 71 |
|
|
0 commit comments