intentkit 0.7.5.dev20__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 (54) 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/llm.csv +5 -0
  5. intentkit/models/llm.py +32 -0
  6. intentkit/skills/acolyt/schema.json +4 -3
  7. intentkit/skills/aixbt/schema.json +4 -4
  8. intentkit/skills/allora/schema.json +3 -2
  9. intentkit/skills/basename/schema.json +2 -1
  10. intentkit/skills/carv/schema.json +134 -137
  11. intentkit/skills/casino/schema.json +0 -1
  12. intentkit/skills/cdp/schema.json +2 -1
  13. intentkit/skills/chainlist/schema.json +3 -5
  14. intentkit/skills/common/schema.json +2 -2
  15. intentkit/skills/cookiefun/schema.json +2 -4
  16. intentkit/skills/cryptocompare/schema.json +3 -3
  17. intentkit/skills/cryptopanic/schema.json +105 -103
  18. intentkit/skills/dapplooker/schema.json +3 -5
  19. intentkit/skills/defillama/schema.json +5 -1
  20. intentkit/skills/dexscreener/schema.json +91 -93
  21. intentkit/skills/dune_analytics/schema.json +104 -99
  22. intentkit/skills/elfa/schema.json +3 -2
  23. intentkit/skills/enso/schema.json +3 -2
  24. intentkit/skills/erc20/schema.json +2 -1
  25. intentkit/skills/erc721/schema.json +2 -1
  26. intentkit/skills/firecrawl/schema.json +2 -6
  27. intentkit/skills/github/schema.json +3 -4
  28. intentkit/skills/heurist/schema.json +2 -2
  29. intentkit/skills/http/schema.json +4 -5
  30. intentkit/skills/lifi/schema.json +17 -8
  31. intentkit/skills/moralis/schema.json +7 -2
  32. intentkit/skills/morpho/schema.json +1 -1
  33. intentkit/skills/nation/schema.json +4 -3
  34. intentkit/skills/openai/schema.json +2 -3
  35. intentkit/skills/portfolio/schema.json +3 -5
  36. intentkit/skills/pyth/schema.json +3 -1
  37. intentkit/skills/slack/schema.json +2 -2
  38. intentkit/skills/supabase/schema.json +2 -3
  39. intentkit/skills/superfluid/schema.json +1 -1
  40. intentkit/skills/system/schema.json +2 -4
  41. intentkit/skills/tavily/schema.json +3 -5
  42. intentkit/skills/token/schema.json +3 -6
  43. intentkit/skills/twitter/schema.json +2 -2
  44. intentkit/skills/unrealspeech/schema.json +2 -5
  45. intentkit/skills/venice_audio/schema.json +151 -152
  46. intentkit/skills/venice_image/schema.json +267 -267
  47. intentkit/skills/web_scraper/schema.json +2 -6
  48. intentkit/skills/weth/schema.json +2 -1
  49. intentkit/skills/wow/schema.json +1 -1
  50. intentkit/skills/xmtp/schema.json +69 -71
  51. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/METADATA +1 -1
  52. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/RECORD +54 -54
  53. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/WHEEL +0 -0
  54. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/licenses/LICENSE +0 -0
