intentkit 0.7.5.dev19__py3-none-any.whl → 0.7.5.dev21__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 (55) hide show
  1. intentkit/__init__.py +1 -1
  2. intentkit/config/config.py +1 -0
  3. intentkit/core/engine.py +12 -13
  4. intentkit/models/agent.py +10 -4
  5. intentkit/models/llm.csv +6 -1
  6. intentkit/models/llm.py +35 -1
  7. intentkit/skills/acolyt/schema.json +4 -3
  8. intentkit/skills/aixbt/schema.json +4 -4
  9. intentkit/skills/allora/schema.json +3 -2
  10. intentkit/skills/basename/schema.json +2 -1
  11. intentkit/skills/carv/schema.json +134 -137
  12. intentkit/skills/casino/schema.json +0 -1
  13. intentkit/skills/cdp/schema.json +2 -1
  14. intentkit/skills/chainlist/schema.json +3 -5
  15. intentkit/skills/common/schema.json +2 -2
  16. intentkit/skills/cookiefun/schema.json +2 -4
  17. intentkit/skills/cryptocompare/schema.json +3 -3
  18. intentkit/skills/cryptopanic/schema.json +105 -103
  19. intentkit/skills/dapplooker/schema.json +3 -5
  20. intentkit/skills/defillama/schema.json +5 -1
  21. intentkit/skills/dexscreener/schema.json +91 -93
  22. intentkit/skills/dune_analytics/schema.json +104 -99
  23. intentkit/skills/elfa/schema.json +3 -2
  24. intentkit/skills/enso/schema.json +3 -2
  25. intentkit/skills/erc20/schema.json +2 -1
  26. intentkit/skills/erc721/schema.json +2 -1
  27. intentkit/skills/firecrawl/schema.json +2 -6
  28. intentkit/skills/github/schema.json +3 -4
  29. intentkit/skills/heurist/schema.json +2 -2
  30. intentkit/skills/http/schema.json +4 -5
  31. intentkit/skills/lifi/schema.json +17 -8
  32. intentkit/skills/moralis/schema.json +7 -2
  33. intentkit/skills/morpho/schema.json +1 -1
  34. intentkit/skills/nation/schema.json +4 -3
  35. intentkit/skills/openai/schema.json +2 -3
  36. intentkit/skills/portfolio/schema.json +3 -5
  37. intentkit/skills/pyth/schema.json +3 -1
  38. intentkit/skills/slack/schema.json +2 -2
  39. intentkit/skills/supabase/schema.json +2 -3
  40. intentkit/skills/superfluid/schema.json +1 -1
  41. intentkit/skills/system/schema.json +2 -4
  42. intentkit/skills/tavily/schema.json +3 -5
  43. intentkit/skills/token/schema.json +3 -6
  44. intentkit/skills/twitter/schema.json +2 -2
  45. intentkit/skills/unrealspeech/schema.json +2 -5
  46. intentkit/skills/venice_audio/schema.json +151 -152
  47. intentkit/skills/venice_image/schema.json +267 -267
  48. intentkit/skills/web_scraper/schema.json +2 -6
  49. intentkit/skills/weth/schema.json +2 -1
  50. intentkit/skills/wow/schema.json +1 -1
  51. intentkit/skills/xmtp/schema.json +69 -71
  52. {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev21.dist-info}/METADATA +1 -1
  53. {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev21.dist-info}/RECORD +55 -55
  54. {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev21.dist-info}/WHEEL +0 -0
  55. {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev21.dist-info}/licenses/LICENSE +0 -0
