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.

Files changed (56) hide show
  1. intentkit/__init__.py +1 -1
  2. intentkit/config/config.py +1 -0
  3. intentkit/core/engine.py +10 -11
  4. intentkit/models/agent.py +84 -56
  5. intentkit/models/agent_schema.json +1 -146
  6. intentkit/models/llm.csv +5 -0
  7. intentkit/models/llm.py +36 -3
  8. intentkit/skills/acolyt/schema.json +4 -3
  9. intentkit/skills/aixbt/schema.json +4 -4
  10. intentkit/skills/allora/schema.json +3 -2
  11. intentkit/skills/basename/schema.json +2 -1
  12. intentkit/skills/carv/schema.json +134 -137
  13. intentkit/skills/casino/schema.json +0 -1
  14. intentkit/skills/cdp/schema.json +2 -1
  15. intentkit/skills/chainlist/schema.json +3 -5
  16. intentkit/skills/common/schema.json +2 -2
  17. intentkit/skills/cookiefun/schema.json +2 -4
  18. intentkit/skills/cryptocompare/schema.json +3 -3
  19. intentkit/skills/cryptopanic/schema.json +105 -103
  20. intentkit/skills/dapplooker/schema.json +3 -5
  21. intentkit/skills/defillama/schema.json +5 -1
  22. intentkit/skills/dexscreener/schema.json +91 -93
  23. intentkit/skills/dune_analytics/schema.json +104 -99
  24. intentkit/skills/elfa/schema.json +3 -2
  25. intentkit/skills/enso/schema.json +3 -2
  26. intentkit/skills/erc20/schema.json +2 -1
  27. intentkit/skills/erc721/schema.json +2 -1
  28. intentkit/skills/firecrawl/schema.json +2 -6
  29. intentkit/skills/github/schema.json +3 -4
  30. intentkit/skills/heurist/schema.json +2 -2
  31. intentkit/skills/http/schema.json +4 -5
  32. intentkit/skills/lifi/schema.json +17 -8
  33. intentkit/skills/moralis/schema.json +7 -2
  34. intentkit/skills/morpho/schema.json +1 -1
  35. intentkit/skills/nation/schema.json +4 -3
  36. intentkit/skills/openai/schema.json +2 -3
  37. intentkit/skills/portfolio/schema.json +3 -5
  38. intentkit/skills/pyth/schema.json +3 -1
  39. intentkit/skills/slack/schema.json +2 -2
  40. intentkit/skills/supabase/schema.json +2 -3
  41. intentkit/skills/superfluid/schema.json +1 -1
  42. intentkit/skills/system/schema.json +2 -4
  43. intentkit/skills/tavily/schema.json +3 -5
  44. intentkit/skills/token/schema.json +3 -6
  45. intentkit/skills/twitter/schema.json +2 -2
  46. intentkit/skills/unrealspeech/schema.json +2 -5
  47. intentkit/skills/venice_audio/schema.json +151 -152
  48. intentkit/skills/venice_image/schema.json +267 -267
  49. intentkit/skills/web_scraper/schema.json +2 -6
  50. intentkit/skills/weth/schema.json +2 -1
  51. intentkit/skills/wow/schema.json +1 -1
  52. intentkit/skills/xmtp/schema.json +69 -71
  53. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/METADATA +1 -1
  54. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/RECORD +56 -56
  55. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/WHEEL +0 -0
  56. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/licenses/LICENSE +0 -0
