-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopenclaw.json
More file actions
108 lines (108 loc) · 2.68 KB
/
Copy pathopenclaw.json
File metadata and controls
108 lines (108 loc) · 2.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "SkopaqTrader",
"description": "AI trading assistant for Indian equities and crypto",
"brain": {
"provider": "custom",
"endpoint": "http://localhost:8000/api/chat/message"
},
"memory": {
"type": "markdown",
"path": ".openclaw/memory"
},
"skills": [
{
"name": "analyze",
"description": "Run AI analysis on a stock symbol (takes 2-5 minutes)",
"trigger": "analyze {symbol}",
"action": {
"type": "http",
"method": "POST",
"url": "http://localhost:8000/api/chat/tool",
"body": {
"tool": "analyze_stock",
"args": { "symbol": "{{symbol}}" }
}
}
},
{
"name": "trade",
"description": "Analyze and execute a trade (paper mode by default)",
"trigger": "trade {symbol}",
"action": {
"type": "http",
"method": "POST",
"url": "http://localhost:8000/api/chat/tool",
"body": {
"tool": "trade_stock",
"args": { "symbol": "{{symbol}}" }
}
}
},
{
"name": "scan",
"description": "Scan the market for top trading candidates",
"trigger": "scan",
"action": {
"type": "http",
"method": "POST",
"url": "http://localhost:8000/api/chat/tool",
"body": {
"tool": "scan_market",
"args": {}
}
}
},
{
"name": "portfolio",
"description": "Show current portfolio positions, holdings, and P&L",
"trigger": "portfolio",
"action": {
"type": "http",
"method": "POST",
"url": "http://localhost:8000/api/chat/tool",
"body": {
"tool": "get_portfolio",
"args": {}
}
}
},
{
"name": "quote",
"description": "Get real-time stock quote",
"trigger": "quote {symbol}",
"action": {
"type": "http",
"method": "POST",
"url": "http://localhost:8000/api/chat/tool",
"body": {
"tool": "get_quote",
"args": { "symbol": "{{symbol}}" }
}
}
}
],
"channels": {
"whatsapp": {
"enabled": false,
"provider": "twilio",
"account_sid": "${SKOPAQ_TWILIO_ACCOUNT_SID}",
"auth_token": "${SKOPAQ_TWILIO_AUTH_TOKEN}",
"phone_number": "${SKOPAQ_TWILIO_PHONE_NUMBER}"
},
"telegram": {
"enabled": false,
"bot_token": "${SKOPAQ_TELEGRAM_BOT_TOKEN}"
},
"slack": {
"enabled": false,
"bot_token": "${SKOPAQ_SLACK_BOT_TOKEN}",
"app_token": "${SKOPAQ_SLACK_APP_TOKEN}"
}
},
"heartbeat": {
"enabled": false,
"cron": "0 9 * * 1-5",
"timezone": "Asia/Kolkata",
"action": "scan"
}
}