cornerstone-autonomous-agent 2.0.0 → 2.1.0
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.
- package/.env.example +3 -8
- package/LICENSE.md +384 -384
- package/README.md +27 -27
- package/adapters/local/README.md +2 -2
- package/adapters/openai/openapi.yaml +3 -3
- package/adapters/openclaw/SKILL.md +40 -29
- package/package.json +4 -4
- package/skills/README.md +1 -1
- package/skills/autonomous-agent/SKILL.md +41 -30
- package/src/agent/agent.js +77 -53
- package/src/agent/tools/localTools.js +260 -259
- package/src/agent/tools/mcpTools.js +150 -150
- package/src/cli.js +1 -1
- package/src/lib/aptos/signPayment.js +1 -1
- package/src/lib/evm/signPayment.js +1 -1
- package/src/lib/mcp/client.js +35 -17
- package/src/run-agent.js +2 -2
- package/src/show-agent-addresses.js +33 -33
package/.env.example
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CornerStone MCP autonomous agent – copy to autonomous/.env
|
|
2
2
|
# See demo_mcp/README.md § Configuration for full reference.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
# MCP Server
|
|
6
|
-
# -----------------------------------------------------------------------------
|
|
7
|
-
# MCP server base URL (tool calls, 402 payment flow)
|
|
8
|
-
# Public: https://borrower.replit.app | Local: http://localhost:4023
|
|
9
|
-
MCP_SERVER_URL=https://borrower.replit.app
|
|
4
|
+
MCP_SERVER_URL=https://arnstein.ch
|
|
10
5
|
|
|
11
6
|
# -----------------------------------------------------------------------------
|
|
12
7
|
# x402 Facilitator
|
|
@@ -34,7 +29,7 @@ LLM_MODEL=deepseek-ai/DeepSeek-V3.2-Exp:novita
|
|
|
34
29
|
# Paths to wallet JSON files (create with node src/setup-aptos.js and node src/setup.js)
|
|
35
30
|
APTOS_WALLET_PATH=~/.aptos-agent-wallet.json
|
|
36
31
|
EVM_WALLET_PATH=~/.evm-wallet.json
|
|
37
|
-
# Optional: use env key instead of file (e.g. MetaMask export). Whitelist that address at flow.html
|
|
32
|
+
# Optional: use env key instead of file (e.g. MetaMask export). Whitelist that address at https://arnstein.ch/flow.html
|
|
38
33
|
# EVM_PRIVATE_KEY=0x...
|
|
39
34
|
|
|
40
35
|
# -----------------------------------------------------------------------------
|