cornerstone-autonomous-agent 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -36
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -178,42 +178,6 @@ Example `~/.openclaw/openclaw.json` to load this repo’s skills:
178
178
  }
179
179
  ```
180
180
 
181
- ### Publishing this skill on MoltBook / OpenClaw (ClawHub)
182
-
183
- [ClawHub](https://clawhub.ai) is the public skill registry for MoltBook and OpenClaw. Publishing lets others install your skill with `clawhub install autonomous-agent`.
184
-
185
- 1. **Install the ClawHub CLI**
186
- ```bash
187
- npm i -g clawhub
188
- ```
189
- or `pnpm add -g clawhub`.
190
-
191
- 2. **Log in** (GitHub account required; must be at least one week old to publish)
192
- ```bash
193
- clawhub login
194
- ```
195
- This opens a browser to authenticate. For CI or headless: `clawhub login --token <token>`.
196
-
197
- 3. **Publish the skill** from the repo root:
198
- ```bash
199
- clawhub publish ./skills/autonomous-agent --slug autonomous-agent --name "Autonomous Agent (x402)" --version 1.0.0 --changelog "Initial release" --tags latest
200
- ```
201
- - `--slug` must match the folder name (`autonomous-agent`) so installs work as `clawhub install autonomous-agent`.
202
- - Omit `--version` / `--changelog` to be prompted. For later releases, bump version (e.g. `--version 1.0.1`) and add a `--changelog` line.
203
-
204
- 4. **Update an existing skill** (after you change `SKILL.md` or metadata): run `publish` again with a new version:
205
- ```bash
206
- clawhub publish ./skills/autonomous-agent --slug autonomous-agent --name "Autonomous Agent (x402)" --version 1.0.1 --changelog "Description of changes" --tags latest
207
- ```
208
- Alternatively, `clawhub sync --root . --all --bump patch --changelog "Description"` scans the repo and publishes changed skills with a bumped version.
209
-
210
- After publishing, the skill appears on [clawhub.ai](https://clawhub.ai) and users can run `clawhub install autonomous-agent` (into `./skills` by default).
211
-
212
- ## Deployment order
213
-
214
- 1. **x402 facilitator** — Use public (e.g. https://x402-navy.vercel.app/facilitator) for full demo; or run local and set X402_EVM_FACILITATOR_URL to public for open_bank_account.
215
- 2. **MCP server** — x402-enabled (e.g. https://borrower.replit.app or run locally).
216
- 3. **Agent** — `node src/run-agent.js` or PM2 (`pm2 start ecosystem.config.cjs --only agent-autonomous` from repo root).
217
181
 
218
182
  ## References
219
183
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cornerstone-autonomous-agent",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "CornerStone Agentic Score: autonomous agent that uses an x402-enabled MCP server to predict tickers, backtest trading strategies, and open bank accounts. Handles 402 Payment Required (pay via Aptos/Ethereum facilitator and retry). LangChain.js ReAct agent with Hugging Face inference (OpenAI-compatible endpoint).",
5
5
  "type": "module",
6
6
  "main": "src/run-agent.js",