Skip to content

Commit d911604

Browse files
MaxMa04claude
andcommitted
chore: simplify to Go + npm only, remove Homebrew/Docker/Scoop
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 074353e commit d911604

4 files changed

Lines changed: 5 additions & 88 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77

88
permissions:
99
contents: write
10-
packages: write
1110

1211
jobs:
1312
release:
@@ -23,19 +22,6 @@ jobs:
2322
with:
2423
go-version: stable
2524

26-
- name: Login to GHCR
27-
uses: docker/login-action@v3
28-
with:
29-
registry: ghcr.io
30-
username: ${{ github.actor }}
31-
password: ${{ secrets.GITHUB_TOKEN }}
32-
33-
- name: Set up Docker Buildx
34-
uses: docker/setup-buildx-action@v3
35-
36-
- name: Set up QEMU
37-
uses: docker/setup-qemu-action@v3
38-
3925
- name: Run GoReleaser
4026
uses: goreleaser/goreleaser-action@v6
4127
with:
@@ -44,7 +30,6 @@ jobs:
4430
args: release --clean
4531
env:
4632
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47-
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
4833

4934
- name: Set up Node.js
5035
uses: actions/setup-node@v4

.goreleaser.yaml

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -40,55 +40,3 @@ changelog:
4040
- "^test:"
4141
- "^ci:"
4242
- "^chore:"
43-
44-
brews:
45-
- repository:
46-
owner: MaxMa04
47-
name: homebrew-tap
48-
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
49-
homepage: "https://github.com/MaxMa04/notion-agent-cli"
50-
description: "Notion Agent CLI — full-featured CLI for Notion, built for AI agents."
51-
52-
scoops:
53-
- repository:
54-
owner: MaxMa04
55-
name: scoop-bucket
56-
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
57-
homepage: "https://github.com/MaxMa04/notion-agent-cli"
58-
description: "Notion Agent CLI — full-featured CLI for Notion, built for AI agents."
59-
license: "MIT"
60-
61-
nfpms:
62-
- homepage: "https://github.com/MaxMa04/notion-agent-cli"
63-
maintainer: "Max Mannstein"
64-
description: "Notion Agent CLI — full-featured CLI for Notion, built for AI agents."
65-
license: "MIT"
66-
formats:
67-
- deb
68-
- rpm
69-
70-
dockers:
71-
- image_templates:
72-
- "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}-amd64"
73-
use: buildx
74-
build_flag_templates:
75-
- "--platform=linux/amd64"
76-
goarch: amd64
77-
78-
- image_templates:
79-
- "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}-arm64"
80-
use: buildx
81-
build_flag_templates:
82-
- "--platform=linux/arm64"
83-
goarch: arm64
84-
85-
docker_manifests:
86-
- name_template: "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}"
87-
image_templates:
88-
- "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}-amd64"
89-
- "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}-arm64"
90-
91-
- name_template: "ghcr.io/MaxMa04/notion-agent-cli:latest"
92-
image_templates:
93-
- "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}-amd64"
94-
- "ghcr.io/MaxMa04/notion-agent-cli:{{ .Version }}-arm64"

README.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,35 +23,19 @@ A full-featured command-line interface for [Notion](https://notion.so). Manage p
2323

2424
## Install
2525

26-
### Homebrew (macOS / Linux)
27-
```sh
28-
brew install MaxMa04/tap/notion-agent-cli
29-
```
30-
3126
### npm (cross-platform)
3227
```sh
3328
npm install -g @vibelabsio/notion-agent-cli
3429
```
3530

36-
### Shell Script (Linux / macOS)
37-
```sh
38-
curl -fsSL https://raw.githubusercontent.com/MaxMa04/notion-agent-cli/main/install.sh | sh
39-
```
40-
41-
### Scoop (Windows)
42-
```sh
43-
scoop bucket add maxma04 https://github.com/MaxMa04/scoop-bucket
44-
scoop install notion-agent-cli
45-
```
46-
4731
### Go
4832
```sh
4933
go install github.com/MaxMa04/notion-agent-cli@latest
5034
```
5135

52-
### Docker
36+
### Shell Script (Linux / macOS)
5337
```sh
54-
docker run --rm ghcr.io/maxma04/notion-agent-cli:latest search "query"
38+
curl -fsSL https://raw.githubusercontent.com/MaxMa04/notion-agent-cli/main/install.sh | sh
5539
```
5640

5741
### Binary

npm/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@vibelabsio/notion-agent-cli",
3-
"version": "0.0.0",
3+
"version": "0.6.0",
44
"description": "Notion Agent CLI — full-featured CLI for Notion, built for developers and AI agents",
55
"bin": {
6-
"notion-agent": "./bin/notion-agent"
6+
"notion-agent": "bin/notion-agent"
77
},
88
"scripts": {
99
"postinstall": "node install.js"
@@ -16,7 +16,7 @@
1616
],
1717
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/MaxMa04/notion-agent-cli"
19+
"url": "git+https://github.com/MaxMa04/notion-agent-cli.git"
2020
},
2121
"homepage": "https://github.com/MaxMa04/notion-agent-cli",
2222
"keywords": [

0 commit comments

Comments
 (0)