@@ -1,137 +1,134 @@
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
- "AI",
9
- "Data",
10
- "Information",
11
- "Analytics",
12
- "Market Data"
13
- ],
14
- "properties": {
15
- "enabled": {
16
- "type": "boolean",
17
- "description": "Enable or disable the CARV skill.",
18
- "default": false
19
- },
20
- "states": {
21
- "type": "object",
22
- "title": "Skill States",
23
- "description": "Enable/disable specific tools for CARV",
24
- "properties": {
25
- "onchain_query": {
26
- "type": "string",
27
- "title": "On-Chain Query",
28
- "enum": [
29
- "disabled",
30
- "public",
31
- "private"
32
- ],
33
- "x-enum-title": [
34
- "Disabled",
35
- "Agent Owner + All Users",
36
- "Agent Owner Only"
37
- ],
38
- "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",
39
- "default": "public"
40
- },
41
- "token_info_and_price": {
42
- "type": "string",
43
- "title": "Token Information and Price",
44
- "enum": [
45
- "disabled",
46
- "public",
47
- "private"
48
- ],
49
- "x-enum-title": [
50
- "Disabled",
51
- "Agent Owner + All Users",
52
- "Agent Owner Only"
53
- ],
54
- "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.",
55
- "default": "public"
56
- },
57
- "fetch_news": {
58
- "type": "string",
59
- "title": "Fetch News",
60
- "enum": [
61
- "disabled",
62
- "public",
63
- "private"
64
- ],
65
- "x-enum-title": [
66
- "Disabled",
67
- "Agent Owner + All Users",
68
- "Agent Owner Only"
69
- ],
70
- "description": "retrieves a list of recent news items, each including a title, URL, and a short description",
71
- "default": "disabled"
72
- }
73
- }
74
- },
75
- "api_key_provider": {
76
- "type": "string",
77
- "title": "API Key Provider",
78
- "description": "Provider of the API key",
79
- "enum": [
80
- "agent_owner",
81
- "platform"
82
- ],
83
- "x-enum-title": [
84
- "Owner Provided",
85
- "Nation Hosted"
86
- ],
87
- "default": "platform"
88
- }
89
- },
90
- "required": [
91
- "enabled",
92
- "states"
93
- ],
94
- "if": {
95
- "allOf": [
96
- {
97
- "properties": {
98
- "enabled": {
99
- "const": true
100
- }
101
- }
102
- },
103
- {
104
- "properties": {
105
- "api_key_provider": {
106
- "const": "agent_owner"
107
- }
108
- }
109
- }
110
- ]
111
- },
112
- "then": {
113
- "properties": {
114
- "api_key": {
115
- "type": "string",
116
- "title": "CARV API Key",
117
- "x-link": "[Get your API key](https://docs.carv.io/d.a.t.a.-ai-framework/api-documentation#authentication)",
118
- "x-sensitive": true,
119
- "description": "API Key for authenticating with the CARV API."
120
- },
121
- "rate_limit_number": {
122
- "type": "integer",
123
- "title": "Rate Limit Number",
124
- "description": "Number of requests allowed per time window."
125
- },
126
- "rate_limit_minutes": {
127
- "type": "integer",
128
- "title": "Rate Limit Minutes",
129
- "description": "Time window in minutes for rate limiting."
130
- }
131
- },
132
- "required": [
133
- "api_key"
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
+ }
@@ -5,7 +5,6 @@
5
5
  "description": "Casino gaming skills including card decks and quantum dice rolling for interactive games with users",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/casino/casino.png",
7
7
  "x-tags": [
8
- "Gaming",
9
8
  "Entertainment"
10
9
  ],
11
10
  "properties": {
@@ -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
- "Blockchain"
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
- "Blockchain",
9
- "RPC",
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
- "Utility"
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
- "X"
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
- "Blockchain",
9
- "Finance"
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
- "Data"
9
- ],
10
- "properties": {
11
- "enabled": {
12
- "type": "boolean",
13
- "title": "Enabled",
14
- "description": "Whether this skill is enabled",
15
- "default": false
16
- },
17
- "states": {
18
- "type": "object",
19
- "properties": {
20
- "fetch_crypto_sentiment": {
21
- "type": "string",
22
- "title": "Fetch Crypto Sentiment",
23
- "enum": [
24
- "disabled",
25
- "public",
26
- "private"
27
- ],
28
- "x-enum-title": [
29
- "Disabled",
30
- "Agent Owner + All Users",
31
- "Agent Owner Only"
32
- ],
33
- "default": "disabled",
34
- "description": "Fetches recent CryptoPanic posts and defines market sentiment via LLM analysis."
35
- },
36
- "fetch_crypto_news": {
37
- "type": "string",
38
- "title": "Fetch Crypto News",
39
- "enum": [
40
- "disabled",
41
- "public",
42
- "private"
43
- ],
44
- "x-enum-title": [
45
- "Disabled",
46
- "Agent Owner + All Users",
47
- "Agent Owner Only"
48
- ],
49
- "default": "disabled",
50
- "description": "Fetches latest crypto market news from CryptoPanic across all filters."
51
- }
52
- },
53
- "description": "States for each CryptoPanic skill (disabled, public, or private)"
54
- },
55
- "api_key_provider": {
56
- "type": "string",
57
- "title": "API Key Provider",
58
- "description": "Provider of the API key for AIXBT API service",
59
- "enum": [
60
- "agent_owner"
61
- ],
62
- "x-enum-title": [
63
- "Owner Provided"
64
- ],
65
- "default": "agent_owner"
66
- }
67
- },
68
- "required": [
69
- "states",
70
- "enabled"
71
- ],
72
- "if": {
73
- "properties": {
74
- "api_key_provider": {
75
- "const": "agent_owner"
76
- }
77
- }
78
- },
79
- "then": {
80
- "properties": {
81
- "api_key": {
82
- "type": "string",
83
- "title": "CryptoPanic API Key",
84
- "x-link": "[Get your API key](https://cryptopanic.com/developers/api/keys)",
85
- "x-sensitive": true,
86
- "description": "API key for accessing CryptoPanic API"
87
- }
88
- },
89
- "if": {
90
- "properties": {
91
- "enabled": {
92
- "const": true
93
- }
94
- }
95
- },
96
- "then": {
97
- "required": [
98
- "api_key"
99
- ]
100
- }
101
- },
102
- "additionalProperties": true
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
- "Crypto",
9
- "Market Data",
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
+ }
@@ -379,5 +379,9 @@
379
379
  "required": [
380
380
  "states",
381
381
  "enabled"
382
+ ],
383
+ "x-tags": [
384
+ "Analytics",
385
+ "DeFi"
382
386
  ]
383
- }
387
+ }