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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Integration with Slack API enabling workspace communication including channel management, message retrieval, and posting capabilities for team collaboration",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/slack/slack.jpg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
8
|
+
"Communication"
|
|
9
9
|
],
|
|
10
10
|
"properties": {
|
|
11
11
|
"enabled": {
|
|
@@ -132,4 +132,4 @@
|
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
134
|
"additionalProperties": true
|
|
135
|
-
}
|
|
135
|
+
}
|
|
@@ -5,8 +5,7 @@
|
|
|
5
5
|
"description": "Integration with Supabase backend-as-a-service platform enabling database operations and Edge Function invocations",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/supabase/supabase.svg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"Backend"
|
|
8
|
+
"Infrastructure"
|
|
10
9
|
],
|
|
11
10
|
"properties": {
|
|
12
11
|
"enabled": {
|
|
@@ -173,4 +172,4 @@
|
|
|
173
172
|
"supabase_key"
|
|
174
173
|
]
|
|
175
174
|
}
|
|
176
|
-
}
|
|
175
|
+
}
|
|
@@ -5,9 +5,7 @@
|
|
|
5
5
|
"description": "System management and configuration skills for agent operations including API key management",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/system/system.svg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"Management",
|
|
10
|
-
"Configuration"
|
|
8
|
+
"Infrastructure"
|
|
11
9
|
],
|
|
12
10
|
"properties": {
|
|
13
11
|
"enabled": {
|
|
@@ -106,4 +104,4 @@
|
|
|
106
104
|
}
|
|
107
105
|
}
|
|
108
106
|
}
|
|
109
|
-
}
|
|
107
|
+
}
|
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
"description": "Web search and content extraction capabilities using Tavily",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/tavily/tavily.jpg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"Search"
|
|
10
|
-
"Information",
|
|
11
|
-
"Content Extraction"
|
|
8
|
+
"Knowledge Base",
|
|
9
|
+
"Search"
|
|
12
10
|
],
|
|
13
11
|
"x-nft-requirement": 1,
|
|
14
12
|
"properties": {
|
|
@@ -116,4 +114,4 @@
|
|
|
116
114
|
}
|
|
117
115
|
},
|
|
118
116
|
"additionalProperties": true
|
|
119
|
-
}
|
|
117
|
+
}
|
|
@@ -5,11 +5,8 @@
|
|
|
5
5
|
"type": "object",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/portfolio/moralis.png",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"Crypto",
|
|
11
|
-
"Token",
|
|
12
|
-
"DeFi"
|
|
8
|
+
"Analytics",
|
|
9
|
+
"Crypto"
|
|
13
10
|
],
|
|
14
11
|
"properties": {
|
|
15
12
|
"enabled": {
|
|
@@ -138,4 +135,4 @@
|
|
|
138
135
|
}
|
|
139
136
|
},
|
|
140
137
|
"additionalProperties": true
|
|
141
|
-
}
|
|
138
|
+
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Integration with X API enabling social media interactions including retrieving posts, mentions, user information, and posting content with media support",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/twitter/twitter.png",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"
|
|
8
|
+
"Communication"
|
|
9
9
|
],
|
|
10
10
|
"properties": {
|
|
11
11
|
"enabled": {
|
|
@@ -255,4 +255,4 @@
|
|
|
255
255
|
}
|
|
256
256
|
},
|
|
257
257
|
"additionalProperties": true
|
|
258
|
-
}
|
|
258
|
+
}
|
|
@@ -5,10 +5,7 @@
|
|
|
5
5
|
"description": "Convert text to natural-sounding speech with various voices and customization options",
|
|
6
6
|
"x-icon": "https://ai.service.crestal.dev/skills/unrealspeech/unrealspeech.jpg",
|
|
7
7
|
"x-tags": [
|
|
8
|
-
"Audio"
|
|
9
|
-
"Speech",
|
|
10
|
-
"Text-to-Speech",
|
|
11
|
-
"Voice"
|
|
8
|
+
"Audio"
|
|
12
9
|
],
|
|
13
10
|
"properties": {
|
|
14
11
|
"enabled": {
|
|
@@ -97,4 +94,4 @@
|
|
|
97
94
|
}
|
|
98
95
|
},
|
|
99
96
|
"additionalProperties": true
|
|
100
|
-
}
|
|
97
|
+
}
|
|
@@ -1,152 +1,151 @@
|
|
|
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
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "Venice Audio Skills",
|
|
4
|
+
"x-icon": "https://ai.service.crestal.dev/skills/venice_audio/venice_audio.jpg",
|
|
5
|
+
"description": "Configuration for the Venice Audio skill.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"x-tags": [
|
|
8
|
+
"AI",
|
|
9
|
+
"Audio"
|
|
10
|
+
],
|
|
11
|
+
"properties": {
|
|
12
|
+
"enabled": {
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"title": "Enabled",
|
|
15
|
+
"description": "Enable or disable the Venice Audio skill.",
|
|
16
|
+
"default": false
|
|
17
|
+
},
|
|
18
|
+
"voice_model": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"title": "Voice Model",
|
|
21
|
+
"x-link": "[Listen Voice Example](https://huggingface.co/spaces/hexgrad/Kokoro-TTS)",
|
|
22
|
+
"enum": [
|
|
23
|
+
"af_heart",
|
|
24
|
+
"bm_lewis",
|
|
25
|
+
"custom"
|
|
26
|
+
],
|
|
27
|
+
"x-enum-title": [
|
|
28
|
+
"af_heart (default female)",
|
|
29
|
+
"bm_lewis (default male)",
|
|
30
|
+
"Custom"
|
|
31
|
+
],
|
|
32
|
+
"description": "Text to speech tool",
|
|
33
|
+
"default": "af_heart"
|
|
34
|
+
},
|
|
35
|
+
"states": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"title": "Skill States",
|
|
38
|
+
"description": "Enable/disable specific voice models. Only enable one if you want a consistent characteristic for your agent. See docs for voice details and quality grades.",
|
|
39
|
+
"properties": {
|
|
40
|
+
"text_to_speech": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"title": "Text to Speech",
|
|
43
|
+
"enum": [
|
|
44
|
+
"disabled",
|
|
45
|
+
"public",
|
|
46
|
+
"private"
|
|
47
|
+
],
|
|
48
|
+
"x-enum-title": [
|
|
49
|
+
"Disabled",
|
|
50
|
+
"Agent Owner + All Users",
|
|
51
|
+
"Agent Owner Only"
|
|
52
|
+
],
|
|
53
|
+
"description": "Text to speech tool",
|
|
54
|
+
"default": "disabled"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"api_key_provider": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"title": "API Key Provider",
|
|
61
|
+
"description": "Provider of the API key",
|
|
62
|
+
"enum": [
|
|
63
|
+
"agent_owner"
|
|
64
|
+
],
|
|
65
|
+
"x-enum-title": [
|
|
66
|
+
"Owner Provided"
|
|
67
|
+
],
|
|
68
|
+
"default": "agent_owner"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"required": [
|
|
72
|
+
"states",
|
|
73
|
+
"enabled"
|
|
74
|
+
],
|
|
75
|
+
"allOf": [
|
|
76
|
+
{
|
|
77
|
+
"if": {
|
|
78
|
+
"properties": {
|
|
79
|
+
"voice_model": {
|
|
80
|
+
"const": "custom"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"then": {
|
|
85
|
+
"properties": {
|
|
86
|
+
"voice_model_custom": {
|
|
87
|
+
"type": "array",
|
|
88
|
+
"items": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"title": "Voice Model (Custom)",
|
|
92
|
+
"x-link": "[Supported Voice Model](https://docs.venice.ai/api-reference/endpoint/audio/speech#body-voice)",
|
|
93
|
+
"description": "You can add one or more custom voice models.",
|
|
94
|
+
"default": [
|
|
95
|
+
"af_heart",
|
|
96
|
+
"bm_lewis"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": [
|
|
101
|
+
"voice_model_custom"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"if": {
|
|
107
|
+
"allOf": [
|
|
108
|
+
{
|
|
109
|
+
"properties": {
|
|
110
|
+
"enabled": {
|
|
111
|
+
"const": true
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"properties": {
|
|
117
|
+
"api_key_provider": {
|
|
118
|
+
"const": "agent_owner"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"then": {
|
|
125
|
+
"properties": {
|
|
126
|
+
"api_key": {
|
|
127
|
+
"type": "string",
|
|
128
|
+
"title": "Venice API Key",
|
|
129
|
+
"x-link": "[Get your API key](https://venice.ai/)",
|
|
130
|
+
"x-sensitive": true,
|
|
131
|
+
"description": "API Key for authenticating with the Venice AI API."
|
|
132
|
+
},
|
|
133
|
+
"rate_limit_number": {
|
|
134
|
+
"type": "integer",
|
|
135
|
+
"title": "Rate Limit Number",
|
|
136
|
+
"description": "Number of requests allowed per time window."
|
|
137
|
+
},
|
|
138
|
+
"rate_limit_minutes": {
|
|
139
|
+
"type": "integer",
|
|
140
|
+
"title": "Rate Limit Minutes",
|
|
141
|
+
"description": "Time window in minutes for rate limiting."
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"required": [
|
|
145
|
+
"api_key"
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"additionalProperties": true
|
|
151
|
+
}
|