@hummingbot/skills 1.0.6 → 1.0.7

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 +2 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,8 +28,8 @@ After installing, ask your AI agent:
28
28
 
29
29
  | Skill | Description |
30
30
  |-------|-------------|
31
- | [hummingbot-api-setup](./skills/hummingbot-api-setup/) | Deploy Hummingbot infrastructure (Docker, API, Gateway) |
32
- | [keys-manager](./skills/keys-manager/) | Manage exchange API credentials |
31
+ | [hummingbot-api-setup](./skills/hummingbot-api-setup/) | Deploy Hummingbot API infrastructure |
32
+ | [keys-manager](./skills/keys-manager/) | Manage spot and perpetual exchange API keys |
33
33
  | [executor-creator](./skills/executor-creator/) | Create trading executors (position, grid, DCA, TWAP) |
34
34
  | [candles-feed](./skills/candles-feed/) | Fetch market data and technical indicators |
35
35
  | [portfolio](./skills/portfolio/) | View balances and positions across exchanges |
@@ -53,7 +53,6 @@ API docs available at `http://localhost:8000/docs`.
53
53
  hummingbot/skills/
54
54
  ├── skills/ # Skill definitions (SKILL.md + scripts/)
55
55
  ├── app/ # Next.js webapp (skills.hummingbot.org)
56
- ├── skills.json # Skill metadata
57
56
  └── .env.example # API configuration template
58
57
  ```
59
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hummingbot/skills",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "AI agent skills for Hummingbot algorithmic trading infrastructure",
5
5
  "scripts": {
6
6
  "build": "cd app && npm run build",