@@ -1,75 +1,73 @@
1
1
  {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "title": "XMTP",
5
- "description": "Use this skill only if you want make an XMTP Agent. XMTP protocol skills for creating blockchain transaction requests that can be sent to users for signing",
6
- "x-icon": "https://ai.service.crestal.dev/skills/xmtp/xmtp.png",
7
- "x-tags": [
8
- "XMTP",
9
- "Blockchain",
10
- "Transactions",
11
- "Web3",
12
- "Base"
13
- ],
14
- "properties": {
15
- "enabled": {
16
- "type": "boolean",
17
- "title": "Enabled",
18
- "description": "Whether this skill is enabled",
19
- "default": false
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "title": "XMTP",
5
+ "description": "Use this skill only if you want make an XMTP Agent. XMTP protocol skills for creating blockchain transaction requests that can be sent to users for signing",
6
+ "x-icon": "https://ai.service.crestal.dev/skills/xmtp/xmtp.png",
7
+ "x-tags": [
8
+ "Communication",
9
+ "Crypto",
10
+ "DeFi"
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
+ "xmtp_transfer": {
23
+ "type": "string",
24
+ "title": "XMTP Transfer",
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": "Create XMTP transaction requests for transferring ETH or ERC20 tokens on Base mainnet. Supports both native ETH transfers and ERC20 token transfers. Generates wallet_sendCalls transaction data that users can sign.",
36
+ "default": "disabled"
20
37
  },
21
- "states": {
22
- "type": "object",
23
- "properties": {
24
- "xmtp_transfer": {
25
- "type": "string",
26
- "title": "XMTP Transfer",
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": "Create XMTP transaction requests for transferring ETH or ERC20 tokens on Base mainnet. Supports both native ETH transfers and ERC20 token transfers. Generates wallet_sendCalls transaction data that users can sign.",
38
- "default": "disabled"
39
- },
40
- "xmtp_swap": {
41
- "type": "string",
42
- "title": "XMTP Swap",
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": "Create XMTP transaction requests for swapping tokens on Base using CDP swap quote. Returns a wallet_sendCalls payload that can include an optional approval call and the swap call. Only supports base-mainnet and base-sepolia.",
54
- "default": "disabled"
55
- },
56
- "xmtp_get_swap_price": {
57
- "type": "string",
58
- "title": "XMTP Get Swap Price",
59
- "enum": [
60
- "disabled",
61
- "public",
62
- "private"
63
- ],
64
- "x-enum-title": [
65
- "Disabled",
66
- "Agent Owner + All Users",
67
- "Agent Owner Only"
68
- ],
69
- "description": "Get an indicative swap price/quote for token pair and amount on Base networks using CDP. Provides estimated output amounts for token swaps without creating transactions.",
70
- "default": "disabled"
71
- }
72
- }
38
+ "xmtp_swap": {
39
+ "type": "string",
40
+ "title": "XMTP Swap",
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": "Create XMTP transaction requests for swapping tokens on Base using CDP swap quote. Returns a wallet_sendCalls payload that can include an optional approval call and the swap call. Only supports base-mainnet and base-sepolia.",
52
+ "default": "disabled"
53
+ },
54
+ "xmtp_get_swap_price": {
55
+ "type": "string",
56
+ "title": "XMTP Get Swap Price",
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": "Get an indicative swap price/quote for token pair and amount on Base networks using CDP. Provides estimated output amounts for token swaps without creating transactions.",
68
+ "default": "disabled"
73
69
  }
70
+ }
74
71
  }
75
- }
72
+ }
73
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: intentkit
3
- Version: 0.7.5.dev20
3
+ Version: 0.7.5.dev21
4
4
  Summary: Intent-based AI Agent Platform - Core Package
5
5
  Project-URL: Homepage, https://github.com/crestalnetwork/intentkit
6
6
  Project-URL: Repository, https://github.com/crestalnetwork/intentkit
@@ -1,4 +1,4 @@
1
- intentkit/__init__.py,sha256=Q-Z_Hb6XRtJm9JXE5zTRO-bO5OZ2gxJR-bJaD5S7ag0,384
1
+ intentkit/__init__.py,sha256=qmTXwOHpPeHT0PEHab_5W7Z6MJ0UCxkoPcmTMmBJOHo,384
2
2
  intentkit/abstracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  intentkit/abstracts/agent.py,sha256=108gb5W8Q1Sy4G55F2_ZFv2-_CnY76qrBtpIr0Oxxqk,1489
4
4
  intentkit/abstracts/api.py,sha256=ZUc24vaQvQVbbjznx7bV0lbbQxdQPfEV8ZxM2R6wZWo,166
@@ -11,14 +11,14 @@ intentkit/clients/cdp.py,sha256=KzRaT1z9iiQicYRLmC8QSz6KMqoPQY9W5UPUSC2Gz7w,6527
11
11
  intentkit/clients/twitter.py,sha256=Lfa7srHOFnY96SXcElW0jfg7XKS_WliWnXjPZEe6SQc,18976
12
12
  intentkit/clients/web3.py,sha256=A-w4vBPXHpDh8svsEFj_LkmvRgoDTZw4E-84S-UC9ws,1023
13
13
  intentkit/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- intentkit/config/config.py,sha256=qtAU5XdPJSCrDPPIN-232RlSYEGgHvYbNALvabvd7zQ,8806
14
+ intentkit/config/config.py,sha256=kw9F-uLsJd-knCKmYNb-hqR7x7HUXUkNg5FZCgOPH54,8868
15
15
  intentkit/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  intentkit/core/agent.py,sha256=d7P116dG4rmBu0zUF_WuHhcUgUOnaOhhYVzgKymOKZI,32047
17
17
  intentkit/core/api.py,sha256=WfoaHNquujYJIpNPuTR1dSaaxog0S3X2W4lG9Ehmkm4,3284
18
18
  intentkit/core/chat.py,sha256=YN20CnDazWLjiOZFOHgV6uHmA2DKkvPCsD5Q5sfNcZg,1685
19
19
  intentkit/core/client.py,sha256=J5K7f08-ucszBKAbn9K3QNOFKIC__7amTbKYii1jFkI,3056
20
20
  intentkit/core/credit.py,sha256=b4f4T6G6eeBTMe0L_r8awWtXgUnqiog4IUaymDPYym0,75587
21
- intentkit/core/engine.py,sha256=qq6-Yx0F5InCG4PYMCeCEL0VORaVK75kVeNVVEeJVK0,37210
21
+ intentkit/core/engine.py,sha256=-atLOlPKAt3WDzI0cSsN9LgK1eldd0J0dLxxKrmCCOc,37256
22
22
  intentkit/core/node.py,sha256=P0LiBrjFtNBVC0JpQntTgDVfaLJM8aqhJZCJfPx6MJ0,8880
23
23
  intentkit/core/prompt.py,sha256=idNx1ono4Maz2i6IBKfaKOBBbEQiWbaSxr2Eb1vZTI4,15482
24
24
  intentkit/models/agent.py,sha256=9zcu9QkI0p-Nipbhe_mMA7ndQwL7mgPAP9MJwmXaRJA,67712
@@ -33,8 +33,8 @@ intentkit/models/credit.py,sha256=CM_oOhcpKHkdCVTe86osYsBM9vIo-9N65SWrNKEKy7Y,52
33
33
  intentkit/models/db.py,sha256=1uX1DJZGMx9A3lq6WKSTSwpXhWgWaiki55-iiED8BYM,5082
34
34
  intentkit/models/db_mig.py,sha256=vT6Tanm-BHC2T7dTztuB1UG494EFBAlHADKsNzR6xaQ,3577
35
35
  intentkit/models/generator.py,sha256=lyZu9U9rZUGkqd_QT5SAhay9DY358JJY8EhDSpN8I1M,10298
36
- intentkit/models/llm.csv,sha256=AwopuPk4Z27xl1VqOA0ALufC9HqQfQCNN3wVWca2TBg,2599
37
- intentkit/models/llm.py,sha256=caJ9UWAkQMm0Z1I8cmorkE6flt-j_us7cQnM7qD9fFw,20425
36
+ intentkit/models/llm.csv,sha256=QU72XSUSPq52AjR2yCI-GzindQ6NmBBFN67gTGWd3Hw,3397
37
+ intentkit/models/llm.py,sha256=drr7LVwXvdwPfXchszx4bWVmajCM6p3cYNzY-Jgi0a4,21440
38
38
  intentkit/models/redis.py,sha256=UoN8jqLREO1VO9_w6m-JhldpP19iEHj4TiGVCMutQW4,3702
39
39
  intentkit/models/skill.py,sha256=-6FYzjnh2OL-l-K69dBUhmQZ-acJnXTRYBSOcjzy5mI,20329
40
40
  intentkit/models/skills.csv,sha256=lvQg_1byPvJaHToQbEqRZarfYDuXpP4EXeVJVMc8aDs,19132
@@ -46,29 +46,29 @@ intentkit/skills/acolyt/__init__.py,sha256=qHQXFlqyyx4deRxC0rts_ZEEpDVV-vWXPncqI
46
46
  intentkit/skills/acolyt/acolyt.jpg,sha256=CwrrouzXzYvnHi1rprYruvZqPopG06ppMczEZmZ7D2s,11559
47
47
  intentkit/skills/acolyt/ask.py,sha256=UuTdjF5961MLDMzDChnD7OGAqi0UYTTFgwGvuAIUDkQ,5871
48
48
  intentkit/skills/acolyt/base.py,sha256=XXicPCgM3kbyrl0q1KieZDI16EsHuOMg-1ZYd-4oC5Y,1319
49
- intentkit/skills/acolyt/schema.json,sha256=sKwLHLQOfGdyh7BupUpk5fJxopO8_svg1VRhK1H1S8k,2760
49
+ intentkit/skills/acolyt/schema.json,sha256=RrRuMKFTwaLncVxKyBcJbaWTFmkCRfgdveJ1zkiUd8k,2772
50
50
  intentkit/skills/aixbt/README.md,sha256=OPZEZnYo4fwj37CkDC7onB1bqXR_GwAGAcusd-gZrGI,2499
51
51
  intentkit/skills/aixbt/__init__.py,sha256=zO7Co9z6i6pRP5j78_mkGqQ_8eOh5UwPtmOZyf9gGVw,1757
52
52
  intentkit/skills/aixbt/aixbt.jpg,sha256=HlFNgC8Xsg43QgnYKNDz9oRI7J1z6sCBJkFxASyzq_A,67551
53
53
  intentkit/skills/aixbt/base.py,sha256=pNB_I5Hchw-DtUQ4CQIVbJbqJ52xxW59XHwwtBgYUVM,591
54
54
  intentkit/skills/aixbt/projects.py,sha256=tz2oixN4ftewEn3R4_kS70tv-_U0yP2WJaTQtNCjAkM,4581
55
- intentkit/skills/aixbt/schema.json,sha256=FcfgLP-mviBkUzQmzItwrpN9PjMPdd0KMsb8nG-xFjw,2481
55
+ intentkit/skills/aixbt/schema.json,sha256=uWV1vvK0t8kGk1viCXg1bLP8qSabjIy4w4P-yDXqaXk,2480
56
56
  intentkit/skills/allora/__init__.py,sha256=KCRA-NbOP_rQd1vkYDienF2DZzA8ey-1MeTcEtK8o9s,2099
57
57
  intentkit/skills/allora/allora.jpeg,sha256=OOFkmkdUouw0a5FH137-ai1mvksS9oy9pFoD9IVPMVA,5360
58
58
  intentkit/skills/allora/base.py,sha256=dkzkfCZfkpjizVBF1ebkSHpIyrGUCEkHKOGzw05niZI,1315
59
59
  intentkit/skills/allora/price.py,sha256=_xQHroUpmNsmDCkqIdIymQloxO1sxvr0gmfCj2GGlNc,5194
60
- intentkit/skills/allora/schema.json,sha256=hHgWEdjAK4Lu4f5cYJsiBq_xlASs9EGsa9DxPIQmPWc,2231
60
+ intentkit/skills/allora/schema.json,sha256=3gXQmTjXpuetwJrNLHLbZKfzq0CTvo5k7Gen4e1C3tQ,2245
61
61
  intentkit/skills/basename/__init__.py,sha256=qg_6Vg8R04WabJ_QSc7IUY_RA8yVlOAYd-nDGPBk1g8,1313
62
62
  intentkit/skills/basename/base.py,sha256=yJZNjFF2m5ej6B9o4orlPg4MoxCcx_2pgqYicV34dME,246
63
63
  intentkit/skills/basename/basename.svg,sha256=1YoKTX90HDJUYI7yhKF31FVQWFud80Gcy8BnRuQ1NUg,605
64
- intentkit/skills/basename/schema.json,sha256=s-Iir6Ea3SKHC3BNXz1ThseJe55HhKwUAPk3TlwL0C4,1458
64
+ intentkit/skills/basename/schema.json,sha256=m-0mX1U7_Q5wI9n8jWdJR0K86xEUZ8LvMcgNG3BM6Sk,1470
65
65
  intentkit/skills/carv/README.md,sha256=mCyt8r_fBekt4Dv1QiwFRCQhwlpTiE4NE8GUa_thLQQ,5327
66
66
  intentkit/skills/carv/__init__.py,sha256=qqtljOBo95DgB0L81znu91Y4kK6G7AeULlGWxYOKIMw,3845
67
67
  intentkit/skills/carv/base.py,sha256=HX8HSE7AWoDKywUZwiZlMY5lTLATg5gFFYA9tbg9N-4,7531
68
68
  intentkit/skills/carv/carv.webp,sha256=Rh0Q2C8NfA7qcD8SApm4UW1slDEU7ivU2nIi9AghStI,1354
69
69
  intentkit/skills/carv/fetch_news.py,sha256=jqi9IwFM99dT8z_RqK9b0FXFLHQfhaqdMlaqnXlqYik,3350
70
70
  intentkit/skills/carv/onchain_query.py,sha256=mPFpyNPMp55fIlENwqi1M9mhAXcw7uDshX3Lxo6K2x8,6102
71
- intentkit/skills/carv/schema.json,sha256=oSReeG50ZJTOxSRniQBJW6KfilscZfp66PiBVOjphS4,5021
71
+ intentkit/skills/carv/schema.json,sha256=l-BFsDTDkBPEvq54aUB2b6sR4A84HdqRpuxnlE3Ztm4,3850
72
72
  intentkit/skills/carv/token_info_and_price.py,sha256=B2Xcr3l8EPoHLAVAq0qP3m05ue7xxHgNXBu_W0XjZTI,4060
73
73
  intentkit/skills/casino/README.md,sha256=VfJoeiuBVERcCiKQReF7xZ52gVc_IjV-56fqXDeJvXA,6453
74
74
  intentkit/skills/casino/__init__.py,sha256=T65XUCWxyxTt4KYWJSb0VxrwbhN3XREi8yVgOUM3VMY,2596
@@ -77,23 +77,23 @@ intentkit/skills/casino/casino.png,sha256=P5fU1J7otDPvXcxcug9KFZuuv2sBun7iwr6dv9
77
77
  intentkit/skills/casino/deck_draw.py,sha256=JFFqlSYr2l06h5IbIlBhMd0QGi9yko6RCbvqqNaN0DQ,4547
78
78
  intentkit/skills/casino/deck_shuffle.py,sha256=bJvo6BdHhfdgnDWuFE1FA0m3kCd131Q72vXVnDi3WwI,4014
79
79
  intentkit/skills/casino/dice_roll.py,sha256=-exkBlN0V7ocFTCO4mmT7aUied9tavJIPlFal3WLbl4,3339
80
- intentkit/skills/casino/schema.json,sha256=7VtA2VZA7Y7pSA-W4wCkLy8xCCN21GX839Pd1Yzg8fo,2122
80
+ intentkit/skills/casino/schema.json,sha256=-jTURxJSVHUi3Q76sP7h92SNvkJjuUNfTYiYKWhlI-4,2108
81
81
  intentkit/skills/casino/utils.py,sha256=b5fPwACH_tHgXD-V646weDDEvd4giRGPNfd9f7RRXc0,2593
82
82
  intentkit/skills/cdp/__init__.py,sha256=enpepAKCiR_eg4-rNvs0dY3t9bcPdlBfgOawM8pkSnM,2206
83
83
  intentkit/skills/cdp/base.py,sha256=BcleKSXm0oNcHYky4uUPCJ3roXxMeTJs2OUS-8MkfMI,581
84
84
  intentkit/skills/cdp/cdp.png,sha256=dxPF6jPbKVfxJNMvbGTmBhXM-rSDvweF06txoX1cIM4,4425
85
- intentkit/skills/cdp/schema.json,sha256=VlBwt2nVsLChPqk0FGd0GIORGf9JBvyExAHO40fMStg,3882
85
+ intentkit/skills/cdp/schema.json,sha256=Hcu0ZaplffuP-hctIOgY5g4jtzcb8MMiSn9oXQ1gJH8,3890
86
86
  intentkit/skills/chainlist/README.md,sha256=FEVQObs2W_oL2kyV-vZpHNwZCCgqm5Kt0sv0GD_Xo1M,958
87
87
  intentkit/skills/chainlist/__init__.py,sha256=2aRC-jXW3WYiR_-RM-_Ls1lby_54ZemZ6qtggntGa-U,1502
88
88
  intentkit/skills/chainlist/base.py,sha256=rRhrXcdg06qAYE0uIiL9NctpODuTIu51Eyxp4UVtflU,599
89
89
  intentkit/skills/chainlist/chain_lookup.py,sha256=DvETmFMRjLfpPjfBeu_lEgFqDzuBQq8zIju0jt-_hQY,7209
90
90
  intentkit/skills/chainlist/chainlist.png,sha256=vxzcYJiVgKHIHo3YZbi33StOFGzUeT7aYknIIpSMTJA,25544
91
- intentkit/skills/chainlist/schema.json,sha256=G3Puj06cVxdngCeiriOJVemTXL8JKUxCHKCq4_P3yuE,1491
91
+ intentkit/skills/chainlist/schema.json,sha256=9JYftB2GkM0zF43gS8VlSuin09sn5guQek3-Ceo_TF4,1473
92
92
  intentkit/skills/common/__init__.py,sha256=F14UUjfIVPhA42Vf2M4QTgVW6a1lZHGxt8bTpZSThrU,2090
93
93
  intentkit/skills/common/base.py,sha256=ydW3A_oqbOrlqGGrf4ru8LYQ0fmYQAgPb79ZNBfC96g,598
94
94
  intentkit/skills/common/common.jpg,sha256=jYOqQ9WxJQT7yPhvgmGyVDccJxDQc_oecIAaISKl0-g,3416
95
95
  intentkit/skills/common/current_time.py,sha256=wDl9mPPgn-zDJFVmOcaCY5vEqG9bxyn0VM6vxCKET6A,2753
96
- intentkit/skills/common/schema.json,sha256=sa0nUnQG52eIDvgFyKo1OgiD2GmhSQOwfIzDO4sARnQ,1421
96
+ intentkit/skills/common/schema.json,sha256=iHuInDo2aQhNnpBNKSsGBlnlYk5cxTvOADGheaOZBBA,1429
97
97
  intentkit/skills/cookiefun/README.md,sha256=z9MkXFlys2CERdEMnKbVNredUvw0_RjX9k-r3x6O2h4,3652
98
98
  intentkit/skills/cookiefun/__init__.py,sha256=qoXBv6lshMdY8FPiTRU9jTuYkltS7-Hf8hFVfgeKMG0,2579
99
99
  intentkit/skills/cookiefun/base.py,sha256=HknokXGti5--AQp6RSrIA4oYw6H9ceSppcKn2dhy80c,1533
@@ -103,7 +103,7 @@ intentkit/skills/cookiefun/get_account_details.py,sha256=kDeg-_oWmyVg3GVXo0Q2eiW
103
103
  intentkit/skills/cookiefun/get_account_feed.py,sha256=1oVahOiLM9lZxHzZBS3UFRkPQzUnqrdXAL_OFyXIi0I,10835
104
104
  intentkit/skills/cookiefun/get_account_smart_followers.py,sha256=dOuUcb9piyCBz8SAlMA9Fw_1oCcuNekdBSfA2yWOHm0,7683
105
105
  intentkit/skills/cookiefun/get_sectors.py,sha256=YF3CFjiiQ2xtXRzYPGUoqTcRjNgNX9lSezgmRu2h7G0,5417
106
- intentkit/skills/cookiefun/schema.json,sha256=O3tRvf3IWSMp3yInwXB_6K3CNdjTnf0aOvGyg_AdIlI,4544
106
+ intentkit/skills/cookiefun/schema.json,sha256=nc_0Iz0Ghj05gsTyHMtoSFLL0RZR5bipbQ7Ws3WTufY,4522
107
107
  intentkit/skills/cookiefun/search_accounts.py,sha256=3tlSSPNlL7DVkuEPr30cvceY99nPEarhTSA5aK3iHic,8722
108
108
  intentkit/skills/cryptocompare/__init__.py,sha256=xAsUcZjqNKvKSe5EXe_7DnDaVnm7ykbBXKwI1JlgoCU,3852
109
109
  intentkit/skills/cryptocompare/api.py,sha256=6WcnqhxElHaLJXCCNjNBPKS6Fdivpgfg3d8U4Thuk2E,5650
@@ -115,24 +115,24 @@ intentkit/skills/cryptocompare/fetch_top_exchanges.py,sha256=eK4Gbe1ZesyU96-vQAP
115
115
  intentkit/skills/cryptocompare/fetch_top_market_cap.py,sha256=3rrkX3-gpwSu-g6xcNgOU9jG02MQvRKjR2rEuaCPa0o,4035
116
116
  intentkit/skills/cryptocompare/fetch_top_volume.py,sha256=v6J8W0-R_Yl3nhN31sBdgjPGmC3xpTpZvO4QxcC0OFs,3980
117
117
  intentkit/skills/cryptocompare/fetch_trading_signals.py,sha256=d6Ex223wq8tFfaAHcSYXCH1q_jvFV3ymmHBTK23qKBI,3797
118
- intentkit/skills/cryptocompare/schema.json,sha256=pb5Vyyf_cB9dJGhmNpo70PJow-gF5OdAJ6I917aNs0k,4844
118
+ intentkit/skills/cryptocompare/schema.json,sha256=awnKNMX2mZJEmyy3vrjp43E5q6gO_AA3A39bJyzw7YY,4843
119
119
  intentkit/skills/cryptopanic/__init__.py,sha256=mqk_kzvKQfwXoOEwUNPiOtyVWUPnR2KT733kdcakC0k,3220
120
120
  intentkit/skills/cryptopanic/base.py,sha256=kCzjX-sy67yS5FszHxY2SlcfDMIw2ouNpuKmJb_X2zo,1820
121
121
  intentkit/skills/cryptopanic/cryptopanic.png,sha256=AgK3qgbzXoQn18DjiK5akS1GLMn6kQIrtldl7M2eGMY,35860
122
122
  intentkit/skills/cryptopanic/fetch_crypto_news.py,sha256=DQ3rGV8ss0FSgv1U4cq_FobZ5oNt6uqH2EV_MaurNQo,5007
123
123
  intentkit/skills/cryptopanic/fetch_crypto_sentiment.py,sha256=0PR3A5K2P9jiRajdyMsUvh5VyBxa51ZrF4KTbEmORfM,4995
124
- intentkit/skills/cryptopanic/schema.json,sha256=DgIK6Na-BiXF18xBVuiTSIANUIRC1JWMTMvUErVNtCU,2744
124
+ intentkit/skills/cryptopanic/schema.json,sha256=aJeFKy3bgVVRHrlH27hVRLxaHefhcpj4HZANoaSSESw,2684
125
125
  intentkit/skills/dapplooker/README.md,sha256=V8wl2yfNvvSeycJxYMnnmBHaqItmI3bfiCGSTzehwwI,3683
126
126
  intentkit/skills/dapplooker/__init__.py,sha256=GvsGsFAYxbE5qPIL6BiR-CC2oe76v2SXKXNj7uyMSH0,2221
127
127
  intentkit/skills/dapplooker/base.py,sha256=m53bhT5PYDduo1d5tfaJkYsCLxhPQkEdUtQ80LL_xek,1284
128
128
  intentkit/skills/dapplooker/dapplooker.jpg,sha256=P1JHhiyodlQY1rTKG_peX59T_jU-8ZQ_ivg0oq55n70,2481
129
129
  intentkit/skills/dapplooker/dapplooker_token_data.py,sha256=TtxdK2nRoEi5rxFJhMDDvMdDtkXoBJS28HDamXrdOzo,20839
130
- intentkit/skills/dapplooker/schema.json,sha256=OdlkQqTEK42Zop4RfnU7pMM8frSzH29ti2MHmNAgq5I,2227
130
+ intentkit/skills/dapplooker/schema.json,sha256=XP8ZnxRM9Zp5Ow1FvdhOGF1nat__-S8p00XTDAPdbsA,2188
131
131
  intentkit/skills/defillama/__init__.py,sha256=Q8s7r6MITlM_cXVb43dYzYP-xtx3HKBGECPDFDR6WUM,10121
132
132
  intentkit/skills/defillama/api.py,sha256=_dgNEjMFD_y5Z0y4lh1Vd1JrkRn_wFyaUShKaTf5DtE,11617
133
133
  intentkit/skills/defillama/base.py,sha256=IHYwrvN12JE3qdqpWP__4RGzeeNobj5VS-tnCT5yLGs,4139
134
134
  intentkit/skills/defillama/defillama.jpeg,sha256=n5u5PgvsUVwX9Q2-Gh_fe6YKxWjBsNEnbKaf2X3yJC0,4629
135
- intentkit/skills/defillama/schema.json,sha256=cRxah1E_rFndjTT5ukp8aiVWOwyMwLUHfz1T2ux_K_E,10561
135
+ intentkit/skills/defillama/schema.json,sha256=eOPM3m9yMubiItVhe662qqS6PQeLiJJ7asH92Cf1Q2g,10609
136
136
  intentkit/skills/defillama/coins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
137
  intentkit/skills/defillama/coins/fetch_batch_historical_prices.py,sha256=g5Tg7hLSOBUH8IwBUvisrSEhLZC1KRoUMkkm9atY3ng,4391
138
138
  intentkit/skills/defillama/coins/fetch_block.py,sha256=GtnyWk0sUZJ2AO-tuyulI0MGmArejIygTGtNlpgk5u4,3253
@@ -174,7 +174,7 @@ intentkit/skills/dexscreener/dexscreener.png,sha256=VhZUEhMdCrc6MlkAKoVdt3ZCDrxV
174
174
  intentkit/skills/dexscreener/get_pair_info.py,sha256=4zONapKTTnD6VvsK0dc3HAj1ZK9wocixMNki1DO5vv0,5915
175
175
  intentkit/skills/dexscreener/get_token_pairs.py,sha256=YSMtbiRwbMsb14VfavcoV_DY0qBoE8a-9U0A6HA02Us,6053
176
176
  intentkit/skills/dexscreener/get_tokens_info.py,sha256=F5QKn38qj9HKWuKsHjfXDq1F8uqwMaEpNI00WgF3zFw,8351
177
- intentkit/skills/dexscreener/schema.json,sha256=g7sblsisaXFzD0O2W84SfOT1EnFHQhBDNk_lpHucGw8,4150
177
+ intentkit/skills/dexscreener/schema.json,sha256=mqrH0_pwhdkS8SstBGwEbQ3Z7CwsTZ-jAfzghvL7Amk,3272
178
178
  intentkit/skills/dexscreener/search_token.py,sha256=Hrp_KZ13V28SRpSs2xDH_fO-A2wSQayHI9AtXVjPM44,7806
179
179
  intentkit/skills/dexscreener/utils.py,sha256=W0eJvWtVkNeJaVMWlBBnRBSUYJpfGzNtoi-8THOk2Q0,11203
180
180
  intentkit/skills/dexscreener/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -184,13 +184,13 @@ intentkit/skills/dune_analytics/base.py,sha256=01wGkAuEAMdEPx2fkJvruS6ktMU7nBBXT
184
184
  intentkit/skills/dune_analytics/dune.png,sha256=WNYJKcwIApDXAMF7BiHq5YgZwiYVyPmgWH9MexM_RDQ,5592
185
185
  intentkit/skills/dune_analytics/fetch_kol_buys.py,sha256=ht2tWSiNeGA1rpZpF-P07pE13ddatzsuR7bqepOVzj4,4204
186
186
  intentkit/skills/dune_analytics/fetch_nation_metrics.py,sha256=DdjsZVhb45vCypBQie1ceZCgfT0eLe5xmi3GeSAiUrE,8309
187
- intentkit/skills/dune_analytics/schema.json,sha256=NJQ1IEPxqgBcFvMultrNpbTO-2InmstW4SwU_y15iSo,2587
187
+ intentkit/skills/dune_analytics/schema.json,sha256=ej1ylO3K1-CJhXeV4Z2c8YLWCjzKPghuXc58xzihSbE,2561
188
188
  intentkit/skills/elfa/README.md,sha256=s6TmQlK9w_nvMpg77B6d3gQjUP9n1M0ls8kmSDl_PoQ,4777
189
189
  intentkit/skills/elfa/__init__.py,sha256=rpCR_l1SwJMdhLWyBM2dnynr3YKHWcHJNkVaK6wZLns,2901
190
190
  intentkit/skills/elfa/base.py,sha256=wO5X-RvFLuyM9qCiV_y2A4vBMprKKXj24vxjIPjtY7c,1297
191
191
  intentkit/skills/elfa/elfa.jpg,sha256=4K6Ht0wGitpVnvHzdEcWVjaiCVwWBTvhOfkqWWWuc5U,11053
192
192
  intentkit/skills/elfa/mention.py,sha256=ShfDk32NAxxRUMNzgS-As0CM9KeoP6D4SzS01QE70tA,8142
193
- intentkit/skills/elfa/schema.json,sha256=uMQwC66pU_Ys8YQVK9LySNDlH11ZB76via1DvGz4nb8,4172
193
+ intentkit/skills/elfa/schema.json,sha256=SSgh45CMIuWQjz1qVISaGzZcpXRvofbIcMqtN537Tq8,4188
194
194
  intentkit/skills/elfa/stats.py,sha256=aCu-EklosttykdRRP-R5yZGsokm-SCZ55xNZGy97ETM,2978
195
195
  intentkit/skills/elfa/tokens.py,sha256=bgOuP83d16APpmKl_-2Yha-_diurG3ArYZknRYjCZhs,4537
196
196
  intentkit/skills/elfa/utils.py,sha256=y6hfiWBu31vMXc4rrdUpbWQzmMQLk_L-iaAQLUs8dJM,4388
@@ -202,7 +202,7 @@ intentkit/skills/enso/enso.jpg,sha256=QID1rD7c3YVbIgzJeLD7HnNdCJfDy8mItYV784g7wW
202
202
  intentkit/skills/enso/networks.py,sha256=SQecevnoqJ7_GDEV94pOsyHc6QP15izdWIcn1lBK1Uk,3250
203
203
  intentkit/skills/enso/prices.py,sha256=v2zinSbSCgVzDoMRIjvcUVpWEu4DrehlblB8evhpSto,3288
204
204
  intentkit/skills/enso/route.py,sha256=uxdCiGLT7abu6lXyq-XOgTLxq1D70JPhSA-J5LdFB_U,12670
205
- intentkit/skills/enso/schema.json,sha256=MvEms4RqX5jT4gs8veYisXGz40K_2d9lkhDBh89viHA,6062
205
+ intentkit/skills/enso/schema.json,sha256=p1FF3oZQPe8xHigdcBuimimGDnmQ9RYShVaTokFapGs,6074
206
206
  intentkit/skills/enso/tokens.py,sha256=5o6C00J3JmzX4hSlZB3hPej9Ng0JDwLsrFNQeIre7aY,9848
207
207
  intentkit/skills/enso/wallet.py,sha256=Wk6MVkr8crpuRS8kcu5QwhhAVG4gixmI8VhfHh_I7U8,10273
208
208
  intentkit/skills/enso/abi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -212,11 +212,11 @@ intentkit/skills/enso/abi/route.py,sha256=ng9U2RSyS5R3d-b0m5ELa4rFpaUDO9HcgSoX9P
212
212
  intentkit/skills/erc20/__init__.py,sha256=S-dDGFvrFlr0m-TmlutG8FxFujBQdv-qHSvmfftLu14,1322
213
213
  intentkit/skills/erc20/base.py,sha256=6F5XHhujzRts_KcK35MiZA3HIAnrJnX3OFBkE3p8PkE,234
214
214
  intentkit/skills/erc20/erc20.svg,sha256=llKPc2BHM2XKl5n1csa_96Bcbij-Qvb4BIArBGd-v30,324
215
- intentkit/skills/erc20/schema.json,sha256=RK7m6tbRHuj4rbaiXRk9l0-gln9d7mTyhhDveaj2hnM,1885
215
+ intentkit/skills/erc20/schema.json,sha256=pkEG5McpLWqpvX2SbMGbVgo9gmqKQyAq-aC9unnK1Aw,1893
216
216
  intentkit/skills/erc721/__init__.py,sha256=UMRZWjjUGl_We-_UHimxqIdaf--Xpf-D7DAq0n1J9iw,1375
217
217
  intentkit/skills/erc721/base.py,sha256=xGYCrSjqFezZCHHVj042ilfNYmGlR5BPXUKon7MQz44,238
218
218
  intentkit/skills/erc721/erc721.svg,sha256=sKQxaV5Lb2ug0KJoZ4f_UimV2_ozYXa5hLEdkyBQsyM,338
219
- intentkit/skills/erc721/schema.json,sha256=IU09xQ_rz3K4pGSP3RILj7PnajkhvSdliz2skBrKNlI,2328
219
+ intentkit/skills/erc721/schema.json,sha256=53n_hrv3oLOiQ2ICxft7zamYdxHMk93UazVQCsMPaUo,2335
220
220
  intentkit/skills/firecrawl/README.md,sha256=OP5rCC5aNx9A4YjgotZB-JFdBR_0qHiWmYLuA52a8Tw,7366
221
221
  intentkit/skills/firecrawl/__init__.py,sha256=QQ0I5vlUgsLRFqHO17vbq-3ERKL3nzoo2B4MFGH0Igg,3160
222
222
  intentkit/skills/firecrawl/base.py,sha256=8D66w4kRM807DRAO0kW9ph1GoGdR4dBXoU0p96I1QxE,1250
@@ -224,7 +224,7 @@ intentkit/skills/firecrawl/clear.py,sha256=mfzQg8e6sbCwSzJGN_Lqfgxt-0pvtH_dBtNSJ
224
224
  intentkit/skills/firecrawl/crawl.py,sha256=lhySK1TbxGcLAXQi1zvrp4Zdo5ghhBFvxc4mFMl5LoI,18278
225
225
  intentkit/skills/firecrawl/firecrawl.png,sha256=6GoGlIMYuIDo-TqMlZbD4QYkmxvQ7krqAa5MANumJqk,5065
226
226
  intentkit/skills/firecrawl/query.py,sha256=LZzIy-LmqyEa8cZoBm-Eoen6GRy3NJxfuQcGi54Hwp0,4364
227
- intentkit/skills/firecrawl/schema.json,sha256=wFUfroi3zrAJ0NI_JfpBDIJCwN7BvO5s6d0oltvSIY0,4555
227
+ intentkit/skills/firecrawl/schema.json,sha256=wD_0h4xUYEnVtPxvSQDlHyw2xPkYKq5PD2mRVM9-ID8,4473
228
228
  intentkit/skills/firecrawl/scrape.py,sha256=2axmz5hZVnNGvTPTi0r0WAN4MoYNQZzOFtMZd5pRgcg,20704
229
229
  intentkit/skills/firecrawl/utils.py,sha256=Ot_vEg4Z30_BY3Xbh59gb_Tu17tSCmytRw49RGAzZ88,10093
230
230
  intentkit/skills/github/README.md,sha256=SzYGJ9qSPaZl68iD8AQJGKTMLv0keQZesnSK-VhrAfs,1802
@@ -232,7 +232,7 @@ intentkit/skills/github/__init__.py,sha256=Vva9jMtACSM_cZXy5JY0h6Q1ejR1jm-Xu3Q6P
232
232
  intentkit/skills/github/base.py,sha256=Mzlv_cqe307asPEtBEZ6dGDDWa5vPi48dJWu2SwW6lk,590
233
233
  intentkit/skills/github/github.jpg,sha256=bW73vt4EFrbr7iAUvlhSV2286JI1_hbqXETtAb1SITI,7249
234
234
  intentkit/skills/github/github_search.py,sha256=HRmhA1sSmOBQC6rLxaRWve34ZAC5iPfm5hAJREeJAs8,7193
235
- intentkit/skills/github/schema.json,sha256=iIZTZi1Pj-4hJggloLvkarDn9DK__FZ09d6X-kG_bjU,1447
235
+ intentkit/skills/github/schema.json,sha256=2E5YRxUDVHvEycRnfRUfiVh71Mf-Le2jnaN9h8HJMVQ,1445
236
236
  intentkit/skills/heurist/__init__.py,sha256=iGX4Uoped7NkvaJD2BX8sWIoQAVdN2oi4fw_imfr4yA,4419
237
237
  intentkit/skills/heurist/base.py,sha256=ZDWCvX1icUhv5KHUxHno9nKrnU3I0gbH-HePrjdY5Uk,1399
238
238
  intentkit/skills/heurist/heurist.png,sha256=JjzZWmJXH4yaJADVqNQrDkLLEc42JF9uZ8S7_6Lc0To,22531
@@ -243,7 +243,7 @@ intentkit/skills/heurist/image_generation_braindance.py,sha256=0C9USLlQDQSGIsPEy
243
243
  intentkit/skills/heurist/image_generation_cyber_realistic_xl.py,sha256=nMuLauSD__YSlujo091mQgoi6u7bbIMYdzYfvRCiK-M,5946
244
244
  intentkit/skills/heurist/image_generation_flux_1_dev.py,sha256=_VRsS_qVV35QBQHgbkDD36jz4qeumPlqfDgqtcE-wyE,5684
245
245
  intentkit/skills/heurist/image_generation_sdxl.py,sha256=0RvgT1_YqJs6T7o0eRrRP2rfIU6dFpehA_KtJpCUceU,5664
246
- intentkit/skills/heurist/schema.json,sha256=0CJES27ZxA3Qp0r9vWzc6YI1gNOhCYuw3MSrEhZYt5U,5792
246
+ intentkit/skills/heurist/schema.json,sha256=PPSIvwDfKF0L4lBWHjToBXBe8qaXGZcDFevloNBz-gk,5782
247
247
  intentkit/skills/http/README.md,sha256=vGsKtAm8mgwPSCZKrpWdMPHARbiP3WMtTcV8H2cK_vg,3040
248
248
  intentkit/skills/http/__init__.py,sha256=xcd4PhtDuQSBR7gPWKeRuLSEiCer-6zs2q1XiDE4KEA,2570
249
249
  intentkit/skills/http/base.py,sha256=c4IsTaByJgBtaLVnVxkNEUZYBSVFoTlM2Yv-kG7KYgk,591
@@ -251,12 +251,12 @@ intentkit/skills/http/get.py,sha256=Dz8q_PLVdCiLs3xNufHyaEJsejwND2NCQxvXPnrunCo,
251
251
  intentkit/skills/http/http.svg,sha256=VMPivLGjOH2zaxH9mvn7r-T9Z-Td6eO04xRNYQJcAGM,767
252
252
  intentkit/skills/http/post.py,sha256=Rh3Zclvri_s1gSpCFzjXOoQQns2Clp4JWEcDb4E_FFc,4177
253
253
  intentkit/skills/http/put.py,sha256=PKe7XuQcomsBrh8XgpkltQpOH-KGO1hJeIo0pKGaVpw,4161
254
- intentkit/skills/http/schema.json,sha256=zryLRzGm4_BpBZmzlmNlyHmWrPFu3bdv0yx0sqrCwa4,2074
254
+ intentkit/skills/http/schema.json,sha256=wfGTofOQ0D5PGPwcLGTh4uNwTRTE82hehEa4MD3yKTs,2094
255
255
  intentkit/skills/lifi/README.md,sha256=7Cjn6-VDzXIeNNlt8aXrwErEOk22ofPzk4hCubyT3vQ,8355
256
256
  intentkit/skills/lifi/__init__.py,sha256=U2zOLqnMNS9q-5lDhVOOU2_mch0JowLor5ktneaTa0k,4985
257
257
  intentkit/skills/lifi/base.py,sha256=8MrF3vJmh0ZmVHoGZ51K73u0o9AljVV1bch6ji9rS5E,584
258
258
  intentkit/skills/lifi/lifi.png,sha256=CtFw-pbaD51BqduIOu5zNeGGBigw0e_OQLsZJe3XnsE,7311
259
- intentkit/skills/lifi/schema.json,sha256=Hzy4s8LOoI-JOMyo-JAVWqylFFbS6SRAaL7hOmA2_4k,2579
259
+ intentkit/skills/lifi/schema.json,sha256=l4ptQWS6DfLr8KI_4ENBD2LxFS8kdo6h4vtYz5tc5Bg,2616
260
260
  intentkit/skills/lifi/token_execute.py,sha256=cqaMjKebatW6VjTsegald97LIj88MMIhxg44rTfToWM,17654
261
261
  intentkit/skills/lifi/token_quote.py,sha256=OyuRhNrjU0QbDfzyrmU6mEBtBed0xfwldv1R1AoeQvA,6892
262
262
  intentkit/skills/lifi/utils.py,sha256=gYd7quenIyqwPl7FOvgGnehmtz4dcf_IiHPWGORPAMM,21057
@@ -269,18 +269,18 @@ intentkit/skills/moralis/fetch_nft_portfolio.py,sha256=OU_5Z11Hjja-MlsvhoFOSCGhh
269
269
  intentkit/skills/moralis/fetch_solana_portfolio.py,sha256=rc6uqqt6_13VoveNf1mxnCaxv_mWI-3mJddAxt2satc,11495
270
270
  intentkit/skills/moralis/fetch_wallet_portfolio.py,sha256=tujwVQklkkaDTnLj6Ce-hUybg_0gWr-GLTaocEmzNA4,11166
271
271
  intentkit/skills/moralis/moralis.png,sha256=fUm771g9SmL3SO2m0yeEAzrnT0C_scj_r9rowCvFiVo,11232
272
- intentkit/skills/moralis/schema.json,sha256=dI6zMd3HHtNBhrxm9iITDwFjKgpdjefyU8HanMOmVUA,4672
272
+ intentkit/skills/moralis/schema.json,sha256=jpD66pyw1LtUXejAjWHNJy_FGXeHK-YRlRMtvFIA33g,4734
273
273
  intentkit/skills/moralis/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
274
  intentkit/skills/moralis/tests/test_wallet.py,sha256=MI4WwFNBoILDEXlK22glntiySgR9BWkpHUdIfKUu2-A,18610
275
275
  intentkit/skills/morpho/__init__.py,sha256=7J-ZOhrTERfE_WeIxAH2i5hqKoptzTDP-MU9KD3OUtM,1329
276
276
  intentkit/skills/morpho/base.py,sha256=FYbgul_35OX-oHwTqA8Jb99V9azM1AVcsUqGScOvQAg,238
277
277
  intentkit/skills/morpho/morpho.svg,sha256=v3snRB2CkMbaw36YbdmNRuptu5I07O-6WUw__Htciv8,602
278
- intentkit/skills/morpho/schema.json,sha256=TQjsPt3y0ftMDYzL57h4zowruxXj281JopQN6xHibZE,1851
278
+ intentkit/skills/morpho/schema.json,sha256=JuGCRcF_gdmEGOdnwSOcikaX_cpYKiuNXMRzUijgRRk,1845
279
279
  intentkit/skills/nation/__init__.py,sha256=QgNHWRfe-7ZCCgCzUzEzOqR2QGPOVQThjRFEhLjLGqQ,1602
280
280
  intentkit/skills/nation/base.py,sha256=PXZFuhrgmWksfSE7SYZWOKXTw3dcXd7Tk_7keAUrp5k,951
281
281
  intentkit/skills/nation/nation.png,sha256=yWsOQiUxaR6T274Z_xW4nI1vFA0SeC4Zy_PslT5GvPQ,130648
282
282
  intentkit/skills/nation/nft_check.py,sha256=lkaXzITEFwxUnvTNBv5Tb9gIlI2LdSfBhcbB0hQFVWI,4019
283
- intentkit/skills/nation/schema.json,sha256=_I23P5giUnMxMKghr5U3VFLebQ7X9JgY_9LrSenRRPQ,1348
283
+ intentkit/skills/nation/schema.json,sha256=S4WTjeu_tjcHsLY7z7IffE-6a8XMNCnL-mqlZL1s4kI,1359
284
284
  intentkit/skills/openai/__init__.py,sha256=jVeqEkH0AAz_JllaQRC0RsXW_2IMIZuNm-l6jxJcvHA,2980
285
285
  intentkit/skills/openai/base.py,sha256=VSHTt5NP5TsUmEO6AuOgjWhNSupNI8Jz2pWtITv48F8,1384
286
286
  intentkit/skills/openai/dalle_image_generation.py,sha256=IrIPSrcHnY5oU1kPw6HkSoius1nTikLxxTO1_uzKx70,4207
@@ -288,13 +288,13 @@ intentkit/skills/openai/gpt_image_generation.py,sha256=y1qfBd6Jv1g4kAwnduS7hnxKH
288
288
  intentkit/skills/openai/gpt_image_to_image.py,sha256=aHXiQxM46unTJEW12pl1DVJAieORAw9B6e7qoM206ew,6966
289
289
  intentkit/skills/openai/image_to_text.py,sha256=cv3tmLo9dtE9CCR7VtWday6Vn7oVtX2RnURgXkIBsa0,4996
290
290
  intentkit/skills/openai/openai.png,sha256=YCWkNHqOrtF-Merr94NOM-xK8mzH9ZvlhqxZulFX-hw,4081
291
- intentkit/skills/openai/schema.json,sha256=KyXTZIPn7buAg0DM_q05VoaoQCaMvXmwo4vTf2fBvis,3599
291
+ intentkit/skills/openai/schema.json,sha256=5-Bpcv38WbLwjYoO8HQe1kqLIdnrQSjyHwCdAGQA6CY,3567
292
292
  intentkit/skills/portfolio/README.md,sha256=mqch3w2cmXF9iXC4j1DDMFXAajblVvOBi7L61uTfpzE,3586
293
293
  intentkit/skills/portfolio/__init__.py,sha256=dzndB7DszgZIRVN6oIt-cVQlKmbjd7AN-ElYZihxbNQ,4779
294
294
  intentkit/skills/portfolio/base.py,sha256=uG-X7vzK5zI6LDilwTR5XsrRDBq3_rp1uUg-O18Enbc,3542
295
295
  intentkit/skills/portfolio/constants.py,sha256=DMs4mc1nnmm2GnJpDzjgUfLhCgRKucB3LsAmTtFW_rU,213
296
296
  intentkit/skills/portfolio/moralis.png,sha256=fUm771g9SmL3SO2m0yeEAzrnT0C_scj_r9rowCvFiVo,11232
297
- intentkit/skills/portfolio/schema.json,sha256=yWNdXwFnLbvzWgAHIroHYVMvW8vtHq6cHxzZzR89SXY,6380
297
+ intentkit/skills/portfolio/schema.json,sha256=7QZkbqD_4A9n5o06Sz3aCTgaveNzxALPR9SEBOswMN4,6349
298
298
  intentkit/skills/portfolio/token_balances.py,sha256=t3bJjM3hnPOqyhiZ-TISa5If0vovBjm2V2klq6VJNqI,5600
299
299
  intentkit/skills/portfolio/wallet_approvals.py,sha256=NSmHmytoNU-GbiYeGDp6UQNiPNZoCiu_r4CFmRVsKqk,3119
300
300
  intentkit/skills/portfolio/wallet_defi_positions.py,sha256=ZkLan3LBy0BPjSu8oTmYxc1xaBaenKfP96PR8HrBPEI,2665
@@ -308,13 +308,13 @@ intentkit/skills/portfolio/wallet_swaps.py,sha256=LWeHmuJLVaUHaaE39uynio2htjXwAv
308
308
  intentkit/skills/pyth/__init__.py,sha256=DqCgH2ErAKzqXMib79EbfvmDb3ISopSHeFbTZE74bt8,1319
309
309
  intentkit/skills/pyth/base.py,sha256=IWQP6yiNWm-tzTEVj9BXv-gCsiHf7MQRFH76YhD5OyA,230
310
310
  intentkit/skills/pyth/pyth.svg,sha256=cH_UjhbUHyPDQHW0Xz7SqPaKygIi1eMETvSEu6wFou4,387
311
- intentkit/skills/pyth/schema.json,sha256=ek6f43QtLqrMpiEg1Bo98lsq7-i_8jvM8hIJtYBQuXU,1871
311
+ intentkit/skills/pyth/schema.json,sha256=Dfo5x6R3JYIxzS6AagdraF0mTJoGUqcvFlAcwox-CU4,1896
312
312
  intentkit/skills/slack/__init__.py,sha256=P3oPb7SnMq5wPFVMh_kQv_HUXZzdznvMvp4syzKTGiA,2681
313
313
  intentkit/skills/slack/base.py,sha256=GMAnV-v0z7J8W7yVfBlsAeuHQbMuPC5YT0xGrCpxD38,2035
314
314
  intentkit/skills/slack/get_channel.py,sha256=gCBoeFk5nQiLcflubOhWIwh3GDr-EScxNRAxLh4DIxk,4218
315
315
  intentkit/skills/slack/get_message.py,sha256=5h5IF4S4Mre7BJ8DQVnpf9Dt-jUAVxoatf405sgEB3U,4767
316
316
  intentkit/skills/slack/schedule_message.py,sha256=I-xpUxaP2Jq8kUCnJtCalXuBY9TwxoMWg3a4yV3c_cI,3189
317
- intentkit/skills/slack/schema.json,sha256=zaWSka1GM6_X-xNQBeIAn8lovskZo78stklBoH4qPqA,3382
317
+ intentkit/skills/slack/schema.json,sha256=zHs50rsBujMsN6rgnH-VW_rhHBOBrDptI4HBGWvs_ps,3390
318
318
  intentkit/skills/slack/send_message.py,sha256=esspr3NygCVa9rEYULWdVnP2jFnLH3CxepI8R3bsC7g,2507
319
319
  intentkit/skills/slack/slack.jpg,sha256=b_tlvObAfE2KL-D9jhZQ8qAlc1UnXStvF3TENqFtTNE,10818
320
320
  intentkit/skills/supabase/__init__.py,sha256=CCdOpA4g27MxaUrYSMh8KgjHez7De0PNtlscoPX7Hh8,3417
@@ -323,13 +323,13 @@ intentkit/skills/supabase/delete_data.py,sha256=nraDtSx40Fu9yB8iBD-0-Dc9LLp4U1W1
323
323
  intentkit/skills/supabase/fetch_data.py,sha256=v67g_-k77SYLSpeWBFZnOoia3uSZApjGR-i0g-jjxmY,4623
324
324
  intentkit/skills/supabase/insert_data.py,sha256=v6Hau9dPOoejKMLg4DWQqRQbOBPqHwFq-OlwzwnkzM4,2117
325
325
  intentkit/skills/supabase/invoke_function.py,sha256=1km5yswfLRapNcVbXQsSVlt6ZikPGFUOmwnwLj9gLIQ,2410
326
- intentkit/skills/supabase/schema.json,sha256=cqjo20flg6Xlv6b-2nrsJAbdCMBCJfmlfz8tGFJIlGY,5194
326
+ intentkit/skills/supabase/schema.json,sha256=vBUDQGjbxrYB5-GLBZy-xkJrWv4pLnL0CrUqkTJwcHc,5186
327
327
  intentkit/skills/supabase/supabase.svg,sha256=65_80QCtJiKKV4EAuny_xbOD5JlTONEiq9xqO00hDtM,1107
328
328
  intentkit/skills/supabase/update_data.py,sha256=IOB78dSbP3yrsNuE2DH5z-UztADXpu890myq42c4hQU,3872
329
329
  intentkit/skills/supabase/upsert_data.py,sha256=tZOch4jOfXwrk6V-1D6UIWXRRgpgfO9dIXWZLnEJvyw,2387
330
330
  intentkit/skills/superfluid/__init__.py,sha256=zTaGiUAs6jSCz7NjCdKTWHy1kI0nqja5dUuNzKw0fCo,1433
331
331
  intentkit/skills/superfluid/base.py,sha256=CD075eBd9OWliYex4P1BscGWCJqnurWpu63cUcoMEC4,254
332
- intentkit/skills/superfluid/schema.json,sha256=_RPx7vaSSqwNo6zKxkRqRJPvb5bx8stItcS4RWCyR7c,2376
332
+ intentkit/skills/superfluid/schema.json,sha256=qVNbhb0aJr5cPfy_54ZLwo2vT91w2BaPDjlKiktmNlY,2370
333
333
  intentkit/skills/superfluid/superfluid.svg,sha256=lIre1sDtkv0opwekdVb7gqqY3Xp8P73nnzbPhjZXxnY,422
334
334
  intentkit/skills/system/__init__.py,sha256=bqNYJCjLx9p23E21ELLP-T0B_NP0ltzT0TMqsBI-9Bg,3668
335
335
  intentkit/skills/system/add_autonomous_task.py,sha256=YnkxBaNLPUEPt7rWWWKFVXugdb_wCcxCpSr1cuCSPio,3164
@@ -339,12 +339,12 @@ intentkit/skills/system/edit_autonomous_task.py,sha256=m0Tocp_KhLbiAWNxZb20iCdET
339
339
  intentkit/skills/system/list_autonomous_tasks.py,sha256=S8yQw5_Z0Viz5mFJVYqJKWGZfZUK9fKU5Pt4vPNmDAU,1398
340
340
  intentkit/skills/system/read_agent_api_key.py,sha256=36fvWC-mktVLW_txatCXMtJINldtx4b797pI1zk0b6w,3320
341
341
  intentkit/skills/system/regenerate_agent_api_key.py,sha256=yuc8at21AR3dnY0tfXtt8i4uP1eKuliydjl8991plKc,2966
342
- intentkit/skills/system/schema.json,sha256=Yfd_pnSrJUQc__dwAoN9jl4WyzCKuauFjTV60U4MFaI,3099
342
+ intentkit/skills/system/schema.json,sha256=0eVZ5aNTmdcEQQEhyMKguFavX3YGLKms_R89B5hiK7s,3069
343
343
  intentkit/skills/system/system.svg,sha256=PVbC6r6rOhvht0lB1fcxDNTcbMUa7haHAkJ8rxp7gm0,3740
344
344
  intentkit/skills/tavily/README.md,sha256=VagMkuHrS_ge2Sir9M9CoeqmWc_rysKhTO9-LGICQsA,2840
345
345
  intentkit/skills/tavily/__init__.py,sha256=PDtH-O3fdAPCc3lGMbgcXKK1fDdkTO1CW-40825FtGU,2386
346
346
  intentkit/skills/tavily/base.py,sha256=YqvA_i00g1R97sTN9R9YJBMea31YGBBaR3C8ePX9SeQ,1275
347
- intentkit/skills/tavily/schema.json,sha256=1RwXTyzocphGhG7akMTvVOwZPQz80xpJoOASOL4oNvw,3006
347
+ intentkit/skills/tavily/schema.json,sha256=i_UXv_FFfqdsO85ntEGWhVQ6F6ZCichaQyebbJOMxbw,2968
348
348
  intentkit/skills/tavily/tavily.jpg,sha256=3vJ6v-zgXJY9dwAdMqcB1OB-gQxyc1kFTJthauU0E0k,3758
349
349
  intentkit/skills/tavily/tavily_extract.py,sha256=LGHp-u1GJS2LNmKS-AzBJhWqIvKY7ick5NLrHg3oLs0,5737
350
350
  intentkit/skills/tavily/tavily_search.py,sha256=HzBm5T3osbJwXCcjSySAvToJB6O5bdS9Qwqz4Vvs-i0,5159
@@ -354,7 +354,7 @@ intentkit/skills/token/base.py,sha256=hRMHpDgUFsCEXgD9EMX31uZZZy7I31pC0WmvIva0GC
354
354
  intentkit/skills/token/constants.py,sha256=_7gHyYmuEaI9cJBD8s5-Cs6ptJE48fJ3LjzNBgLcwBI,209
355
355
  intentkit/skills/token/erc20_transfers.py,sha256=gSOfkkj4VSQp_bpDLSe0ywcOPxpn90USFFSkjP_5PIc,5097
356
356
  intentkit/skills/token/moralis.png,sha256=fUm771g9SmL3SO2m0yeEAzrnT0C_scj_r9rowCvFiVo,11232
357
- intentkit/skills/token/schema.json,sha256=jgQ2qdC-ev3ZbN6SQzENhNzfg3iYuzkmHZS6QNeIjOM,3580
357
+ intentkit/skills/token/schema.json,sha256=giQEXhN_K6kERGGosJgKfi-p4Ild4F7bd7GO6M_MKMY,3543
358
358
  intentkit/skills/token/token_analytics.py,sha256=NRlLATnpvchEXg3_phX0Qg_lnQ3Szk4YnH9Qe-wD1wA,2537
359
359
  intentkit/skills/token/token_price.py,sha256=fTvfVtQA5N4QG22C66SzZUn_XlnpDVeojPedfz0crQc,4531
360
360
  intentkit/skills/token/token_search.py,sha256=blbtJ-0lQlhrjWLJHB8uMg5offJCbghuaTLRpm8vewE,4205
@@ -369,18 +369,18 @@ intentkit/skills/twitter/like_tweet.py,sha256=KWX4rh1s_Y9gx_JMCKt3ew7HsIQhRlVyPD
369
369
  intentkit/skills/twitter/post_tweet.py,sha256=UocAXACT5lm_VKI0Xn1Ok6qpOw4AvgMjj2dooD6cTUw,3712
370
370
  intentkit/skills/twitter/reply_tweet.py,sha256=TCnI9tW97L35S1c7SddzYxsUI0G8l03w7HkgX0EtmTI,3954
371
371
  intentkit/skills/twitter/retweet.py,sha256=vyQgFutLrLqjo43YDZrEW-uKsZMZ6gTrPf0MHCXttnU,2417
372
- intentkit/skills/twitter/schema.json,sha256=uSSl-dhOs_qrSoOlxFAsTbst0_POWPRZo9YAF_qhho8,6977
372
+ intentkit/skills/twitter/schema.json,sha256=W8TMug9kA8shKA_G7MafNxcHXp5OLSGeW654OO1tsPc,6985
373
373
  intentkit/skills/twitter/search_tweets.py,sha256=oR-dF3oIPDGjZKy1LN6ifG7GqJ9Ef5YYSuYlBalE9hY,3998
374
374
  intentkit/skills/twitter/twitter.png,sha256=MggF-4UC40K2mf1K0hqsIFzCmw-n_2yMSH50MjxvZso,23879
375
375
  intentkit/skills/unrealspeech/__init__.py,sha256=1A8084j67jltD4njAsCJVTP7IsPYxTghz2IbtuNS4O8,1588
376
376
  intentkit/skills/unrealspeech/base.py,sha256=YQ2SG_KdCW-c8ryQLUL2Mu5yUzKoLb1WymCGnpP6k1Y,1301
377
- intentkit/skills/unrealspeech/schema.json,sha256=9BpixY-SJ4bJP3ODAJpoloCjQaR1djFALqDtQisqpdY,2551
377
+ intentkit/skills/unrealspeech/schema.json,sha256=RjlBjdzWzyOZ9JCbWl9uJxEkLYilhA5dUJ51fo__bI4,2503
378
378
  intentkit/skills/unrealspeech/text_to_speech.py,sha256=QsCeOdPtlObQKCVNm6A9jKK55cm9C6FPfDjzj-t8iUQ,6108
379
379
  intentkit/skills/unrealspeech/unrealspeech.jpg,sha256=t-6RkYflJrL3Pvf5aA_VPAR_QlGyKUImXZBJLiyR3xY,8201
380
380
  intentkit/skills/venice_audio/__init__.py,sha256=E39CeSUHRoGV9IxNUtwo-nCp0Yfq5rvcrq1N61ygwGc,3309
381
381
  intentkit/skills/venice_audio/base.py,sha256=1oxHrmDXpBZbA7q2BqatlpuY-X3uwhK22T8QZjKmkqw,4845
382
382
  intentkit/skills/venice_audio/input.py,sha256=3pXfgkXuS4ezAVPJMY-XQwgd2Mas58BQnJph1Af8QkA,1893
383
- intentkit/skills/venice_audio/schema.json,sha256=g3cb9zJvinnRrilvNIAdG8qivgGyB7sHCEC8392MXhY,5268
383
+ intentkit/skills/venice_audio/schema.json,sha256=Y2AKE4unWqeFsu1_OJhnnnqHsAi3ItQH8a7NwlGuwgY,3890
384
384
  intentkit/skills/venice_audio/venice_audio.py,sha256=h03Lf3t58CRDq2U6Lb1Y_Hp8oZ-FBlp0fxUF-hpxPbE,11323
385
385
  intentkit/skills/venice_audio/venice_logo.jpg,sha256=XDnVdh3V8UuJjAeSmp4rbqhTKn0yjRI6M_6z1DSs8cA,13342
386
386
  intentkit/skills/venice_image/README.md,sha256=79NWUOaYWeFLOhR7m424pLIZ7VT0fhkxSBcohoy8Oh0,5017
@@ -388,7 +388,7 @@ intentkit/skills/venice_image/__init__.py,sha256=fPq9OS8er67cn3zyo9H_7iEj5cSUu7n
388
388
  intentkit/skills/venice_image/api.py,sha256=xSovK5lpq6uBUekraBIGBYCI-uzvJIFp7SEjQkyN-wE,5852
389
389
  intentkit/skills/venice_image/base.py,sha256=KLoVtiWyzVu48Y4Ab_hTFvgEDYeMmaVSmfqn7C6dIJc,7994
390
390
  intentkit/skills/venice_image/config.py,sha256=fBxCTKjDXloR6k06z6m1Nn9rmATC8UFZuK8oH7bhLWs,1343
391
- intentkit/skills/venice_image/schema.json,sha256=q-cu3M4oMxbg7cQGEOTzqDadhenazOBm60Y1dTJPk6g,8349
391
+ intentkit/skills/venice_image/schema.json,sha256=x4OQIJu5gsMv0avqLPS3XgvLRlKk4rtSeVPv0eazeos,8073
392
392
  intentkit/skills/venice_image/utils.py,sha256=Waql4lzeeU9l31Es0XVDGZ0v2XdM5o-uQ_uFD_mK994,2908
393
393
  intentkit/skills/venice_image/venice_image.jpg,sha256=XDnVdh3V8UuJjAeSmp4rbqhTKn0yjRI6M_6z1DSs8cA,13342
394
394
  intentkit/skills/venice_image/image_enhance/README.md,sha256=tb-b_37mW6aJ5aUX53g-BZ5LDLM4OufAU1eezuCtTw0,4657
@@ -422,23 +422,23 @@ intentkit/skills/web_scraper/__init__.py,sha256=K2ClnYXwQIHlEj2CmM3xSqO9tmUdXCta
422
422
  intentkit/skills/web_scraper/base.py,sha256=R3P1H8PaJ-xk3wpEAWGtDvPVxdRpCXeKoLGkqlm52NQ,604
423
423
  intentkit/skills/web_scraper/document_indexer.py,sha256=tdXFnFwn7LDNqrcEnsAGNaWNGm0exzpd6fTwsgKWT48,4708
424
424
  intentkit/skills/web_scraper/langchain.png,sha256=G_FHqaY0wmbJlqvcK_ndDcRfw42MDyGcdxwN7v4CsGE,9204
425
- intentkit/skills/web_scraper/schema.json,sha256=gSXihGJh8uG7b2Xbj8jZUYKP-_uMckB2n3Jx8NpZuZU,4514
425
+ intentkit/skills/web_scraper/schema.json,sha256=cB0y1iwQlJRPht0vXzcpqwl2CNhLA9s6vd1_fLeGsKY,4429
426
426
  intentkit/skills/web_scraper/scrape_and_index.py,sha256=Xi1BmUd-LgmJXnQOgSz82baq76vEKn4aa1X_JSlUXHI,9599
427
427
  intentkit/skills/web_scraper/utils.py,sha256=feGBTMWqpkoY7RFy2xDHVs5y8c2h8-XZ111jRo6cC3k,23349
428
428
  intentkit/skills/web_scraper/website_indexer.py,sha256=rTqCx-XzJtMlZnyGImPGWRdLpS13_exXc3lQu9EDjQM,17925
429
429
  intentkit/skills/weth/__init__.py,sha256=Bz8iPjOtTBjk8oGZJtQHwZESz0XRAMKST_gFnwz7fFM,1264
430
430
  intentkit/skills/weth/base.py,sha256=gRzTPrMX2E7N3EqAh11moyt-JEsrvTpEhUeAp5LLJiY,230
431
- intentkit/skills/weth/schema.json,sha256=Yu5q8BsAn92Ziipi8xIkXDJtykpbSmX0sgPmBvfT-dg,1387
431
+ intentkit/skills/weth/schema.json,sha256=5_0whEFjy8e8pnd6umTsC7DsScdPhxYF__kh4embc04,1395
432
432
  intentkit/skills/weth/weth.svg,sha256=WoHgvjDXJ2YR5o4PCv23Hdesi_IP155OekCNVZSJ-YE,382
433
433
  intentkit/skills/wow/__init__.py,sha256=RtK5EPF3S9MQWa5-TWIUgBLWhaK-Pq_RYrJrpkvS9Do,1347
434
434
  intentkit/skills/wow/base.py,sha256=nFt8sJtQQsu2_ZlRasXhyG148fSJYRL-20kEt380PaE,226
435
- intentkit/skills/wow/schema.json,sha256=xOX9UYckD2IeNYKIGMzTEpHRSOD3IHEoZYZGIhLQTU4,2296
435
+ intentkit/skills/wow/schema.json,sha256=lcBKtQx0tk8iexJzmrW--07reBToMDmAz1X3pemCZ6I,2292
436
436
  intentkit/skills/wow/wow.svg,sha256=PO0-m6TZjJCql9r1oWohlRV5PyqGc5kIDUEnpP2-5SU,427
437
437
  intentkit/skills/xmtp/README.md,sha256=7y3ny77l5WUI758Q3xip1akFEgBdbibkwZjeJDu5MwE,2963
438
438
  intentkit/skills/xmtp/__init__.py,sha256=inpuVqA9i98g8VIqqfC28PbfveozSukbEHOLbOMYv14,2538
439
439
  intentkit/skills/xmtp/base.py,sha256=iZHRzl4KJ1XFRKR_QnR7hYojSyEIB89S8MGoBVarLZY,2495
440
440
  intentkit/skills/xmtp/price.py,sha256=o-resXJVw9xVAOFGQi53ACiUCb1c7SrmQYR4WH23uwo,2832
441
- intentkit/skills/xmtp/schema.json,sha256=GFJKYPQVAcfiybL1uhAHANYeQUR0JWWxPgPhXW92N0s,3089
441
+ intentkit/skills/xmtp/schema.json,sha256=DDi_vK1WeoON96j10yTVlRPpjc-8stIG7dwdek2LyXU,2463
442
442
  intentkit/skills/xmtp/swap.py,sha256=h3y0cZT0PfoofRRuoYg-1l5iXz5DWza6ltGRFfQrkZQ,8453
443
443
  intentkit/skills/xmtp/transfer.py,sha256=43t1LG9B_8v5cbGH12F68JDsfd90a9_x2KUsJXnSMbE,7916
444
444
  intentkit/skills/xmtp/xmtp.png,sha256=vQzT-71zIb8aPodg-GkGSQbBnjGAPczWGm3es2ZkJe8,6681
@@ -450,7 +450,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
450
450
  intentkit/utils/s3.py,sha256=A8Nsx5QJyLsxhj9g7oHNy2-m24tjQUhC9URm8Qb1jFw,10057
451
451
  intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
452
452
  intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
453
- intentkit-0.7.5.dev20.dist-info/METADATA,sha256=ODEVYJqv4_tFXMrPyG1pMec3_fLUZQRFApN9uuoli8Q,6360
454
- intentkit-0.7.5.dev20.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
455
- intentkit-0.7.5.dev20.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
456
- intentkit-0.7.5.dev20.dist-info/RECORD,,
453
+ intentkit-0.7.5.dev21.dist-info/METADATA,sha256=w5x4Bsz3bOMKeRbWlsvCWpu9Tgiwdl953wwSjrd4YKI,6360
454
+ intentkit-0.7.5.dev21.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
455
+ intentkit-0.7.5.dev21.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
456
+ intentkit-0.7.5.dev21.dist-info/RECORD,,