Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
# ───────────────────────────────────────────────────────────────
build-and-release:
name: Build & Release Binaries
needs: publish-npm
needs: [publish-npm, check-version]
runs-on: ubuntu-latest
permissions:
contents: write # Create tag + GitHub Release
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Create GitHub Release
uses: softprops/action-gh-release@v3
with:
tag: v${{ env.VERSION }}
tag_name: v${{ env.VERSION }}
name: v${{ env.VERSION }}
generate_release_notes: true
files: |
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ A CLI tool for calling WeaveFox server-side open capabilities via the MCP protoc
### npm

```bash
# Run without installing
npx @weavefox/cli tools

# Or install globally
# Install globally
npm i -g @weavefox/cli
wf tools
```

### Standalone binary (no Node.js required)
Expand Down
6 changes: 2 additions & 4 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@
### npm

```bash
# 零安装直接运行
npx @weavefox/cli tools

# 或全局安装
# 全局安装
npm i -g @weavefox/cli
wf tools
```

### 独立二进制(无需 Node.js)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weavefox/cli",
"version": "0.0.2",
"version": "0.0.3",
"description": "WeaveFox CLI - Call server-side open capabilities via MCP protocol, for developers and AI agents",
"license": "MIT",
"repository": {
Expand Down