Skip to content

Commit e769e2b

Browse files
committed
release: rename npm package to dumplingai-cli and prepare v0.1.1
1 parent 401e3d3 commit e769e2b

7 files changed

Lines changed: 67 additions & 25 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
run: pnpm install --frozen-lockfile
3838

3939
- name: Typecheck
40-
run: pnpm --filter @dumplingai/cli typecheck
40+
run: pnpm --filter dumplingai-cli typecheck
4141

4242
- name: Unit tests
43-
run: pnpm --filter @dumplingai/cli test
43+
run: pnpm --filter dumplingai-cli test
4444

4545
- name: Build
46-
run: pnpm --filter @dumplingai/cli build
46+
run: pnpm --filter dumplingai-cli build

.github/workflows/publish.yml

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

88
jobs:
99
publish:
10-
name: Publish @dumplingai/cli
10+
name: Publish dumplingai-cli
1111
runs-on: ubuntu-latest
1212
permissions:
1313
contents: read
@@ -29,15 +29,15 @@ jobs:
2929
run: pnpm install --frozen-lockfile
3030

3131
- name: Typecheck
32-
run: pnpm --filter @dumplingai/cli typecheck
32+
run: pnpm --filter dumplingai-cli typecheck
3333

3434
- name: Test
35-
run: pnpm --filter @dumplingai/cli test
35+
run: pnpm --filter dumplingai-cli test
3636

3737
- name: Build
38-
run: pnpm --filter @dumplingai/cli build
38+
run: pnpm --filter dumplingai-cli build
3939

4040
- name: Publish
41-
run: pnpm --filter @dumplingai/cli publish --no-git-checks
41+
run: pnpm --filter dumplingai-cli publish --no-git-checks
4242
env:
4343
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Scrape, search, and extract web content from the terminal — powered by the [Du
66

77
```bash
88
# Option 1: No install required
9-
npx -y @dumplingai/cli init
9+
npx -y dumplingai-cli init
1010

1111
# Option 2: Global install
12-
npm install -g @dumplingai/cli
12+
npm install -g dumplingai-cli
1313
dumplingai login --api-key sk_yourkey
1414
```
1515

@@ -116,7 +116,7 @@ Config file location:
116116

117117
```bash
118118
pnpm install
119-
pnpm --filter @dumplingai/cli build
120-
pnpm --filter @dumplingai/cli test
119+
pnpm --filter dumplingai-cli build
120+
pnpm --filter dumplingai-cli test
121121
node packages/cli/dist/index.js --help
122122
```

packages/cli/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# DumplingAI CLI
2+
3+
`dumplingai-cli` is the official DumplingAI command-line tool for scraping pages, searching the web, and fetching video transcripts.
4+
5+
## Install
6+
7+
```bash
8+
# run without installing
9+
npx -y dumplingai-cli init
10+
11+
# or install globally
12+
npm install -g dumplingai-cli
13+
```
14+
15+
## Quick Start
16+
17+
```bash
18+
dumplingai login --api-key sk_yourkey
19+
dumplingai scrape https://example.com
20+
```
21+
22+
## Commands
23+
24+
- `dumplingai init`
25+
- `dumplingai login --api-key <key>`
26+
- `dumplingai logout`
27+
- `dumplingai status`
28+
- `dumplingai view-config`
29+
- `dumplingai scrape <url>`
30+
- `dumplingai search <query>`
31+
- `dumplingai transcript <url>`
32+
- `dumplingai env pull`
33+
- `dumplingai setup skill`
34+
- `dumplingai version`
35+
36+
## Links
37+
38+
- Docs and product: https://www.dumplingai.com
39+
- API keys: https://app.dumplingai.com/settings/api-keys
40+
- Repository: https://github.com/dumplingai/cli
41+
- Issues: https://github.com/dumplingai/cli/issues

packages/cli/package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@dumplingai/cli",
3-
"version": "0.1.0",
2+
"name": "dumplingai-cli",
3+
"version": "0.1.1",
44
"description": "DumplingAI CLI — scrape, search, and extract from the terminal",
55
"license": "MIT",
66
"type": "module",
@@ -12,7 +12,8 @@
1212
},
1313
"main": "./dist/index.js",
1414
"files": [
15-
"dist"
15+
"dist",
16+
"README.md"
1617
],
1718
"keywords": [
1819
"dumplingai",
@@ -25,11 +26,11 @@
2526
],
2627
"repository": {
2728
"type": "git",
28-
"url": "https://github.com/dumplingai-org/cli.git"
29+
"url": "https://github.com/dumplingai/cli.git"
2930
},
30-
"homepage": "https://app.dumplingai.com",
31+
"homepage": "https://www.dumplingai.com",
3132
"bugs": {
32-
"url": "https://github.com/dumplingai-org/cli/issues"
33+
"url": "https://github.com/dumplingai/cli/issues"
3334
},
3435
"publishConfig": {
3536
"access": "public"

packages/cli/src/commands/setup-skill.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ const INSTALL_MD = `# Installation
5050
## Quick Start (npx)
5151
5252
\`\`\`bash
53-
npx -y @dumplingai/cli init
53+
npx -y dumplingai-cli init
5454
\`\`\`
5555
5656
## Global Install
5757
5858
\`\`\`bash
59-
npm install -g @dumplingai/cli
59+
npm install -g dumplingai-cli
6060
# or
61-
pnpm add -g @dumplingai/cli
61+
pnpm add -g dumplingai-cli
6262
\`\`\`
6363
6464
## PATH Troubleshooting

skills/dumplingai-cli/rules/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Quick Start (no install required)
44

55
```bash
6-
npx -y @dumplingai/cli init
6+
npx -y dumplingai-cli init
77
```
88

99
This runs the CLI directly via npx and walks you through authentication.
@@ -12,13 +12,13 @@ This runs the CLI directly via npx and walks you through authentication.
1212

1313
```bash
1414
# npm
15-
npm install -g @dumplingai/cli
15+
npm install -g dumplingai-cli
1616

1717
# pnpm
18-
pnpm add -g @dumplingai/cli
18+
pnpm add -g dumplingai-cli
1919

2020
# yarn
21-
yarn global add @dumplingai/cli
21+
yarn global add dumplingai-cli
2222
```
2323

2424
Then authenticate:

0 commit comments

Comments
 (0)