@hummingbot/skills 1.0.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/README.md +63 -0
- package/package.json +28 -0
- package/skills/candles-feed/SKILL.md +259 -0
- package/skills/candles-feed/scripts/calculate_indicator.sh +359 -0
- package/skills/candles-feed/scripts/get_candles.sh +158 -0
- package/skills/candles-feed/scripts/get_funding_rate.sh +112 -0
- package/skills/candles-feed/scripts/get_price.sh +86 -0
- package/skills/candles-feed/scripts/list_candle_connectors.sh +47 -0
- package/skills/executor-creator/SKILL.md +212 -0
- package/skills/executor-creator/scripts/clear_position.sh +54 -0
- package/skills/executor-creator/scripts/create_executor.sh +92 -0
- package/skills/executor-creator/scripts/get_executor.sh +37 -0
- package/skills/executor-creator/scripts/get_executor_schema.sh +37 -0
- package/skills/executor-creator/scripts/get_executors_summary.sh +30 -0
- package/skills/executor-creator/scripts/get_position.sh +44 -0
- package/skills/executor-creator/scripts/get_positions.sh +30 -0
- package/skills/executor-creator/scripts/list_executor_types.sh +30 -0
- package/skills/executor-creator/scripts/list_executors.sh +52 -0
- package/skills/executor-creator/scripts/setup_executor.sh +197 -0
- package/skills/executor-creator/scripts/stop_executor.sh +54 -0
- package/skills/hummingbot-api-setup/SKILL.md +308 -0
- package/skills/hummingbot-api-setup/references/original_setup.sh +628 -0
- package/skills/hummingbot-api-setup/scripts/check_prerequisites.sh +92 -0
- package/skills/hummingbot-api-setup/scripts/deploy_full_stack.sh +151 -0
- package/skills/hummingbot-api-setup/scripts/health_check.sh +100 -0
- package/skills/hummingbot-api-setup/scripts/step1_detect_system.sh +88 -0
- package/skills/hummingbot-api-setup/scripts/step2_check_dependencies.sh +81 -0
- package/skills/keys-manager/SKILL.md +132 -0
- package/skills/keys-manager/scripts/add_credentials.sh +106 -0
- package/skills/keys-manager/scripts/get_connector_config.sh +67 -0
- package/skills/keys-manager/scripts/list_account_credentials.sh +82 -0
- package/skills/keys-manager/scripts/list_connectors.sh +64 -0
- package/skills/keys-manager/scripts/remove_credentials.sh +79 -0
- package/skills/keys-manager/scripts/setup_connector.sh +214 -0
- package/skills.json +137 -0
package/skills.json
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repo": {
|
|
3
|
+
"owner": "hummingbot",
|
|
4
|
+
"name": "skills",
|
|
5
|
+
"url": "https://github.com/hummingbot/skills"
|
|
6
|
+
},
|
|
7
|
+
"skills": [
|
|
8
|
+
{
|
|
9
|
+
"id": "hummingbot-api-setup",
|
|
10
|
+
"name": "hummingbot-api-setup",
|
|
11
|
+
"description": "Deploy Hummingbot infrastructure (Docker, API server, Gateway)",
|
|
12
|
+
"category": "infrastructure",
|
|
13
|
+
"triggers": ["install hummingbot", "setup trading", "deploy api", "docker setup"],
|
|
14
|
+
"path": "skills/hummingbot-api-setup",
|
|
15
|
+
"installs": {
|
|
16
|
+
"total": 0,
|
|
17
|
+
"weekly": 0,
|
|
18
|
+
"by_agent": {}
|
|
19
|
+
},
|
|
20
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
21
|
+
"status": "active"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "keys-manager",
|
|
25
|
+
"name": "keys-manager",
|
|
26
|
+
"description": "Manage exchange API credentials with progressive disclosure",
|
|
27
|
+
"category": "configuration",
|
|
28
|
+
"triggers": ["add api key", "configure exchange", "setup binance", "add credentials"],
|
|
29
|
+
"path": "skills/keys-manager",
|
|
30
|
+
"installs": {
|
|
31
|
+
"total": 0,
|
|
32
|
+
"weekly": 0,
|
|
33
|
+
"by_agent": {}
|
|
34
|
+
},
|
|
35
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
36
|
+
"status": "active"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "executor-creator",
|
|
40
|
+
"name": "executor-creator",
|
|
41
|
+
"description": "Create and manage trading executors (position, grid, DCA, TWAP)",
|
|
42
|
+
"category": "trading",
|
|
43
|
+
"triggers": ["create executor", "position executor", "grid trading", "dca order", "start trading"],
|
|
44
|
+
"path": "skills/executor-creator",
|
|
45
|
+
"installs": {
|
|
46
|
+
"total": 0,
|
|
47
|
+
"weekly": 0,
|
|
48
|
+
"by_agent": {}
|
|
49
|
+
},
|
|
50
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
51
|
+
"status": "active"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "candles-feed",
|
|
55
|
+
"name": "candles-feed",
|
|
56
|
+
"description": "Fetch market data and calculate technical indicators (RSI, EMA, MACD, Bollinger Bands)",
|
|
57
|
+
"category": "data",
|
|
58
|
+
"triggers": ["get candles", "calculate rsi", "market data", "technical analysis"],
|
|
59
|
+
"path": "skills/candles-feed",
|
|
60
|
+
"installs": {
|
|
61
|
+
"total": 0,
|
|
62
|
+
"weekly": 0,
|
|
63
|
+
"by_agent": {}
|
|
64
|
+
},
|
|
65
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
66
|
+
"status": "active"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "spot-connector-tester",
|
|
70
|
+
"name": "spot-connector-tester",
|
|
71
|
+
"description": "QA skill to test spot connectors - add keys, get prices, get candles",
|
|
72
|
+
"category": "qa",
|
|
73
|
+
"triggers": ["test spot", "verify spot connector", "spot qa"],
|
|
74
|
+
"path": "skills/spot-connector-tester",
|
|
75
|
+
"installs": {
|
|
76
|
+
"total": 0,
|
|
77
|
+
"weekly": 0,
|
|
78
|
+
"by_agent": {}
|
|
79
|
+
},
|
|
80
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
81
|
+
"status": "planned"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "perp-connector-tester",
|
|
85
|
+
"name": "perp-connector-tester",
|
|
86
|
+
"description": "QA skill to test perpetual connectors",
|
|
87
|
+
"category": "qa",
|
|
88
|
+
"triggers": ["test perp", "verify perpetual", "perp qa"],
|
|
89
|
+
"path": "skills/perp-connector-tester",
|
|
90
|
+
"installs": {
|
|
91
|
+
"total": 0,
|
|
92
|
+
"weekly": 0,
|
|
93
|
+
"by_agent": {}
|
|
94
|
+
},
|
|
95
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
96
|
+
"status": "planned"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "gateway-connector-tester",
|
|
100
|
+
"name": "gateway-connector-tester",
|
|
101
|
+
"description": "QA skill to test Gateway/DEX router connectors",
|
|
102
|
+
"category": "qa",
|
|
103
|
+
"triggers": ["test gateway", "verify router", "gateway qa"],
|
|
104
|
+
"path": "skills/gateway-connector-tester",
|
|
105
|
+
"installs": {
|
|
106
|
+
"total": 0,
|
|
107
|
+
"weekly": 0,
|
|
108
|
+
"by_agent": {}
|
|
109
|
+
},
|
|
110
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
111
|
+
"status": "planned"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "pmm-bot-creator",
|
|
115
|
+
"name": "pmm-bot-creator",
|
|
116
|
+
"description": "Create a Pure Market Making (PMM) controller bot",
|
|
117
|
+
"category": "bots",
|
|
118
|
+
"triggers": ["create pmm", "market making bot", "pmm controller"],
|
|
119
|
+
"path": "skills/pmm-bot-creator",
|
|
120
|
+
"installs": {
|
|
121
|
+
"total": 0,
|
|
122
|
+
"weekly": 0,
|
|
123
|
+
"by_agent": {}
|
|
124
|
+
},
|
|
125
|
+
"first_seen": "2026-01-26T00:00:00Z",
|
|
126
|
+
"status": "planned"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"categories": [
|
|
130
|
+
{"id": "infrastructure", "name": "Infrastructure", "icon": "server"},
|
|
131
|
+
{"id": "configuration", "name": "Configuration", "icon": "settings"},
|
|
132
|
+
{"id": "trading", "name": "Trading", "icon": "chart-line"},
|
|
133
|
+
{"id": "data", "name": "Data", "icon": "database"},
|
|
134
|
+
{"id": "qa", "name": "QA & Testing", "icon": "check-circle"},
|
|
135
|
+
{"id": "bots", "name": "Bots", "icon": "bot"}
|
|
136
|
+
]
|
|
137
|
+
}
|