Skip to content

Commit c19129b

Browse files
committed
docs: add ClawHub package links and GitHub Sponsors
Published on ClawHub (clawhub:@thestreamcode/openclaw-command-code): make it the primary install channel in the README, add ClawHub and Sponsors badges, a Support section, GitHub Sponsors funding config (.github/FUNDING.yml), and the package.json funding field.
1 parent 368fd6d commit c19129b

3 files changed

Lines changed: 27 additions & 5 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: TheStreamCode

README.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# openclaw-command-code
22

33
[![CI](https://github.com/TheStreamCode/openclaw-command-code/actions/workflows/ci.yml/badge.svg)](https://github.com/TheStreamCode/openclaw-command-code/actions/workflows/ci.yml)
4+
[![ClawHub](https://img.shields.io/badge/ClawHub-%40thestreamcode%2Fopenclaw--command--code-blue)](https://clawhub.ai/plugins/@thestreamcode/openclaw-command-code)
5+
[![Sponsor](https://img.shields.io/badge/GitHub-Sponsors-ff69b4)](https://github.com/sponsors/TheStreamCode)
46

57
Command Code ([commandcode.ai](https://commandcode.ai)) model provider plugin for
68
OpenClaw, with **three-tier model resolution**: a generated static baseline for
@@ -51,10 +53,19 @@ node scripts/generate-baseline.mjs
5153

5254
## Install
5355

56+
From [ClawHub](https://clawhub.ai/plugins/@thestreamcode/openclaw-command-code)
57+
(recommended):
58+
59+
```bash
60+
openclaw plugins install clawhub:@thestreamcode/openclaw-command-code
61+
```
62+
5463
From GitHub (requires the committed `dist/` runtime in the repo):
5564

5665
```bash
5766
openclaw plugins install git:github.com/TheStreamCode/openclaw-command-code
67+
# or pinned to a release
68+
openclaw plugins install git:github.com/TheStreamCode/openclaw-command-code@v0.1.0
5869
```
5970

6071
From a local checkout:
@@ -189,14 +200,15 @@ not match the TypeScript sources, on every push to `main` and on pull
189200
requests. Updates to this tooling are applied manually on purpose — there is
190201
no Dependabot or any other automatic update / notification bot configured.
191202

192-
## Publish (optional)
203+
## Publish (maintainers)
193204

194-
To make it discoverable on ClawHub:
205+
The plugin is published on
206+
[ClawHub](https://clawhub.ai/plugins/@thestreamcode/openclaw-command-code).
207+
To publish a new version (requires `clawhub login`):
195208

196209
```bash
197-
clawhub login
198-
clawhub package publish TheStreamCode/openclaw-command-code --dry-run
199-
clawhub package publish TheStreamCode/openclaw-command-code
210+
clawhub package publish TheStreamCode/openclaw-command-code --family code-plugin --dry-run
211+
clawhub package publish TheStreamCode/openclaw-command-code --family code-plugin
200212
```
201213

202214
## Files
@@ -216,6 +228,11 @@ scripts/live-test.mjs # live inference test using the stored key (never
216228
AGENTS.md # agent-oriented project guide
217229
```
218230

231+
## Support
232+
233+
If this plugin is useful to you, consider
234+
[sponsoring the maintainer on GitHub](https://github.com/sponsors/TheStreamCode).
235+
219236
## License
220237

221238
This project is licensed under the [MIT License](LICENSE).

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
"bugs": {
1515
"url": "https://github.com/TheStreamCode/openclaw-command-code/issues"
1616
},
17+
"funding": {
18+
"type": "github",
19+
"url": "https://github.com/sponsors/TheStreamCode"
20+
},
1721
"main": "./dist/index.js",
1822
"files": [
1923
"dist",

0 commit comments

Comments
 (0)