-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.33 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cornerstone-autonomous-agent",
"version": "2.0.0",
"description": "CornerStone MCP x402 skill for agents: tools to predict tickers, backtest strategies, link bank accounts, and query agent/borrower scores. Agents pay via Aptos/EVM (x402). Handles 402 → pay → retry. Publishable in marketplaces for autonomous download and use. Includes LangChain.js demo runner (Hugging Face / OpenAI-compatible).",
"type": "module",
"main": "src/run-agent.js",
"bin": {
"autonomous": "src/cli.js",
"cornerstone-autonomous-agent": "src/cli.js",
"cornerstone-agent": "src/run-agent.js"
},
"files": [
"src",
"adapters",
"skills",
".env.example",
"README.md",
"SKILL-clawdhub.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"setup": "node src/setup.js",
"setup:aptos": "node src/setup-aptos.js",
"generate-facilitator-keys": "node src/generate-facilitator-keys.js",
"credit:aptos": "node src/credit-aptos-agent.js",
"addresses": "node src/show-agent-addresses.js",
"balance": "node src/balance.js",
"transfer": "node src/transfer.js",
"contract": "node src/contract.js",
"swap": "node src/swap.js",
"check-update": "node src/check-update.js",
"agent": "node src/run-agent.js",
"start": "node src/run-agent.js",
"attest:aptos": "node src/attest-aptos-wallet.js",
"attest:evm": "node src/attest-evm-wallet.js"
},
"dependencies": {
"@langchain/core": "^0.3.0",
"@langchain/langgraph": "^0.2.0",
"@langchain/openai": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.25.3",
"dotenv": "^16.0.0",
"langchain": "^0.3.0",
"viem": "^2.21.54",
"zod": "^3.23.0"
},
"optionalDependencies": {
"@aptos-labs/ts-sdk": "^1.0.0"
},
"keywords": [
"cornerstone-mcp",
"demo",
"autonomous-agent",
"x402",
"mcp",
"langchain",
"huggingface",
"predict-tickers",
"backtest",
"open-bank-account",
"aptos",
"ethereum",
"wallet",
"evm",
"crypto"
],
"author": "CornerStone MCP",
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "https://github.com/FinTechTonic/autonomous-agent.git"
},
"homepage": "https://github.com/FinTechTonic/autonomous-agent#readme",
"bugs": {
"url": "https://github.com/FinTechTonic/autonomous-agent/issues"
}
}