intentkit 0.7.5.dev20__py3-none-any.whl → 0.7.5.dev22__py3-none-any.whl
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.
Potentially problematic release.
This version of intentkit might be problematic. Click here for more details.
- intentkit/__init__.py +1 -1
- intentkit/config/config.py +1 -0
- intentkit/core/engine.py +10 -11
- intentkit/models/agent.py +84 -56
- intentkit/models/agent_schema.json +1 -146
- intentkit/models/llm.csv +5 -0
- intentkit/models/llm.py +36 -3
- intentkit/skills/acolyt/schema.json +4 -3
- intentkit/skills/aixbt/schema.json +4 -4
- intentkit/skills/allora/schema.json +3 -2
- intentkit/skills/basename/schema.json +2 -1
- intentkit/skills/carv/schema.json +134 -137
- intentkit/skills/casino/schema.json +0 -1
- intentkit/skills/cdp/schema.json +2 -1
- intentkit/skills/chainlist/schema.json +3 -5
- intentkit/skills/common/schema.json +2 -2
- intentkit/skills/cookiefun/schema.json +2 -4
- intentkit/skills/cryptocompare/schema.json +3 -3
- intentkit/skills/cryptopanic/schema.json +105 -103
- intentkit/skills/dapplooker/schema.json +3 -5
- intentkit/skills/defillama/schema.json +5 -1
- intentkit/skills/dexscreener/schema.json +91 -93
- intentkit/skills/dune_analytics/schema.json +104 -99
- intentkit/skills/elfa/schema.json +3 -2
- intentkit/skills/enso/schema.json +3 -2
- intentkit/skills/erc20/schema.json +2 -1
- intentkit/skills/erc721/schema.json +2 -1
- intentkit/skills/firecrawl/schema.json +2 -6
- intentkit/skills/github/schema.json +3 -4
- intentkit/skills/heurist/schema.json +2 -2
- intentkit/skills/http/schema.json +4 -5
- intentkit/skills/lifi/schema.json +17 -8
- intentkit/skills/moralis/schema.json +7 -2
- intentkit/skills/morpho/schema.json +1 -1
- intentkit/skills/nation/schema.json +4 -3
- intentkit/skills/openai/schema.json +2 -3
- intentkit/skills/portfolio/schema.json +3 -5
- intentkit/skills/pyth/schema.json +3 -1
- intentkit/skills/slack/schema.json +2 -2
- intentkit/skills/supabase/schema.json +2 -3
- intentkit/skills/superfluid/schema.json +1 -1
- intentkit/skills/system/schema.json +2 -4
- intentkit/skills/tavily/schema.json +3 -5
- intentkit/skills/token/schema.json +3 -6
- intentkit/skills/twitter/schema.json +2 -2
- intentkit/skills/unrealspeech/schema.json +2 -5
- intentkit/skills/venice_audio/schema.json +151 -152
- intentkit/skills/venice_image/schema.json +267 -267
- intentkit/skills/web_scraper/schema.json +2 -6
- intentkit/skills/weth/schema.json +2 -1
- intentkit/skills/wow/schema.json +1 -1
- intentkit/skills/xmtp/schema.json +69 -71
- {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/METADATA +1 -1
- {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/RECORD +56 -56
- {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/WHEEL +0 -0
- {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,137 +1,134 @@
|
|
|
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
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
"
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
},
|
|
136
|
-
"additionalProperties": true
|
|
137
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "CARV",
|
|
4
|
+
"description": "Configuration for the CARV skill.",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"x-icon": "https://ai.service.crestal.dev/skills/carv/carv.webp",
|
|
7
|
+
"x-tags": [
|
|
8
|
+
"Analytics",
|
|
9
|
+
"Crypto"
|
|
10
|
+
],
|
|
11
|
+
"properties": {
|
|
12
|
+
"enabled": {
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"description": "Enable or disable the CARV skill.",
|
|
15
|
+
"default": false
|
|
16
|
+
},
|
|
17
|
+
"states": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"title": "Skill States",
|
|
20
|
+
"description": "Enable/disable specific tools for CARV",
|
|
21
|
+
"properties": {
|
|
22
|
+
"onchain_query": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"title": "On-Chain Query",
|
|
25
|
+
"enum": [
|
|
26
|
+
"disabled",
|
|
27
|
+
"public",
|
|
28
|
+
"private"
|
|
29
|
+
],
|
|
30
|
+
"x-enum-title": [
|
|
31
|
+
"Disabled",
|
|
32
|
+
"Agent Owner + All Users",
|
|
33
|
+
"Agent Owner Only"
|
|
34
|
+
],
|
|
35
|
+
"description": "allows you to use the nature language to query the on-chain data. Behind the scean, CARV will use LLM model to interpreate the nature language input and convert into the sql query based on the above schemas",
|
|
36
|
+
"default": "public"
|
|
37
|
+
},
|
|
38
|
+
"token_info_and_price": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"title": "Token Information and Price",
|
|
41
|
+
"enum": [
|
|
42
|
+
"disabled",
|
|
43
|
+
"public",
|
|
44
|
+
"private"
|
|
45
|
+
],
|
|
46
|
+
"x-enum-title": [
|
|
47
|
+
"Disabled",
|
|
48
|
+
"Agent Owner + All Users",
|
|
49
|
+
"Agent Owner Only"
|
|
50
|
+
],
|
|
51
|
+
"description": "Fetches detailed information and current USD price of a cryptocurrency token from CARV API using its ticker symbol (e.g., 'eth', 'btc'), returning metadata like name, symbol, platform, categories, and contract addresses, useful for understanding its identity, ecosystem, market value, and for obtaining comprehensive token data with live pricing.",
|
|
52
|
+
"default": "public"
|
|
53
|
+
},
|
|
54
|
+
"fetch_news": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"title": "Fetch News",
|
|
57
|
+
"enum": [
|
|
58
|
+
"disabled",
|
|
59
|
+
"public",
|
|
60
|
+
"private"
|
|
61
|
+
],
|
|
62
|
+
"x-enum-title": [
|
|
63
|
+
"Disabled",
|
|
64
|
+
"Agent Owner + All Users",
|
|
65
|
+
"Agent Owner Only"
|
|
66
|
+
],
|
|
67
|
+
"description": "retrieves a list of recent news items, each including a title, URL, and a short description",
|
|
68
|
+
"default": "disabled"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"api_key_provider": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"title": "API Key Provider",
|
|
75
|
+
"description": "Provider of the API key",
|
|
76
|
+
"enum": [
|
|
77
|
+
"agent_owner",
|
|
78
|
+
"platform"
|
|
79
|
+
],
|
|
80
|
+
"x-enum-title": [
|
|
81
|
+
"Owner Provided",
|
|
82
|
+
"Nation Hosted"
|
|
83
|
+
],
|
|
84
|
+
"default": "platform"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"required": [
|
|
88
|
+
"enabled",
|
|
89
|
+
"states"
|
|
90
|
+
],
|
|
91
|
+
"if": {
|
|
92
|
+
"allOf": [
|
|
93
|
+
{
|
|
94
|
+
"properties": {
|
|
95
|
+
"enabled": {
|
|
96
|
+
"const": true
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"properties": {
|
|
102
|
+
"api_key_provider": {
|
|
103
|
+
"const": "agent_owner"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
"then": {
|
|
110
|
+
"properties": {
|
|
111
|
+
"api_key": {
|
|
112
|
+
"type": "string",
|
|
113
|
+
"title": "CARV API Key",
|
|
114
|
+
"x-link": "[Get your API key](https://docs.carv.io/d.a.t.a.-ai-framework/api-documentation#authentication)",
|
|
115
|
+
"x-sensitive": true,
|
|
116
|
+
"description": "API Key for authenticating with the CARV API."
|
|
117
|
+
},
|
|
118
|
+
"rate_limit_number": {
|
|
119
|
+
"type": "integer",
|
|
120
|
+
"title": "Rate Limit Number",
|
|
121
|
+
"description": "Number of requests allowed per time window."
|
|
122
|
+
},
|
|
123
|
+
"rate_limit_minutes": {
|
|
124
|
+
"type": "integer",
|
|
125
|
+
"title": "Rate Limit Minutes",
|
|
126
|
+
"description": "Time window in minutes for rate limiting."
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"required": [
|
|
130
|
+
"api_key"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"additionalProperties": true
|
|
134
|
+
}
|
intentkit/skills/cdp/schema.json
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
"description": "Integration with Coinbase Wallet (CDP) providing blockchain wallet functionality including balance checking and native transfers",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/cdp/cdp.png",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
8
|
+
"Crypto",
|
|
9
|
+
"DeFi"
|
|
9
10
|
],
|
|
10
11
|
"properties": {
|
|
11
12
|
"enabled": {
|
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
"description": "Access blockchain RPC endpoints and network information from chainlist.org. Enable this skill to look up EVM-compatible networks by name, symbol, or chain ID and get their RPC endpoints, native currencies, and explorer links.",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/chainlist/chainlist.png",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"EVM",
|
|
11
|
-
"Network"
|
|
8
|
+
"Crypto",
|
|
9
|
+
"Infrastructure"
|
|
12
10
|
],
|
|
13
11
|
"properties": {
|
|
14
12
|
"enabled": {
|
|
@@ -44,4 +42,4 @@
|
|
|
44
42
|
"states"
|
|
45
43
|
],
|
|
46
44
|
"additionalProperties": true
|
|
47
|
-
}
|
|
45
|
+
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Utility skills",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/common/common.jpg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
8
|
+
"Infrastructure"
|
|
9
9
|
],
|
|
10
10
|
"properties": {
|
|
11
11
|
"enabled": {
|
|
@@ -54,4 +54,4 @@
|
|
|
54
54
|
"enabled"
|
|
55
55
|
],
|
|
56
56
|
"additionalProperties": true
|
|
57
|
-
}
|
|
57
|
+
}
|
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
"description": "Access Twitter/X analytics and insights using CookieFun API. Get data about accounts, tweets, followers, and trends across different industry sectors.",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/cookiefun/cookiefun.png",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"Twitter",
|
|
9
|
-
"Social Media",
|
|
10
8
|
"Analytics",
|
|
11
|
-
"
|
|
9
|
+
"Communication"
|
|
12
10
|
],
|
|
13
11
|
"x-nft-requirement": 10,
|
|
14
12
|
"properties": {
|
|
@@ -152,4 +150,4 @@
|
|
|
152
150
|
}
|
|
153
151
|
},
|
|
154
152
|
"additionalProperties": true
|
|
155
|
-
}
|
|
153
|
+
}
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"description": "Integration with CryptoCompare API providing cryptocurrency market data, price information, and crypto news with rate limiting capabilities",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/cryptocompare/cryptocompare.png",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"
|
|
8
|
+
"Analytics",
|
|
9
|
+
"Crypto"
|
|
10
10
|
],
|
|
11
11
|
"properties": {
|
|
12
12
|
"enabled": {
|
|
@@ -165,4 +165,4 @@
|
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
167
|
"additionalProperties": true
|
|
168
|
-
}
|
|
168
|
+
}
|
|
@@ -1,103 +1,105 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"type": "object",
|
|
4
|
-
"title": "CryptoPanic",
|
|
5
|
-
"description": "CryptoPanic is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts.",
|
|
6
|
-
"x-icon": "https://ai.service.crestal.dev/skills/cryptopanic/cryptopanic.png",
|
|
7
|
-
"x-tags": [
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"title": "CryptoPanic",
|
|
5
|
+
"description": "CryptoPanic is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts.",
|
|
6
|
+
"x-icon": "https://ai.service.crestal.dev/skills/cryptopanic/cryptopanic.png",
|
|
7
|
+
"x-tags": [
|
|
8
|
+
"Analytics",
|
|
9
|
+
"Crypto",
|
|
10
|
+
"Knowledge Base"
|
|
11
|
+
],
|
|
12
|
+
"properties": {
|
|
13
|
+
"enabled": {
|
|
14
|
+
"type": "boolean",
|
|
15
|
+
"title": "Enabled",
|
|
16
|
+
"description": "Whether this skill is enabled",
|
|
17
|
+
"default": false
|
|
18
|
+
},
|
|
19
|
+
"states": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"properties": {
|
|
22
|
+
"fetch_crypto_sentiment": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"title": "Fetch Crypto Sentiment",
|
|
25
|
+
"enum": [
|
|
26
|
+
"disabled",
|
|
27
|
+
"public",
|
|
28
|
+
"private"
|
|
29
|
+
],
|
|
30
|
+
"x-enum-title": [
|
|
31
|
+
"Disabled",
|
|
32
|
+
"Agent Owner + All Users",
|
|
33
|
+
"Agent Owner Only"
|
|
34
|
+
],
|
|
35
|
+
"default": "disabled",
|
|
36
|
+
"description": "Fetches recent CryptoPanic posts and defines market sentiment via LLM analysis."
|
|
37
|
+
},
|
|
38
|
+
"fetch_crypto_news": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"title": "Fetch Crypto News",
|
|
41
|
+
"enum": [
|
|
42
|
+
"disabled",
|
|
43
|
+
"public",
|
|
44
|
+
"private"
|
|
45
|
+
],
|
|
46
|
+
"x-enum-title": [
|
|
47
|
+
"Disabled",
|
|
48
|
+
"Agent Owner + All Users",
|
|
49
|
+
"Agent Owner Only"
|
|
50
|
+
],
|
|
51
|
+
"default": "disabled",
|
|
52
|
+
"description": "Fetches latest crypto market news from CryptoPanic across all filters."
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"description": "States for each CryptoPanic skill (disabled, public, or private)"
|
|
56
|
+
},
|
|
57
|
+
"api_key_provider": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"title": "API Key Provider",
|
|
60
|
+
"description": "Provider of the API key for AIXBT API service",
|
|
61
|
+
"enum": [
|
|
62
|
+
"agent_owner"
|
|
63
|
+
],
|
|
64
|
+
"x-enum-title": [
|
|
65
|
+
"Owner Provided"
|
|
66
|
+
],
|
|
67
|
+
"default": "agent_owner"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"required": [
|
|
71
|
+
"states",
|
|
72
|
+
"enabled"
|
|
73
|
+
],
|
|
74
|
+
"if": {
|
|
75
|
+
"properties": {
|
|
76
|
+
"api_key_provider": {
|
|
77
|
+
"const": "agent_owner"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"then": {
|
|
82
|
+
"properties": {
|
|
83
|
+
"api_key": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"title": "CryptoPanic API Key",
|
|
86
|
+
"x-link": "[Get your API key](https://cryptopanic.com/developers/api/keys)",
|
|
87
|
+
"x-sensitive": true,
|
|
88
|
+
"description": "API key for accessing CryptoPanic API"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"if": {
|
|
92
|
+
"properties": {
|
|
93
|
+
"enabled": {
|
|
94
|
+
"const": true
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"then": {
|
|
99
|
+
"required": [
|
|
100
|
+
"api_key"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"additionalProperties": true
|
|
105
|
+
}
|
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
"description": "Retrieve comprehensive market data and analytics for AI agent tokens using DappLooker. This API specializes in AI-focused crypto projects and may not provide data for general cryptocurrencies like BTC or ETH.",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/dapplooker/dapplooker.jpg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"Token Metrics",
|
|
11
|
-
"AI Agents"
|
|
8
|
+
"Analytics",
|
|
9
|
+
"Crypto"
|
|
12
10
|
],
|
|
13
11
|
"properties": {
|
|
14
12
|
"enabled": {
|
|
@@ -88,4 +86,4 @@
|
|
|
88
86
|
}
|
|
89
87
|
},
|
|
90
88
|
"additionalProperties": true
|
|
91
|
-
}
|
|
89
|
+
}
|