@@ -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
+ }
@@ -1,93 +1,91 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Dexscreener",
4
- "description": "Integration with DexScreener API, enabling crypto token pair information",
5
- "type": "object",
6
- "x-icon": "https://ai.service.crestal.dev/skills/dexscreener/dexscreener.png",
7
- "x-tags": [
8
- "Crypto",
9
- "Market Data",
10
- "Finance",
11
- "Blockchain"
12
- ],
13
- "properties": {
14
- "enabled": {
15
- "type": "boolean",
16
- "title": "Enabled",
17
- "description": "Enable or disable the Dexscreener skill.",
18
- "default": false
19
- },
20
- "states": {
21
- "type": "object",
22
- "title": "Skill States",
23
- "description": "Enable/disable specific tools. Only enable one if you want a consistent characteristic for your agent",
24
- "properties": {
25
- "search_token": {
26
- "type": "string",
27
- "enum": [
28
- "disabled",
29
- "public",
30
- "private"
31
- ],
32
- "x-enum-title": [
33
- "Disabled",
34
- "Agent Owner + All Users",
35
- "Agent Owner Only"
36
- ],
37
- "description": "Searches on DexScreener for token pairs matching a query (symbol, name, address). Returns up to 25 pairs sorted by 'liquidity' or 'volume' with timeframe options, including price, volume, etc. Use this tool to find token information based on user queries.",
38
- "default": "disabled"
39
- },
40
- "get_pair_info": {
41
- "type": "string",
42
- "enum": [
43
- "disabled",
44
- "public",
45
- "private"
46
- ],
47
- "x-enum-title": [
48
- "Disabled",
49
- "Agent Owner + All Users",
50
- "Agent Owner Only"
51
- ],
52
- "description": "Retrieves detailed information about a specific trading pair using chain ID and pair address. Returns comprehensive data including current price, volume, liquidity, price changes, market cap, FDV, transaction counts, and social links.",
53
- "default": "disabled"
54
- },
55
- "get_token_pairs": {
56
- "type": "string",
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": "Finds all trading pairs for a specific token using chain ID and token address. Returns a list of all pools/pairs where this token is traded, including pair addresses, DEX information, liquidity, volume, and pricing data for each pair.",
68
- "default": "disabled"
69
- },
70
- "get_tokens_info": {
71
- "type": "string",
72
- "enum": [
73
- "disabled",
74
- "public",
75
- "private"
76
- ],
77
- "x-enum-title": [
78
- "Disabled",
79
- "Agent Owner + All Users",
80
- "Agent Owner Only"
81
- ],
82
- "description": "Retrieves detailed trading pair information for multiple tokens (up to 30) using chain ID and a list of token addresses. More efficient than making individual calls when you need info for multiple tokens. Use for portfolio analysis or comparing multiple tokens at once.",
83
- "default": "disabled"
84
- }
85
- }
86
- }
87
- },
88
- "required": [
89
- "enabled",
90
- "states"
91
- ],
92
- "additionalProperties": true
93
- }
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Dexscreener",
4
+ "description": "Integration with DexScreener API, enabling crypto token pair information",
5
+ "type": "object",
6
+ "x-icon": "https://ai.service.crestal.dev/skills/dexscreener/dexscreener.png",
7
+ "x-tags": [
8
+ "Analytics",
9
+ "DeFi"
10
+ ],
11
+ "properties": {
12
+ "enabled": {
13
+ "type": "boolean",
14
+ "title": "Enabled",
15
+ "description": "Enable or disable the Dexscreener skill.",
16
+ "default": false
17
+ },
18
+ "states": {
19
+ "type": "object",
20
+ "title": "Skill States",
21
+ "description": "Enable/disable specific tools. Only enable one if you want a consistent characteristic for your agent",
22
+ "properties": {
23
+ "search_token": {
24
+ "type": "string",
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": "Searches on DexScreener for token pairs matching a query (symbol, name, address). Returns up to 25 pairs sorted by 'liquidity' or 'volume' with timeframe options, including price, volume, etc. Use this tool to find token information based on user queries.",
36
+ "default": "disabled"
37
+ },
38
+ "get_pair_info": {
39
+ "type": "string",
40
+ "enum": [
41
+ "disabled",
42
+ "public",
43
+ "private"
44
+ ],
45
+ "x-enum-title": [
46
+ "Disabled",
47
+ "Agent Owner + All Users",
48
+ "Agent Owner Only"
49
+ ],
50
+ "description": "Retrieves detailed information about a specific trading pair using chain ID and pair address. Returns comprehensive data including current price, volume, liquidity, price changes, market cap, FDV, transaction counts, and social links.",
51
+ "default": "disabled"
52
+ },
53
+ "get_token_pairs": {
54
+ "type": "string",
55
+ "enum": [
56
+ "disabled",
57
+ "public",
58
+ "private"
59
+ ],
60
+ "x-enum-title": [
61
+ "Disabled",
62
+ "Agent Owner + All Users",
63
+ "Agent Owner Only"
64
+ ],
65
+ "description": "Finds all trading pairs for a specific token using chain ID and token address. Returns a list of all pools/pairs where this token is traded, including pair addresses, DEX information, liquidity, volume, and pricing data for each pair.",
66
+ "default": "disabled"
67
+ },
68
+ "get_tokens_info": {
69
+ "type": "string",
70
+ "enum": [
71
+ "disabled",
72
+ "public",
73
+ "private"
74
+ ],
75
+ "x-enum-title": [
76
+ "Disabled",
77
+ "Agent Owner + All Users",
78
+ "Agent Owner Only"
79
+ ],
80
+ "description": "Retrieves detailed trading pair information for multiple tokens (up to 30) using chain ID and a list of token addresses. More efficient than making individual calls when you need info for multiple tokens. Use for portfolio analysis or comparing multiple tokens at once.",
81
+ "default": "disabled"
82
+ }
83
+ }
84
+ }
85
+ },
86
+ "required": [
87
+ "enabled",
88
+ "states"
89
+ ],
90
+ "additionalProperties": true
91
+ }
@@ -1,99 +1,104 @@
1
- {
2
- "title": "Dune Analytics",
3
- "description": "Dune Analytics skills to fetch data from Dune Analytics API.",
4
- "x-icon": "https://ai.service.crestal.dev/skills/dune_analytics/dune.png",
5
- "type": "object",
6
- "properties": {
7
- "enabled": {
8
- "type": "boolean",
9
- "title": "Enabled",
10
- "description": "Whether this skill is enabled",
11
- "default": false
12
- },
13
- "states": {
14
- "title": "Skill States",
15
- "type": "object",
16
- "properties": {
17
- "fetch_nation_metrics": {
18
- "type": "string",
19
- "title": "Fetch Crestal Nation Metrics",
20
- "enum": [
21
- "disabled",
22
- "public",
23
- "private"
24
- ],
25
- "x-enum-title": [
26
- "Disabled",
27
- "Agent Owner + All Users",
28
- "Agent Owner Only"
29
- ],
30
- "description": "Fetches Crestal Nation metrics (e.g., total_users, agents/citizens, market_cap) from Dune Analytics API.",
31
- "default": "disabled"
32
- },
33
- "fetch_kol_buys": {
34
- "type": "string",
35
- "title": "Fetch KOL Memecoin Buys",
36
- "enum": [
37
- "disabled",
38
- "public",
39
- "private"
40
- ],
41
- "x-enum-title": [
42
- "Disabled",
43
- "Agent Owner + All Users",
44
- "Agent Owner Only"
45
- ],
46
- "description": "Fetches a list of KOL memecoin buy transactions on Solana from Dune Analytics API.",
47
- "default": "disabled"
48
- }
49
- }
50
- },
51
- "api_key_provider": {
52
- "type": "string",
53
- "title": "API Key Provider",
54
- "description": "Provider of the API key for Dune service",
55
- "enum": [
56
- "agent_owner"
57
- ],
58
- "x-enum-title": [
59
- "Owner Provided"
60
- ],
61
- "default": "agent_owner"
62
- }
63
- },
64
- "required": [
65
- "states",
66
- "enabled"
67
- ],
68
- "if": {
69
- "properties": {
70
- "api_key_provider": {
71
- "const": "agent_owner"
72
- }
73
- }
74
- },
75
- "then": {
76
- "properties": {
77
- "api_key": {
78
- "type": "string",
79
- "title": "Dune API Key",
80
- "description": "API key for Dune Analytics (X-Dune-API-Key).",
81
- "x-link": "[Get your API key](https://docs.dune.com/api-reference/overview/authentication)",
82
- "x-sensitive": true
83
- }
84
- },
85
- "if": {
86
- "properties": {
87
- "enabled": {
88
- "const": true
89
- }
90
- }
91
- },
92
- "then": {
93
- "required": [
94
- "api_key"
95
- ]
96
- }
97
- },
98
- "additionalProperties": true
99
- }
1
+ {
2
+ "title": "Dune Analytics",
3
+ "description": "Dune Analytics skills to fetch data from Dune Analytics API.",
4
+ "x-icon": "https://ai.service.crestal.dev/skills/dune_analytics/dune.png",
5
+ "type": "object",
6
+ "properties": {
7
+ "enabled": {
8
+ "type": "boolean",
9
+ "title": "Enabled",
10
+ "description": "Whether this skill is enabled",
11
+ "default": false
12
+ },
13
+ "states": {
14
+ "title": "Skill States",
15
+ "type": "object",
16
+ "properties": {
17
+ "fetch_nation_metrics": {
18
+ "type": "string",
19
+ "title": "Fetch Crestal Nation Metrics",
20
+ "enum": [
21
+ "disabled",
22
+ "public",
23
+ "private"
24
+ ],
25
+ "x-enum-title": [
26
+ "Disabled",
27
+ "Agent Owner + All Users",
28
+ "Agent Owner Only"
29
+ ],
30
+ "description": "Fetches Crestal Nation metrics (e.g., total_users, agents/citizens, market_cap) from Dune Analytics API.",
31
+ "default": "disabled"
32
+ },
33
+ "fetch_kol_buys": {
34
+ "type": "string",
35
+ "title": "Fetch KOL Memecoin Buys",
36
+ "enum": [
37
+ "disabled",
38
+ "public",
39
+ "private"
40
+ ],
41
+ "x-enum-title": [
42
+ "Disabled",
43
+ "Agent Owner + All Users",
44
+ "Agent Owner Only"
45
+ ],
46
+ "description": "Fetches a list of KOL memecoin buy transactions on Solana from Dune Analytics API.",
47
+ "default": "disabled"
48
+ }
49
+ }
50
+ },
51
+ "api_key_provider": {
52
+ "type": "string",
53
+ "title": "API Key Provider",
54
+ "description": "Provider of the API key for Dune service",
55
+ "enum": [
56
+ "agent_owner"
57
+ ],
58
+ "x-enum-title": [
59
+ "Owner Provided"
60
+ ],
61
+ "default": "agent_owner"
62
+ }
63
+ },
64
+ "required": [
65
+ "states",
66
+ "enabled"
67
+ ],
68
+ "if": {
69
+ "properties": {
70
+ "api_key_provider": {
71
+ "const": "agent_owner"
72
+ }
73
+ }
74
+ },
75
+ "then": {
76
+ "properties": {
77
+ "api_key": {
78
+ "type": "string",
79
+ "title": "Dune API Key",
80
+ "description": "API key for Dune Analytics (X-Dune-API-Key).",
81
+ "x-link": "[Get your API key](https://docs.dune.com/api-reference/overview/authentication)",
82
+ "x-sensitive": true
83
+ }
84
+ },
85
+ "if": {
86
+ "properties": {
87
+ "enabled": {
88
+ "const": true
89
+ }
90
+ }
91
+ },
92
+ "then": {
93
+ "required": [
94
+ "api_key"
95
+ ]
96
+ }
97
+ },
98
+ "additionalProperties": true,
99
+ "x-tags": [
100
+ "Analytics",
101
+ "Crypto",
102
+ "Knowledge Base"
103
+ ]
104
+ }
@@ -5,7 +5,8 @@
5
5
  "description": "Integration with Elfa AI API providing data analysis and processing capabilities with secure authentication for advanced data operations",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/elfa/elfa.jpg",
7
7
  "x-tags": [
8
- "Data"
8
+ "AI",
9
+ "Analytics"
9
10
  ],
10
11
  "x-nft-requirement": 1,
11
12
  "properties": {
@@ -134,4 +135,4 @@
134
135
  }
135
136
  },
136
137
  "additionalProperties": true
137
- }
138
+ }