xian-tech-intentkit 0.17.19__tar.gz

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.
Files changed (734) hide show
  1. xian_tech_intentkit-0.17.19/.gitignore +190 -0
  2. xian_tech_intentkit-0.17.19/LICENSE +21 -0
  3. xian_tech_intentkit-0.17.19/PKG-INFO +184 -0
  4. xian_tech_intentkit-0.17.19/app/team/intentkit/docker-compose.yml +97 -0
  5. xian_tech_intentkit-0.17.19/intentkit/.dockerignore +78 -0
  6. xian_tech_intentkit-0.17.19/intentkit/LICENSE +21 -0
  7. xian_tech_intentkit-0.17.19/intentkit/MANIFEST.in +14 -0
  8. xian_tech_intentkit-0.17.19/intentkit/README.md +88 -0
  9. xian_tech_intentkit-0.17.19/intentkit/__init__.py +19 -0
  10. xian_tech_intentkit-0.17.19/intentkit/abstracts/__init__.py +0 -0
  11. xian_tech_intentkit-0.17.19/intentkit/abstracts/agent.py +60 -0
  12. xian_tech_intentkit-0.17.19/intentkit/abstracts/api.py +4 -0
  13. xian_tech_intentkit-0.17.19/intentkit/abstracts/engine.py +38 -0
  14. xian_tech_intentkit-0.17.19/intentkit/abstracts/graph.py +51 -0
  15. xian_tech_intentkit-0.17.19/intentkit/abstracts/skill.py +60 -0
  16. xian_tech_intentkit-0.17.19/intentkit/abstracts/twitter.py +53 -0
  17. xian_tech_intentkit-0.17.19/intentkit/abstracts/wallet.py +161 -0
  18. xian_tech_intentkit-0.17.19/intentkit/clients/__init__.py +13 -0
  19. xian_tech_intentkit-0.17.19/intentkit/clients/mcp/__init__.py +1 -0
  20. xian_tech_intentkit-0.17.19/intentkit/clients/mcp/client.py +111 -0
  21. xian_tech_intentkit-0.17.19/intentkit/clients/mcp/registry.py +51 -0
  22. xian_tech_intentkit-0.17.19/intentkit/clients/mcp/tool.py +128 -0
  23. xian_tech_intentkit-0.17.19/intentkit/clients/mcp/wrapper.py +124 -0
  24. xian_tech_intentkit-0.17.19/intentkit/clients/moralis.py +57 -0
  25. xian_tech_intentkit-0.17.19/intentkit/clients/s3.py +375 -0
  26. xian_tech_intentkit-0.17.19/intentkit/clients/s3_setup.py +84 -0
  27. xian_tech_intentkit-0.17.19/intentkit/clients/supabase.py +121 -0
  28. xian_tech_intentkit-0.17.19/intentkit/clients/twitter.py +628 -0
  29. xian_tech_intentkit-0.17.19/intentkit/clients/web3_ens.py +125 -0
  30. xian_tech_intentkit-0.17.19/intentkit/config/__init__.py +0 -0
  31. xian_tech_intentkit-0.17.19/intentkit/config/base.py +9 -0
  32. xian_tech_intentkit-0.17.19/intentkit/config/config.py +352 -0
  33. xian_tech_intentkit-0.17.19/intentkit/config/db.py +226 -0
  34. xian_tech_intentkit-0.17.19/intentkit/config/db_mig.py +107 -0
  35. xian_tech_intentkit-0.17.19/intentkit/config/redis.py +138 -0
  36. xian_tech_intentkit-0.17.19/intentkit/core/__init__.py +0 -0
  37. xian_tech_intentkit-0.17.19/intentkit/core/account_checking.py +927 -0
  38. xian_tech_intentkit-0.17.19/intentkit/core/agent/__init__.py +32 -0
  39. xian_tech_intentkit-0.17.19/intentkit/core/agent/analytics.py +433 -0
  40. xian_tech_intentkit-0.17.19/intentkit/core/agent/constants.py +6 -0
  41. xian_tech_intentkit-0.17.19/intentkit/core/agent/management.py +343 -0
  42. xian_tech_intentkit-0.17.19/intentkit/core/agent/notifications.py +113 -0
  43. xian_tech_intentkit-0.17.19/intentkit/core/agent/public_info.py +65 -0
  44. xian_tech_intentkit-0.17.19/intentkit/core/agent/queries.py +100 -0
  45. xian_tech_intentkit-0.17.19/intentkit/core/agent/wallet.py +400 -0
  46. xian_tech_intentkit-0.17.19/intentkit/core/agent_activity.py +82 -0
  47. xian_tech_intentkit-0.17.19/intentkit/core/agent_post.py +112 -0
  48. xian_tech_intentkit-0.17.19/intentkit/core/api.py +196 -0
  49. xian_tech_intentkit-0.17.19/intentkit/core/asset.py +377 -0
  50. xian_tech_intentkit-0.17.19/intentkit/core/autonomous.py +293 -0
  51. xian_tech_intentkit-0.17.19/intentkit/core/avatar.py +280 -0
  52. xian_tech_intentkit-0.17.19/intentkit/core/budget.py +71 -0
  53. xian_tech_intentkit-0.17.19/intentkit/core/chat.py +69 -0
  54. xian_tech_intentkit-0.17.19/intentkit/core/cleanup.py +80 -0
  55. xian_tech_intentkit-0.17.19/intentkit/core/client.py +85 -0
  56. xian_tech_intentkit-0.17.19/intentkit/core/credit/__init__.py +85 -0
  57. xian_tech_intentkit-0.17.19/intentkit/core/credit/adjustment.py +183 -0
  58. xian_tech_intentkit-0.17.19/intentkit/core/credit/base.py +94 -0
  59. xian_tech_intentkit-0.17.19/intentkit/core/credit/expense.py +1187 -0
  60. xian_tech_intentkit-0.17.19/intentkit/core/credit/list_events.py +284 -0
  61. xian_tech_intentkit-0.17.19/intentkit/core/credit/plan_credit.py +184 -0
  62. xian_tech_intentkit-0.17.19/intentkit/core/credit/recharge.py +156 -0
  63. xian_tech_intentkit-0.17.19/intentkit/core/credit/refill.py +175 -0
  64. xian_tech_intentkit-0.17.19/intentkit/core/credit/reward.py +158 -0
  65. xian_tech_intentkit-0.17.19/intentkit/core/credit/withdraw.py +193 -0
  66. xian_tech_intentkit-0.17.19/intentkit/core/draft.py +202 -0
  67. xian_tech_intentkit-0.17.19/intentkit/core/draft_chat.py +121 -0
  68. xian_tech_intentkit-0.17.19/intentkit/core/engine.py +931 -0
  69. xian_tech_intentkit-0.17.19/intentkit/core/executor.py +333 -0
  70. xian_tech_intentkit-0.17.19/intentkit/core/lead/__init__.py +23 -0
  71. xian_tech_intentkit-0.17.19/intentkit/core/lead/cache.py +48 -0
  72. xian_tech_intentkit-0.17.19/intentkit/core/lead/engine.py +221 -0
  73. xian_tech_intentkit-0.17.19/intentkit/core/lead/service.py +77 -0
  74. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/__init__.py +65 -0
  75. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/add_autonomous_task.py +71 -0
  76. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/base.py +11 -0
  77. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/create_team_agent.py +161 -0
  78. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/delete_autonomous_task.py +58 -0
  79. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/edit_autonomous_task.py +75 -0
  80. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/get_team_agent.py +43 -0
  81. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/get_team_info.py +37 -0
  82. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/list_autonomous_tasks.py +48 -0
  83. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/list_team_agents.py +63 -0
  84. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/llm.py +37 -0
  85. xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/update_team_agent.py +181 -0
  86. xian_tech_intentkit-0.17.19/intentkit/core/manager/__init__.py +25 -0
  87. xian_tech_intentkit-0.17.19/intentkit/core/manager/engine.py +237 -0
  88. xian_tech_intentkit-0.17.19/intentkit/core/manager/service.py +184 -0
  89. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/__init__.py +57 -0
  90. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/add_autonomous_task.py +86 -0
  91. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/base.py +11 -0
  92. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/delete_autonomous_task.py +63 -0
  93. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/draft.py +94 -0
  94. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/edit_autonomous_task.py +87 -0
  95. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/list_autonomous_tasks.py +57 -0
  96. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/llm.py +35 -0
  97. xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/public_info.py +103 -0
  98. xian_tech_intentkit-0.17.19/intentkit/core/memory.py +78 -0
  99. xian_tech_intentkit-0.17.19/intentkit/core/middleware.py +118 -0
  100. xian_tech_intentkit-0.17.19/intentkit/core/prompt.py +448 -0
  101. xian_tech_intentkit-0.17.19/intentkit/core/public_agents.py +230 -0
  102. xian_tech_intentkit-0.17.19/intentkit/core/public_api.py +80 -0
  103. xian_tech_intentkit-0.17.19/intentkit/core/scheduler.py +158 -0
  104. xian_tech_intentkit-0.17.19/intentkit/core/statistics.py +169 -0
  105. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/__init__.py +85 -0
  106. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/base.py +53 -0
  107. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/call_agent.py +158 -0
  108. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/create_activity.py +104 -0
  109. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/create_post.py +146 -0
  110. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/current_time.py +78 -0
  111. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/get_post.py +54 -0
  112. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/read_webpage.py +184 -0
  113. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/recent_activities.py +58 -0
  114. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/recent_posts.py +53 -0
  115. xian_tech_intentkit-0.17.19/intentkit/core/system_skills/update_memory.py +54 -0
  116. xian_tech_intentkit-0.17.19/intentkit/core/task_registry.py +33 -0
  117. xian_tech_intentkit-0.17.19/intentkit/core/team/__init__.py +50 -0
  118. xian_tech_intentkit-0.17.19/intentkit/core/team/channel.py +164 -0
  119. xian_tech_intentkit-0.17.19/intentkit/core/team/feed.py +202 -0
  120. xian_tech_intentkit-0.17.19/intentkit/core/team/membership.py +470 -0
  121. xian_tech_intentkit-0.17.19/intentkit/core/team/subscription.py +90 -0
  122. xian_tech_intentkit-0.17.19/intentkit/core/template.py +199 -0
  123. xian_tech_intentkit-0.17.19/intentkit/core/user.py +220 -0
  124. xian_tech_intentkit-0.17.19/intentkit/core/xian_event_triggers.py +681 -0
  125. xian_tech_intentkit-0.17.19/intentkit/models/__init__.py +0 -0
  126. xian_tech_intentkit-0.17.19/intentkit/models/agent/__init__.py +34 -0
  127. xian_tech_intentkit-0.17.19/intentkit/models/agent/agent.py +414 -0
  128. xian_tech_intentkit-0.17.19/intentkit/models/agent/autonomous.py +490 -0
  129. xian_tech_intentkit-0.17.19/intentkit/models/agent/core.py +255 -0
  130. xian_tech_intentkit-0.17.19/intentkit/models/agent/db.py +357 -0
  131. xian_tech_intentkit-0.17.19/intentkit/models/agent/public.json +98 -0
  132. xian_tech_intentkit-0.17.19/intentkit/models/agent/public_info.py +162 -0
  133. xian_tech_intentkit-0.17.19/intentkit/models/agent/response.py +391 -0
  134. xian_tech_intentkit-0.17.19/intentkit/models/agent/schema.json +527 -0
  135. xian_tech_intentkit-0.17.19/intentkit/models/agent/user_input.py +348 -0
  136. xian_tech_intentkit-0.17.19/intentkit/models/agent_activity.py +83 -0
  137. xian_tech_intentkit-0.17.19/intentkit/models/agent_data.py +777 -0
  138. xian_tech_intentkit-0.17.19/intentkit/models/agent_post.py +277 -0
  139. xian_tech_intentkit-0.17.19/intentkit/models/app_setting.py +241 -0
  140. xian_tech_intentkit-0.17.19/intentkit/models/chat.py +698 -0
  141. xian_tech_intentkit-0.17.19/intentkit/models/credit/__init__.py +82 -0
  142. xian_tech_intentkit-0.17.19/intentkit/models/credit/account.py +861 -0
  143. xian_tech_intentkit-0.17.19/intentkit/models/credit/base.py +40 -0
  144. xian_tech_intentkit-0.17.19/intentkit/models/credit/event.py +543 -0
  145. xian_tech_intentkit-0.17.19/intentkit/models/credit/price.py +205 -0
  146. xian_tech_intentkit-0.17.19/intentkit/models/credit/transaction.py +176 -0
  147. xian_tech_intentkit-0.17.19/intentkit/models/draft.py +223 -0
  148. xian_tech_intentkit-0.17.19/intentkit/models/llm.csv +40 -0
  149. xian_tech_intentkit-0.17.19/intentkit/models/llm.py +1002 -0
  150. xian_tech_intentkit-0.17.19/intentkit/models/llm_picker.py +97 -0
  151. xian_tech_intentkit-0.17.19/intentkit/models/skill.py +357 -0
  152. xian_tech_intentkit-0.17.19/intentkit/models/team.py +368 -0
  153. xian_tech_intentkit-0.17.19/intentkit/models/team_channel.py +223 -0
  154. xian_tech_intentkit-0.17.19/intentkit/models/team_feed.py +64 -0
  155. xian_tech_intentkit-0.17.19/intentkit/models/template.py +216 -0
  156. xian_tech_intentkit-0.17.19/intentkit/models/user.py +523 -0
  157. xian_tech_intentkit-0.17.19/intentkit/models/user_data.py +155 -0
  158. xian_tech_intentkit-0.17.19/intentkit/models/x402_order.py +201 -0
  159. xian_tech_intentkit-0.17.19/intentkit/skills/__init__.py +12 -0
  160. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/__init__.py +83 -0
  161. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/aave_v3.svg +4 -0
  162. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/base.py +31 -0
  163. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/borrow.py +105 -0
  164. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/constants.py +188 -0
  165. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/get_reserve_data.py +126 -0
  166. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/get_user_account_data.py +83 -0
  167. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/repay.py +117 -0
  168. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/schema.json +150 -0
  169. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/set_collateral.py +84 -0
  170. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/supply.py +95 -0
  171. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/utils.py +114 -0
  172. xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/withdraw.py +96 -0
  173. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/__init__.py +73 -0
  174. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/add_liquidity.py +332 -0
  175. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/aerodrome.svg +20 -0
  176. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/base.py +7 -0
  177. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/constants.py +334 -0
  178. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/get_positions.py +167 -0
  179. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/quote.py +124 -0
  180. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/remove_liquidity.py +220 -0
  181. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/schema.json +116 -0
  182. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/swap.py +186 -0
  183. xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/utils.py +94 -0
  184. xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/README.md +71 -0
  185. xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/__init__.py +65 -0
  186. xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/aixbt.jpg +0 -0
  187. xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/base.py +17 -0
  188. xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/projects.py +101 -0
  189. xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/schema.json +57 -0
  190. xian_tech_intentkit-0.17.19/intentkit/skills/allora/__init__.py +81 -0
  191. xian_tech_intentkit-0.17.19/intentkit/skills/allora/allora.jpeg +0 -0
  192. xian_tech_intentkit-0.17.19/intentkit/skills/allora/base.py +17 -0
  193. xian_tech_intentkit-0.17.19/intentkit/skills/allora/price.py +107 -0
  194. xian_tech_intentkit-0.17.19/intentkit/skills/allora/schema.json +46 -0
  195. xian_tech_intentkit-0.17.19/intentkit/skills/base.py +345 -0
  196. xian_tech_intentkit-0.17.19/intentkit/skills/basename/__init__.py +74 -0
  197. xian_tech_intentkit-0.17.19/intentkit/skills/basename/base.py +9 -0
  198. xian_tech_intentkit-0.17.19/intentkit/skills/basename/basename.svg +11 -0
  199. xian_tech_intentkit-0.17.19/intentkit/skills/basename/constants.py +65 -0
  200. xian_tech_intentkit-0.17.19/intentkit/skills/basename/register.py +158 -0
  201. xian_tech_intentkit-0.17.19/intentkit/skills/basename/schema.json +46 -0
  202. xian_tech_intentkit-0.17.19/intentkit/skills/carv/README.md +95 -0
  203. xian_tech_intentkit-0.17.19/intentkit/skills/carv/__init__.py +117 -0
  204. xian_tech_intentkit-0.17.19/intentkit/skills/carv/base.py +109 -0
  205. xian_tech_intentkit-0.17.19/intentkit/skills/carv/carv.webp +0 -0
  206. xian_tech_intentkit-0.17.19/intentkit/skills/carv/fetch_news.py +64 -0
  207. xian_tech_intentkit-0.17.19/intentkit/skills/carv/onchain_query.py +130 -0
  208. xian_tech_intentkit-0.17.19/intentkit/skills/carv/schema.json +88 -0
  209. xian_tech_intentkit-0.17.19/intentkit/skills/carv/token_info_and_price.py +90 -0
  210. xian_tech_intentkit-0.17.19/intentkit/skills/casino/README.md +254 -0
  211. xian_tech_intentkit-0.17.19/intentkit/skills/casino/__init__.py +85 -0
  212. xian_tech_intentkit-0.17.19/intentkit/skills/casino/base.py +9 -0
  213. xian_tech_intentkit-0.17.19/intentkit/skills/casino/casino.png +0 -0
  214. xian_tech_intentkit-0.17.19/intentkit/skills/casino/deck_draw.py +127 -0
  215. xian_tech_intentkit-0.17.19/intentkit/skills/casino/deck_shuffle.py +113 -0
  216. xian_tech_intentkit-0.17.19/intentkit/skills/casino/dice_roll.py +105 -0
  217. xian_tech_intentkit-0.17.19/intentkit/skills/casino/schema.json +77 -0
  218. xian_tech_intentkit-0.17.19/intentkit/skills/casino/utils.py +109 -0
  219. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/__init__.py +68 -0
  220. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/base.py +24 -0
  221. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/cdp.png +0 -0
  222. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/get_balance.py +73 -0
  223. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/get_wallet_details.py +90 -0
  224. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/native_transfer.py +102 -0
  225. xian_tech_intentkit-0.17.19/intentkit/skills/cdp/schema.json +78 -0
  226. xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/README.md +38 -0
  227. xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/__init__.py +58 -0
  228. xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/base.py +7 -0
  229. xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/chain_lookup.py +205 -0
  230. xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/chainlist.png +0 -0
  231. xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/schema.json +45 -0
  232. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/README.md +121 -0
  233. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/__init__.py +80 -0
  234. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/base.py +19 -0
  235. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/constants.py +18 -0
  236. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/cookiefun.png +0 -0
  237. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_account_details.py +169 -0
  238. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_account_feed.py +260 -0
  239. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_account_smart_followers.py +181 -0
  240. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_sectors.py +135 -0
  241. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/schema.json +111 -0
  242. xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/search_accounts.py +223 -0
  243. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/__init__.py +118 -0
  244. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/api.py +156 -0
  245. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/base.py +294 -0
  246. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/cryptocompare.png +0 -0
  247. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_news.py +84 -0
  248. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_price.py +86 -0
  249. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_top_exchanges.py +96 -0
  250. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_top_market_cap.py +95 -0
  251. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_top_volume.py +96 -0
  252. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_trading_signals.py +97 -0
  253. xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/schema.json +126 -0
  254. xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/__init__.py +110 -0
  255. xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/base.py +26 -0
  256. xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/cryptopanic.png +0 -0
  257. xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/fetch_crypto_news.py +144 -0
  258. xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/fetch_crypto_sentiment.py +113 -0
  259. xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/schema.json +63 -0
  260. xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/README.md +92 -0
  261. xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/__init__.py +81 -0
  262. xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/base.py +15 -0
  263. xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/dapplooker.jpg +0 -0
  264. xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/dapplooker_token_data.py +475 -0
  265. xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/schema.json +46 -0
  266. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/__init__.py +278 -0
  267. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/api.py +207 -0
  268. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/base.py +83 -0
  269. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/__init__.py +0 -0
  270. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_batch_historical_prices.py +91 -0
  271. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_block.py +84 -0
  272. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_current_prices.py +81 -0
  273. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_first_price.py +77 -0
  274. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_historical_prices.py +85 -0
  275. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_price_chart.py +85 -0
  276. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_price_percentage.py +69 -0
  277. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/config/__init__.py +0 -0
  278. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/config/chains.py +431 -0
  279. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/defillama.jpeg +0 -0
  280. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/fees/__init__.py +0 -0
  281. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/fees/fetch_fees_overview.py +106 -0
  282. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/schema.json +375 -0
  283. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/__init__.py +0 -0
  284. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoin_chains.py +86 -0
  285. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoin_charts.py +98 -0
  286. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoin_prices.py +67 -0
  287. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoins.py +94 -0
  288. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tests/__init__.py +0 -0
  289. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tests/api_integration.test.py +192 -0
  290. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tests/api_unit.test.py +583 -0
  291. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/__init__.py +0 -0
  292. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_chain_historical_tvl.py +85 -0
  293. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_chains.py +84 -0
  294. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_historical_tvl.py +79 -0
  295. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_protocol.py +164 -0
  296. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_protocol_current_tvl.py +70 -0
  297. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_protocols.py +146 -0
  298. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/__init__.py +0 -0
  299. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/fetch_dex_overview.py +138 -0
  300. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/fetch_dex_summary.py +107 -0
  301. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/fetch_options_overview.py +107 -0
  302. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/yields/__init__.py +0 -0
  303. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/yields/fetch_pool_chart.py +81 -0
  304. xian_tech_intentkit-0.17.19/intentkit/skills/defillama/yields/fetch_pools.py +102 -0
  305. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/README.md +154 -0
  306. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/__init__.py +102 -0
  307. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/base.py +125 -0
  308. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/dexscreener.png +0 -0
  309. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/get_pair_info.py +159 -0
  310. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/get_token_pairs.py +165 -0
  311. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/get_tokens_info.py +211 -0
  312. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/model/__init__.py +0 -0
  313. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/model/search_token_response.py +80 -0
  314. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/schema.json +91 -0
  315. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/search_token.py +178 -0
  316. xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/utils.py +418 -0
  317. xian_tech_intentkit-0.17.19/intentkit/skills/dune/__init__.py +75 -0
  318. xian_tech_intentkit-0.17.19/intentkit/skills/dune/base.py +166 -0
  319. xian_tech_intentkit-0.17.19/intentkit/skills/dune/dune.png +0 -0
  320. xian_tech_intentkit-0.17.19/intentkit/skills/dune/execute_query.py +74 -0
  321. xian_tech_intentkit-0.17.19/intentkit/skills/dune/get_query_results.py +57 -0
  322. xian_tech_intentkit-0.17.19/intentkit/skills/dune/run_sql.py +74 -0
  323. xian_tech_intentkit-0.17.19/intentkit/skills/dune/schema.json +78 -0
  324. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/README.md +152 -0
  325. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/__init__.py +106 -0
  326. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/base.py +17 -0
  327. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/elfa.jpg +0 -0
  328. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/mention.py +205 -0
  329. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/schema.json +95 -0
  330. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/stats.py +82 -0
  331. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/tokens.py +116 -0
  332. xian_tech_intentkit-0.17.19/intentkit/skills/elfa/utils.py +125 -0
  333. xian_tech_intentkit-0.17.19/intentkit/skills/enso/README.md +75 -0
  334. xian_tech_intentkit-0.17.19/intentkit/skills/enso/__init__.py +100 -0
  335. xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/__init__.py +0 -0
  336. xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/approval.py +279 -0
  337. xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/erc20.py +14 -0
  338. xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/route.py +129 -0
  339. xian_tech_intentkit-0.17.19/intentkit/skills/enso/base.py +99 -0
  340. xian_tech_intentkit-0.17.19/intentkit/skills/enso/best_yield.py +271 -0
  341. xian_tech_intentkit-0.17.19/intentkit/skills/enso/enso.jpg +0 -0
  342. xian_tech_intentkit-0.17.19/intentkit/skills/enso/networks.py +93 -0
  343. xian_tech_intentkit-0.17.19/intentkit/skills/enso/prices.py +88 -0
  344. xian_tech_intentkit-0.17.19/intentkit/skills/enso/route.py +285 -0
  345. xian_tech_intentkit-0.17.19/intentkit/skills/enso/schema.json +171 -0
  346. xian_tech_intentkit-0.17.19/intentkit/skills/enso/tokens.py +199 -0
  347. xian_tech_intentkit-0.17.19/intentkit/skills/enso/wallet.py +251 -0
  348. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/__init__.py +65 -0
  349. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/base.py +15 -0
  350. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/constants.py +185 -0
  351. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/erc20.svg +5 -0
  352. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/get_balance.py +75 -0
  353. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/get_token_address.py +80 -0
  354. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/schema.json +78 -0
  355. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/transfer.py +123 -0
  356. xian_tech_intentkit-0.17.19/intentkit/skills/erc20/utils.py +204 -0
  357. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/__init__.py +65 -0
  358. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/base.py +15 -0
  359. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/constants.py +221 -0
  360. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/erc721.svg +5 -0
  361. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/get_balance.py +74 -0
  362. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/mint.py +93 -0
  363. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/schema.json +78 -0
  364. xian_tech_intentkit-0.17.19/intentkit/skills/erc721/transfer.py +90 -0
  365. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/README.md +217 -0
  366. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/__init__.py +89 -0
  367. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/base.py +15 -0
  368. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/clear.py +79 -0
  369. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/crawl.py +402 -0
  370. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/firecrawl.png +0 -0
  371. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/query.py +111 -0
  372. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/schema.json +109 -0
  373. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/scrape.py +422 -0
  374. xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/utils.py +315 -0
  375. xian_tech_intentkit-0.17.19/intentkit/skills/github/README.md +63 -0
  376. xian_tech_intentkit-0.17.19/intentkit/skills/github/__init__.py +58 -0
  377. xian_tech_intentkit-0.17.19/intentkit/skills/github/base.py +7 -0
  378. xian_tech_intentkit-0.17.19/intentkit/skills/github/github.jpg +0 -0
  379. xian_tech_intentkit-0.17.19/intentkit/skills/github/github_search.py +181 -0
  380. xian_tech_intentkit-0.17.19/intentkit/skills/github/schema.json +46 -0
  381. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/__init__.py +129 -0
  382. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/base.py +20 -0
  383. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/heurist.png +0 -0
  384. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_animagine_xl.py +151 -0
  385. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_arthemy_comics.py +151 -0
  386. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_arthemy_real.py +151 -0
  387. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_braindance.py +151 -0
  388. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_cyber_realistic_xl.py +151 -0
  389. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_flux_1_dev.py +150 -0
  390. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_sdxl.py +150 -0
  391. xian_tech_intentkit-0.17.19/intentkit/skills/heurist/schema.json +152 -0
  392. xian_tech_intentkit-0.17.19/intentkit/skills/http/README.md +78 -0
  393. xian_tech_intentkit-0.17.19/intentkit/skills/http/__init__.py +94 -0
  394. xian_tech_intentkit-0.17.19/intentkit/skills/http/base.py +68 -0
  395. xian_tech_intentkit-0.17.19/intentkit/skills/http/get.py +97 -0
  396. xian_tech_intentkit-0.17.19/intentkit/skills/http/http.svg +15 -0
  397. xian_tech_intentkit-0.17.19/intentkit/skills/http/post.py +113 -0
  398. xian_tech_intentkit-0.17.19/intentkit/skills/http/put.py +113 -0
  399. xian_tech_intentkit-0.17.19/intentkit/skills/http/schema.json +79 -0
  400. xian_tech_intentkit-0.17.19/intentkit/skills/image/__init__.py +104 -0
  401. xian_tech_intentkit-0.17.19/intentkit/skills/image/base.py +202 -0
  402. xian_tech_intentkit-0.17.19/intentkit/skills/image/gemini.py +83 -0
  403. xian_tech_intentkit-0.17.19/intentkit/skills/image/gpt.py +85 -0
  404. xian_tech_intentkit-0.17.19/intentkit/skills/image/grok.py +75 -0
  405. xian_tech_intentkit-0.17.19/intentkit/skills/image/image.svg +17 -0
  406. xian_tech_intentkit-0.17.19/intentkit/skills/image/minimax.py +93 -0
  407. xian_tech_intentkit-0.17.19/intentkit/skills/image/openrouter.py +40 -0
  408. xian_tech_intentkit-0.17.19/intentkit/skills/image/schema.json +132 -0
  409. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/README.md +92 -0
  410. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/__init__.py +28 -0
  411. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/base.py +75 -0
  412. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/jupiter.png +0 -0
  413. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/price.py +103 -0
  414. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/schema.json +70 -0
  415. xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/swap.py +76 -0
  416. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/README.md +294 -0
  417. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/__init__.py +140 -0
  418. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/base.py +7 -0
  419. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/lifi.png +0 -0
  420. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/schema.json +98 -0
  421. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/token_execute.py +566 -0
  422. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/token_quote.py +192 -0
  423. xian_tech_intentkit-0.17.19/intentkit/skills/lifi/utils.py +715 -0
  424. xian_tech_intentkit-0.17.19/intentkit/skills/mcp_coingecko/__init__.py +9 -0
  425. xian_tech_intentkit-0.17.19/intentkit/skills/mcp_coingecko/coingecko.svg +16 -0
  426. xian_tech_intentkit-0.17.19/intentkit/skills/mcp_coingecko/schema.json +835 -0
  427. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/README.md +490 -0
  428. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/__init__.py +100 -0
  429. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/api.py +295 -0
  430. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/base.py +48 -0
  431. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_chain_portfolio.py +189 -0
  432. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_nft_portfolio.py +282 -0
  433. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_solana_portfolio.py +321 -0
  434. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_wallet_portfolio.py +309 -0
  435. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/moralis.png +0 -0
  436. xian_tech_intentkit-0.17.19/intentkit/skills/moralis/schema.json +121 -0
  437. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/__init__.py +80 -0
  438. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/base.py +70 -0
  439. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/borrow.py +99 -0
  440. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/constants.py +207 -0
  441. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/deposit.py +101 -0
  442. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/get_position.py +138 -0
  443. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/get_vault_data.py +85 -0
  444. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/morpho.svg +12 -0
  445. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/repay.py +128 -0
  446. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/schema.json +157 -0
  447. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/supply_collateral.py +113 -0
  448. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/withdraw.py +89 -0
  449. xian_tech_intentkit-0.17.19/intentkit/skills/morpho/withdraw_collateral.py +101 -0
  450. xian_tech_intentkit-0.17.19/intentkit/skills/onchain.py +220 -0
  451. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/__init__.py +110 -0
  452. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/base.py +175 -0
  453. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/buy_nft.py +110 -0
  454. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/cancel_listing.py +67 -0
  455. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/constants.py +188 -0
  456. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/create_listing.py +107 -0
  457. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_collection.py +39 -0
  458. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_collection_stats.py +37 -0
  459. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_events.py +63 -0
  460. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_listings.py +52 -0
  461. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_nft.py +48 -0
  462. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_nfts_by_account.py +67 -0
  463. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_offers.py +51 -0
  464. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/onchain_base.py +180 -0
  465. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/opensea.svg +5 -0
  466. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/schema.json +195 -0
  467. xian_tech_intentkit-0.17.19/intentkit/skills/opensea/update_listing.py +126 -0
  468. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/__init__.py +73 -0
  469. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/add_liquidity.py +319 -0
  470. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/base.py +7 -0
  471. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/constants.py +333 -0
  472. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/get_positions.py +166 -0
  473. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/pancakeswap.png +0 -0
  474. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/quote.py +137 -0
  475. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/remove_liquidity.py +217 -0
  476. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/schema.json +116 -0
  477. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/swap.py +195 -0
  478. xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/utils.py +102 -0
  479. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/__init__.py +108 -0
  480. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/base.py +436 -0
  481. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/cancel_order.py +73 -0
  482. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_market.py +121 -0
  483. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_orderbook.py +72 -0
  484. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_orders.py +82 -0
  485. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_positions.py +82 -0
  486. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_price_history.py +108 -0
  487. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_trades.py +87 -0
  488. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/place_order.py +109 -0
  489. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/polymarket.png +0 -0
  490. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/schema.json +94 -0
  491. xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/search_markets.py +111 -0
  492. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/README.md +55 -0
  493. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/__init__.py +132 -0
  494. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/base.py +102 -0
  495. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/constants.py +9 -0
  496. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/moralis.png +0 -0
  497. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/schema.json +191 -0
  498. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/token_balances.py +151 -0
  499. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_approvals.py +96 -0
  500. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_defi_positions.py +77 -0
  501. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_history.py +148 -0
  502. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_net_worth.py +108 -0
  503. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_nfts.py +135 -0
  504. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_profitability.py +94 -0
  505. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_profitability_summary.py +85 -0
  506. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_stats.py +75 -0
  507. xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_swaps.py +143 -0
  508. xian_tech_intentkit-0.17.19/intentkit/skills/pyth/__init__.py +62 -0
  509. xian_tech_intentkit-0.17.19/intentkit/skills/pyth/base.py +13 -0
  510. xian_tech_intentkit-0.17.19/intentkit/skills/pyth/fetch_price.py +99 -0
  511. xian_tech_intentkit-0.17.19/intentkit/skills/pyth/fetch_price_feed.py +127 -0
  512. xian_tech_intentkit-0.17.19/intentkit/skills/pyth/pyth.svg +6 -0
  513. xian_tech_intentkit-0.17.19/intentkit/skills/pyth/schema.json +63 -0
  514. xian_tech_intentkit-0.17.19/intentkit/skills/slack/__init__.py +91 -0
  515. xian_tech_intentkit-0.17.19/intentkit/skills/slack/base.py +52 -0
  516. xian_tech_intentkit-0.17.19/intentkit/skills/slack/get_channel.py +122 -0
  517. xian_tech_intentkit-0.17.19/intentkit/skills/slack/get_message.py +133 -0
  518. xian_tech_intentkit-0.17.19/intentkit/skills/slack/schedule_message.py +92 -0
  519. xian_tech_intentkit-0.17.19/intentkit/skills/slack/schema.json +112 -0
  520. xian_tech_intentkit-0.17.19/intentkit/skills/slack/send_message.py +76 -0
  521. xian_tech_intentkit-0.17.19/intentkit/skills/slack/slack.jpg +0 -0
  522. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/__init__.py +106 -0
  523. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/base.py +152 -0
  524. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/delete_data.py +70 -0
  525. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/fetch_data.py +84 -0
  526. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/insert_data.py +64 -0
  527. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/invoke_function.py +68 -0
  528. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/schema.json +163 -0
  529. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/supabase.svg +15 -0
  530. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/update_data.py +69 -0
  531. xian_tech_intentkit-0.17.19/intentkit/skills/supabase/upsert_data.py +67 -0
  532. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/__init__.py +65 -0
  533. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/base.py +16 -0
  534. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/constants.py +63 -0
  535. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/create_flow.py +94 -0
  536. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/delete_flow.py +90 -0
  537. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/schema.json +77 -0
  538. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/superfluid.svg +6 -0
  539. xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/update_flow.py +93 -0
  540. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/README.md +86 -0
  541. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/__init__.py +87 -0
  542. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/base.py +15 -0
  543. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/schema.json +73 -0
  544. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/tavily.jpg +0 -0
  545. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/tavily_extract.py +145 -0
  546. xian_tech_intentkit-0.17.19/intentkit/skills/tavily/tavily_search.py +137 -0
  547. xian_tech_intentkit-0.17.19/intentkit/skills/telegram/__init__.py +58 -0
  548. xian_tech_intentkit-0.17.19/intentkit/skills/telegram/base.py +40 -0
  549. xian_tech_intentkit-0.17.19/intentkit/skills/telegram/schema.json +60 -0
  550. xian_tech_intentkit-0.17.19/intentkit/skills/telegram/send_message.py +85 -0
  551. xian_tech_intentkit-0.17.19/intentkit/skills/token/README.md +89 -0
  552. xian_tech_intentkit-0.17.19/intentkit/skills/token/__init__.py +107 -0
  553. xian_tech_intentkit-0.17.19/intentkit/skills/token/base.py +102 -0
  554. xian_tech_intentkit-0.17.19/intentkit/skills/token/constants.py +9 -0
  555. xian_tech_intentkit-0.17.19/intentkit/skills/token/erc20_transfers.py +139 -0
  556. xian_tech_intentkit-0.17.19/intentkit/skills/token/moralis.png +0 -0
  557. xian_tech_intentkit-0.17.19/intentkit/skills/token/schema.json +94 -0
  558. xian_tech_intentkit-0.17.19/intentkit/skills/token/token_analytics.py +79 -0
  559. xian_tech_intentkit-0.17.19/intentkit/skills/token/token_price.py +126 -0
  560. xian_tech_intentkit-0.17.19/intentkit/skills/token/token_search.py +116 -0
  561. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/__init__.py +133 -0
  562. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/base.py +43 -0
  563. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/follow_user.py +60 -0
  564. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_mentions.py +111 -0
  565. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_timeline.py +100 -0
  566. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_user_by_username.py +72 -0
  567. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_user_tweets.py +112 -0
  568. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/like_tweet.py +59 -0
  569. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/post_tweet.py +114 -0
  570. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/reply_tweet.py +105 -0
  571. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/retweet.py +68 -0
  572. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/schema.json +269 -0
  573. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/search_tweets.py +110 -0
  574. xian_tech_intentkit-0.17.19/intentkit/skills/twitter/twitter.png +0 -0
  575. xian_tech_intentkit-0.17.19/intentkit/skills/ui/__init__.py +86 -0
  576. xian_tech_intentkit-0.17.19/intentkit/skills/ui/ask_user.py +63 -0
  577. xian_tech_intentkit-0.17.19/intentkit/skills/ui/base.py +12 -0
  578. xian_tech_intentkit-0.17.19/intentkit/skills/ui/schema.json +62 -0
  579. xian_tech_intentkit-0.17.19/intentkit/skills/ui/show_card.py +61 -0
  580. xian_tech_intentkit-0.17.19/intentkit/skills/ui/ui.svg +14 -0
  581. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/__init__.py +73 -0
  582. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/add_liquidity.py +272 -0
  583. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/base.py +7 -0
  584. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/constants.py +296 -0
  585. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/get_positions.py +124 -0
  586. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/quote.py +133 -0
  587. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/remove_liquidity.py +156 -0
  588. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/schema.json +116 -0
  589. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/swap.py +192 -0
  590. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/uniswap.svg +4 -0
  591. xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/utils.py +98 -0
  592. xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/__init__.py +59 -0
  593. xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/base.py +15 -0
  594. xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/schema.json +55 -0
  595. xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/text_to_speech.py +156 -0
  596. xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/unrealspeech.jpg +0 -0
  597. xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/__init__.py +102 -0
  598. xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/base.py +47 -0
  599. xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/input.py +36 -0
  600. xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/schema.json +105 -0
  601. xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/venice_audio.py +256 -0
  602. xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/venice_logo.jpg +0 -0
  603. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/README.md +119 -0
  604. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/__init__.py +148 -0
  605. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/api.py +140 -0
  606. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/base.py +75 -0
  607. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/config.py +29 -0
  608. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/README.md +119 -0
  609. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/__init__.py +0 -0
  610. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/image_enhance.py +78 -0
  611. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/image_enhance_base.py +24 -0
  612. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/image_enhance_input.py +38 -0
  613. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/README.md +144 -0
  614. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/__init__.py +0 -0
  615. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_base.py +122 -0
  616. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_fluently_xl.py +29 -0
  617. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_flux_dev.py +30 -0
  618. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_flux_dev_uncensored.py +29 -0
  619. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_input.py +162 -0
  620. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_lustify_sdxl.py +29 -0
  621. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_pony_realism.py +29 -0
  622. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_stable_diffusion_3_5.py +31 -0
  623. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_venice_sd35.py +31 -0
  624. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/README.md +111 -0
  625. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/__init__.py +0 -0
  626. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/image_upscale.py +88 -0
  627. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/image_upscale_base.py +24 -0
  628. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/image_upscale_input.py +22 -0
  629. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/README.md +112 -0
  630. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/__init__.py +0 -0
  631. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/image_vision.py +99 -0
  632. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/image_vision_base.py +19 -0
  633. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/image_vision_input.py +9 -0
  634. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/schema.json +225 -0
  635. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/utils.py +77 -0
  636. xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/venice_image.jpg +0 -0
  637. xian_tech_intentkit-0.17.19/intentkit/skills/video/__init__.py +96 -0
  638. xian_tech_intentkit-0.17.19/intentkit/skills/video/base.py +122 -0
  639. xian_tech_intentkit-0.17.19/intentkit/skills/video/gemini.py +107 -0
  640. xian_tech_intentkit-0.17.19/intentkit/skills/video/gpt.py +125 -0
  641. xian_tech_intentkit-0.17.19/intentkit/skills/video/grok.py +122 -0
  642. xian_tech_intentkit-0.17.19/intentkit/skills/video/minimax.py +146 -0
  643. xian_tech_intentkit-0.17.19/intentkit/skills/video/schema.json +75 -0
  644. xian_tech_intentkit-0.17.19/intentkit/skills/video/video.svg +27 -0
  645. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/README.md +113 -0
  646. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/__init__.py +101 -0
  647. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/base.py +16 -0
  648. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/document_indexer.py +147 -0
  649. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/langchain.png +0 -0
  650. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/schema.json +127 -0
  651. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/scrape_and_index.py +271 -0
  652. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/utils.py +710 -0
  653. xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/website_indexer.py +456 -0
  654. xian_tech_intentkit-0.17.19/intentkit/skills/weth/__init__.py +62 -0
  655. xian_tech_intentkit-0.17.19/intentkit/skills/weth/base.py +15 -0
  656. xian_tech_intentkit-0.17.19/intentkit/skills/weth/constants.py +60 -0
  657. xian_tech_intentkit-0.17.19/intentkit/skills/weth/schema.json +62 -0
  658. xian_tech_intentkit-0.17.19/intentkit/skills/weth/unwrap_eth.py +99 -0
  659. xian_tech_intentkit-0.17.19/intentkit/skills/weth/weth.svg +6 -0
  660. xian_tech_intentkit-0.17.19/intentkit/skills/weth/wrap_eth.py +95 -0
  661. xian_tech_intentkit-0.17.19/intentkit/skills/x402/__init__.py +72 -0
  662. xian_tech_intentkit-0.17.19/intentkit/skills/x402/base.py +647 -0
  663. xian_tech_intentkit-0.17.19/intentkit/skills/x402/check_price.py +256 -0
  664. xian_tech_intentkit-0.17.19/intentkit/skills/x402/get_orders.py +95 -0
  665. xian_tech_intentkit-0.17.19/intentkit/skills/x402/http_request.py +143 -0
  666. xian_tech_intentkit-0.17.19/intentkit/skills/x402/httpx_compat.py +314 -0
  667. xian_tech_intentkit-0.17.19/intentkit/skills/x402/pay.py +175 -0
  668. xian_tech_intentkit-0.17.19/intentkit/skills/x402/schema.json +88 -0
  669. xian_tech_intentkit-0.17.19/intentkit/skills/x402/x402.webp +0 -0
  670. xian_tech_intentkit-0.17.19/intentkit/skills/xian/README.md +237 -0
  671. xian_tech_intentkit-0.17.19/intentkit/skills/xian/__init__.py +85 -0
  672. xian_tech_intentkit-0.17.19/intentkit/skills/xian/approve_tokens.py +62 -0
  673. xian_tech_intentkit-0.17.19/intentkit/skills/xian/base.py +49 -0
  674. xian_tech_intentkit-0.17.19/intentkit/skills/xian/call_contract.py +46 -0
  675. xian_tech_intentkit-0.17.19/intentkit/skills/xian/dex_common.py +220 -0
  676. xian_tech_intentkit-0.17.19/intentkit/skills/xian/dex_quote.py +91 -0
  677. xian_tech_intentkit-0.17.19/intentkit/skills/xian/dex_trade.py +182 -0
  678. xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_allowance.py +54 -0
  679. xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_chain_status.py +43 -0
  680. xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_events_for_tx.py +41 -0
  681. xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_token_balance.py +52 -0
  682. xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_transaction.py +39 -0
  683. xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_wallet_details.py +37 -0
  684. xian_tech_intentkit-0.17.19/intentkit/skills/xian/list_events.py +59 -0
  685. xian_tech_intentkit-0.17.19/intentkit/skills/xian/read_contract_state.py +47 -0
  686. xian_tech_intentkit-0.17.19/intentkit/skills/xian/schema.json +124 -0
  687. xian_tech_intentkit-0.17.19/intentkit/skills/xian/send_contract_transaction.py +75 -0
  688. xian_tech_intentkit-0.17.19/intentkit/skills/xian/transfer_tokens.py +66 -0
  689. xian_tech_intentkit-0.17.19/intentkit/skills/xian/utils.py +75 -0
  690. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/README.md +110 -0
  691. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/__init__.py +92 -0
  692. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/base.py +73 -0
  693. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/price.py +68 -0
  694. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/schema.json +73 -0
  695. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/swap.py +218 -0
  696. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/transfer.py +212 -0
  697. xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/xmtp.png +0 -0
  698. xian_tech_intentkit-0.17.19/intentkit/testing/__init__.py +2 -0
  699. xian_tech_intentkit-0.17.19/intentkit/testing/xian_trade_social_live.py +1118 -0
  700. xian_tech_intentkit-0.17.19/intentkit/testing/xian_trade_social_workflow.py +392 -0
  701. xian_tech_intentkit-0.17.19/intentkit/utils/__init__.py +9 -0
  702. xian_tech_intentkit-0.17.19/intentkit/utils/alert.py +251 -0
  703. xian_tech_intentkit-0.17.19/intentkit/utils/alert_handler.py +277 -0
  704. xian_tech_intentkit-0.17.19/intentkit/utils/chain.py +595 -0
  705. xian_tech_intentkit-0.17.19/intentkit/utils/ens.py +9 -0
  706. xian_tech_intentkit-0.17.19/intentkit/utils/error.py +164 -0
  707. xian_tech_intentkit-0.17.19/intentkit/utils/logging.py +160 -0
  708. xian_tech_intentkit-0.17.19/intentkit/utils/opengraph.py +116 -0
  709. xian_tech_intentkit-0.17.19/intentkit/utils/pdf.py +197 -0
  710. xian_tech_intentkit-0.17.19/intentkit/utils/random.py +16 -0
  711. xian_tech_intentkit-0.17.19/intentkit/utils/s3_setup.py +9 -0
  712. xian_tech_intentkit-0.17.19/intentkit/utils/schema.py +100 -0
  713. xian_tech_intentkit-0.17.19/intentkit/utils/slack_alert.py +95 -0
  714. xian_tech_intentkit-0.17.19/intentkit/utils/telegram_alert.py +104 -0
  715. xian_tech_intentkit-0.17.19/intentkit/utils/templates/post_pdf.html +254 -0
  716. xian_tech_intentkit-0.17.19/intentkit/utils/time.py +22 -0
  717. xian_tech_intentkit-0.17.19/intentkit/utils/tx.py +49 -0
  718. xian_tech_intentkit-0.17.19/intentkit/utils/upload.py +43 -0
  719. xian_tech_intentkit-0.17.19/intentkit/wallets/__init__.py +193 -0
  720. xian_tech_intentkit-0.17.19/intentkit/wallets/cdp.py +274 -0
  721. xian_tech_intentkit-0.17.19/intentkit/wallets/evm_wallet.py +287 -0
  722. xian_tech_intentkit-0.17.19/intentkit/wallets/native.py +399 -0
  723. xian_tech_intentkit-0.17.19/intentkit/wallets/privy.py +87 -0
  724. xian_tech_intentkit-0.17.19/intentkit/wallets/privy_client.py +598 -0
  725. xian_tech_intentkit-0.17.19/intentkit/wallets/privy_nonce.py +126 -0
  726. xian_tech_intentkit-0.17.19/intentkit/wallets/privy_safe.py +2491 -0
  727. xian_tech_intentkit-0.17.19/intentkit/wallets/privy_signer.py +300 -0
  728. xian_tech_intentkit-0.17.19/intentkit/wallets/privy_types.py +348 -0
  729. xian_tech_intentkit-0.17.19/intentkit/wallets/privy_utils.py +78 -0
  730. xian_tech_intentkit-0.17.19/intentkit/wallets/signer.py +64 -0
  731. xian_tech_intentkit-0.17.19/intentkit/wallets/web3.py +45 -0
  732. xian_tech_intentkit-0.17.19/intentkit/wallets/xian.py +288 -0
  733. xian_tech_intentkit-0.17.19/intentkit/wallets/xian_networks.py +205 -0
  734. xian_tech_intentkit-0.17.19/pyproject.toml +190 -0
@@ -0,0 +1,190 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # MacOS
7
+ .DS_Store
8
+
9
+ # C extensions
10
+ *.so
11
+
12
+ # Distribution / packaging
13
+ .Python
14
+ build/
15
+ develop-eggs/
16
+ dist/
17
+ downloads/
18
+ eggs/
19
+ .eggs/
20
+ /lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ wheels/
26
+ share/python-wheels/
27
+ *.egg-info/
28
+ .installed.cfg
29
+ *.egg
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py,cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+ cover/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs/_build/
75
+
76
+ # PyBuilder
77
+ .pybuilder/
78
+ target/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # IPython
84
+ profile_default/
85
+ ipython_config.py
86
+
87
+ # pyenv
88
+ # For a library or package, you might want to ignore these files since the code is
89
+ # intended to run in multiple environments; otherwise, check them in:
90
+ # .python-version
91
+
92
+ # pipenv
93
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
95
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
96
+ # install all needed dependencies.
97
+ #Pipfile.lock
98
+
99
+ # poetry
100
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
101
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
102
+ # commonly ignored for libraries.
103
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
104
+ #poetry.lock
105
+
106
+ # pdm
107
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
108
+ #pdm.lock
109
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
110
+ # in version control.
111
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
112
+ .pdm.toml
113
+ .pdm-python
114
+ .pdm-build/
115
+
116
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117
+ __pypackages__/
118
+
119
+ # Celery stuff
120
+ celerybeat-schedule
121
+ celerybeat.pid
122
+
123
+ # SageMath parsed files
124
+ *.sage.py
125
+
126
+ # Environments
127
+ *.env
128
+ .env
129
+ !example.env
130
+ .venv
131
+ env/
132
+ venv/
133
+ ENV/
134
+ env.bak/
135
+ venv.bak/
136
+
137
+ # Spyder project settings
138
+ .spyderproject
139
+ .spyproject
140
+
141
+ # Rope project settings
142
+ .ropeproject
143
+
144
+ # mkdocs documentation
145
+ /site
146
+
147
+ # mypy
148
+ .mypy_cache/
149
+ .dmypy.json
150
+ dmypy.json
151
+
152
+ # Pyre type checker
153
+ .pyre/
154
+
155
+ # pytype static type analyzer
156
+ .pytype/
157
+
158
+ # Cython debug symbols
159
+ cython_debug/
160
+
161
+ # PyCharm
162
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
163
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
164
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
165
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
166
+ #.idea/
167
+
168
+ # IDE
169
+ .idea
170
+ .vscode
171
+ .cursor
172
+ .zed
173
+ CLAUDE.local.md
174
+ .obsidian
175
+
176
+ # web3
177
+ wallet_data.txt
178
+
179
+ # export/import data
180
+ *.response
181
+ scripts/*.yaml
182
+
183
+ # docker volumes
184
+ pg_data
185
+ rustfs_data
186
+
187
+ # worktrees
188
+ .worktrees/
189
+
190
+ .next
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Crestal Network
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,184 @@
1
+ Metadata-Version: 2.4
2
+ Name: xian-tech-intentkit
3
+ Version: 0.17.19
4
+ Summary: Intent-based AI Agent Platform - Core Package
5
+ Project-URL: Homepage, https://github.com/xian-technology/xian-intentkit
6
+ Project-URL: Repository, https://github.com/xian-technology/xian-intentkit
7
+ Project-URL: Documentation, https://github.com/xian-technology/xian-intentkit/tree/main/docs
8
+ Project-URL: Bug Tracker, https://github.com/xian-technology/xian-intentkit/issues
9
+ Author-email: Ruihua <ruihua@crestal.network>
10
+ License: MIT License
11
+
12
+ Copyright (c) 2024 Crestal Network
13
+
14
+ Permission is hereby granted, free of charge, to any person obtaining a copy
15
+ of this software and associated documentation files (the "Software"), to deal
16
+ in the Software without restriction, including without limitation the rights
17
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ copies of the Software, and to permit persons to whom the Software is
19
+ furnished to do so, subject to the following conditions:
20
+
21
+ The above copyright notice and this permission notice shall be included in all
22
+ copies or substantial portions of the Software.
23
+
24
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
+ SOFTWARE.
31
+ License-File: LICENSE
32
+ Keywords: agent,ai,blockchain,crypto,intent
33
+ Classifier: Development Status :: 4 - Beta
34
+ Classifier: Intended Audience :: Developers
35
+ Classifier: License :: OSI Approved :: MIT License
36
+ Classifier: Programming Language :: Python :: 3
37
+ Classifier: Programming Language :: Python :: 3.13
38
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
39
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
40
+ Requires-Python: ==3.13.*
41
+ Requires-Dist: aiohttp>=3.11.16
42
+ Requires-Dist: aiosqlite>=0.21.0
43
+ Requires-Dist: asyncpg>=0.30.0
44
+ Requires-Dist: aws-secretsmanager-caching>=1.1.3
45
+ Requires-Dist: boto3<2.0.0,>=1.37.23
46
+ Requires-Dist: botocore>=1.35.97
47
+ Requires-Dist: cdp-sdk>=1.31.1
48
+ Requires-Dist: cron-validator<2.0.0,>=1.0.8
49
+ Requires-Dist: epyxid>=0.3.3
50
+ Requires-Dist: eth-abi>=5.0.0
51
+ Requires-Dist: eth-keys>=0.4.0
52
+ Requires-Dist: eth-utils>=2.1.0
53
+ Requires-Dist: fastapi>=0.115.8
54
+ Requires-Dist: filetype<2.0.0,>=1.2.0
55
+ Requires-Dist: httpx>=0.28.1
56
+ Requires-Dist: jsonref>=1.1.0
57
+ Requires-Dist: langchain-anthropic>=0.3.12
58
+ Requires-Dist: langchain-community>=0.3.19
59
+ Requires-Dist: langchain-core>=0.3.43
60
+ Requires-Dist: langchain-deepseek>=0.1.4
61
+ Requires-Dist: langchain-google-genai>=3.2.0
62
+ Requires-Dist: langchain-openai>=0.3.8
63
+ Requires-Dist: langchain-openrouter>=0.0.2
64
+ Requires-Dist: langchain-text-splitters>=0.3.8
65
+ Requires-Dist: langchain-xai>=0.2.1
66
+ Requires-Dist: langchain>=0.3.25
67
+ Requires-Dist: langgraph-checkpoint-postgres>=2.0.16
68
+ Requires-Dist: langgraph-checkpoint>=2.0.18
69
+ Requires-Dist: langgraph-prebuilt>=0.6.1
70
+ Requires-Dist: langgraph>=0.6.1
71
+ Requires-Dist: mcp>=1.0.0
72
+ Requires-Dist: mypy-boto3-s3<2.0.0,>=1.37.24
73
+ Requires-Dist: openai>=1.59.6
74
+ Requires-Dist: openrouter<0.8.0
75
+ Requires-Dist: pillow<13.0.0,>=11.1.0
76
+ Requires-Dist: psycopg-pool>=3.2.4
77
+ Requires-Dist: psycopg>=3.2.9
78
+ Requires-Dist: pydantic>=2.10.6
79
+ Requires-Dist: python-dotenv>=1.0.1
80
+ Requires-Dist: pytz>=2025.1
81
+ Requires-Dist: pyyaml>=6.0.2
82
+ Requires-Dist: redis<8.0.0,>=5.2.1
83
+ Requires-Dist: requests-oauthlib>=2.0.0
84
+ Requires-Dist: requests>=2.32.3
85
+ Requires-Dist: slack-sdk>=3.34.0
86
+ Requires-Dist: sqlalchemy[asyncio]>=2.0.37
87
+ Requires-Dist: starlette>=0.47.1
88
+ Requires-Dist: supabase>=2.16.0
89
+ Requires-Dist: tenacity>=9.1.2
90
+ Requires-Dist: tweepy[async]>=4.15.0
91
+ Requires-Dist: uvicorn<1.0.0,>=0.34.0
92
+ Requires-Dist: web3>=7.10.0
93
+ Requires-Dist: x402>=2.0.0
94
+ Requires-Dist: xian-tech-py<0.5.0,>=0.4.8
95
+ Description-Content-Type: text/markdown
96
+
97
+ # IntentKit
98
+
99
+ IntentKit is a powerful intent-based AI agent platform that enables developers to build sophisticated AI agents with blockchain and cryptocurrency capabilities.
100
+
101
+ ## Features
102
+
103
+ - **Intent-based Architecture**: Build agents that understand and execute user intents
104
+ - **Blockchain Integration**: Native support for multiple blockchain networks
105
+ - **Cryptocurrency Operations**: Built-in tools for DeFi, trading, and token operations
106
+ - **Extensible Skills System**: Modular skill system with 30+ pre-built skills
107
+ - **Multi-platform Support**: Telegram, Twitter, Slack, and API integrations
108
+ - **Advanced AI Capabilities**: Powered by LangChain and LangGraph
109
+
110
+ ## Installation
111
+
112
+ ```bash
113
+ pip install intentkit
114
+ ```
115
+
116
+ ## Development
117
+
118
+ To build the package locally:
119
+
120
+ ```bash
121
+ # Build both source and wheel distributions
122
+ uv build
123
+
124
+ # Build only wheel
125
+ uv build --wheel
126
+
127
+ # Build only source distribution
128
+ uv build --sdist
129
+ ```
130
+
131
+ To publish to PyPI:
132
+
133
+ ```bash
134
+ # Build and publish to PyPI
135
+ uv build
136
+ uv publish
137
+
138
+ # Publish to Test PyPI
139
+ uv publish --publish-url https://test.pypi.org/legacy/
140
+ ```
141
+
142
+ > **Note**: This package uses `hatchling` as the build backend with `uv` for dependency management and publishing.
143
+
144
+ ## Quick Start
145
+
146
+ ```python
147
+ from intentkit.core.agent import Agent
148
+ from intentkit.config.config import Config
149
+
150
+ # Initialize configuration
151
+ config = Config()
152
+
153
+ # Create an agent
154
+ agent = Agent(config=config)
155
+
156
+ # Your agent is ready to use!
157
+ ```
158
+
159
+ ## Skills
160
+
161
+ IntentKit comes with 30+ pre-built skills including:
162
+
163
+ - **DeFi**: Uniswap, 1inch, Enso, LiFi
164
+ - **Data**: DexScreener, CoinGecko, DefiLlama, CryptoCompare
165
+ - **Social**: Twitter, Telegram, Slack
166
+ - **Blockchain**: CDP, Moralis, various wallet integrations
167
+ - **AI**: OpenAI, Heurist, Venice AI
168
+ - **And many more...**
169
+
170
+ ## Documentation
171
+
172
+ For detailed documentation, examples, and guides, visit our [documentation](https://github.com/crestal-network/intentkit/tree/main/docs).
173
+
174
+ ## Contributing
175
+
176
+ We welcome contributions! Please see our [Contributing Guide](https://github.com/crestal-network/intentkit/blob/main/CONTRIBUTING.md) for details.
177
+
178
+ ## License
179
+
180
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
181
+
182
+ ## Support
183
+
184
+ For support, please open an issue on our [GitHub repository](https://github.com/crestal-network/intentkit/issues).
@@ -0,0 +1,97 @@
1
+ volumes:
2
+ postgres_data:
3
+ rustfs_data:
4
+ redis_data:
5
+
6
+ services:
7
+ db:
8
+ image: postgres:18.1-trixie
9
+ environment:
10
+ POSTGRES_USER: postgres
11
+ POSTGRES_PASSWORD: postgres
12
+ POSTGRES_DB: intentkit
13
+ volumes:
14
+ - postgres_data:/var/lib/postgresql
15
+ ports:
16
+ - "15432:5432"
17
+ restart: unless-stopped
18
+ healthcheck:
19
+ test: ["CMD-SHELL", "pg_isready -U postgres"]
20
+ interval: 5s
21
+ timeout: 5s
22
+ retries: 5
23
+
24
+ rustfs:
25
+ image: rustfs/rustfs:latest
26
+ ports:
27
+ - "9000:9000"
28
+ - "9001:9001"
29
+ environment:
30
+ - RUSTFS_ACCESS_KEY=minioadmin
31
+ - RUSTFS_SECRET_KEY=minioadmin
32
+ - RUSTFS_CONSOLE_ENABLE=true
33
+ volumes:
34
+ - rustfs_data:/data
35
+ restart: unless-stopped
36
+ healthcheck:
37
+ test: ["CMD", "curl", "-f", "http://localhost:9000/health"]
38
+ interval: 30s
39
+ timeout: 20s
40
+ retries: 3
41
+
42
+ redis:
43
+ image: redis:8.4-bookworm
44
+ volumes:
45
+ - redis_data:/data
46
+ restart: unless-stopped
47
+ healthcheck:
48
+ test: ["CMD", "redis-cli", "ping"]
49
+ interval: 5s
50
+ timeout: 5s
51
+ retries: 5
52
+
53
+ team-api:
54
+ build:
55
+ context: ../../../
56
+ args:
57
+ - RELEASE=${RELEASE:-latest}
58
+ volumes:
59
+ - ../../../.env:/app/.env
60
+ - ../../../intentkit:/app/intentkit
61
+ - ../../../app:/app/app
62
+ - ../../../public_agents:/app/public_agents
63
+ depends_on:
64
+ db:
65
+ condition: service_healthy
66
+ redis:
67
+ condition: service_healthy
68
+ environment:
69
+ - DB_USERNAME=postgres
70
+ - DB_PASSWORD=postgres
71
+ - DB_HOST=db
72
+ - DB_PORT=5432
73
+ - DB_NAME=intentkit
74
+ - REDIS_HOST=redis
75
+ - REDIS_PORT=6379
76
+ - REDIS_DB=0
77
+ - AWS_S3_CDN_URL=http://localhost:9000/static
78
+ - AWS_S3_ENDPOINT_URL=http://rustfs:9000
79
+ - AWS_S3_ACCESS_KEY_ID=minioadmin
80
+ - AWS_S3_SECRET_ACCESS_KEY=minioadmin
81
+ - AWS_S3_BUCKET=static
82
+ - AWS_S3_REGION_NAME=us-east-1
83
+ ports:
84
+ - "8000:8000"
85
+ healthcheck:
86
+ test:
87
+ [
88
+ "CMD",
89
+ "python",
90
+ "-c",
91
+ "import requests; requests.get('http://localhost:8000/health').raise_for_status()",
92
+ ]
93
+ interval: 5s
94
+ timeout: 5s
95
+ retries: 5
96
+ restart: unless-stopped
97
+ command: uvicorn app.team.api:app --host 0.0.0.0 --port 8000 --reload
@@ -0,0 +1,78 @@
1
+ # Virtual environments (** matches nested directories too)
2
+ **/.venv/
3
+ **/venv/
4
+ **/env/
5
+ **/ENV/
6
+
7
+ # Frontend build artifacts and dependencies
8
+ frontend/node_modules/
9
+ frontend/.next/
10
+ frontend/out/
11
+
12
+ # Git
13
+ .git/
14
+ .gitignore
15
+
16
+ # IDE and editor
17
+ .idea/
18
+ .vscode/
19
+ .cursor/
20
+ .zed/
21
+ .claude/
22
+ *.swp
23
+ *.swo
24
+
25
+ # Python cache
26
+ **/__pycache__/
27
+ *.py[cod]
28
+ *$py.class
29
+ **/.pytest_cache/
30
+ **/.mypy_cache/
31
+ **/.ruff_cache/
32
+ **/*.egg-info/
33
+ **/dist/
34
+ **/build/
35
+ *.egg
36
+
37
+ # macOS
38
+ .DS_Store
39
+
40
+ # Environment files (sensitive)
41
+ .env
42
+ *.env
43
+ !example.env
44
+
45
+ # Test and coverage
46
+ htmlcov/
47
+ .coverage
48
+ .coverage.*
49
+ .tox/
50
+ .nox/
51
+
52
+ # Documentation
53
+ docs/
54
+
55
+ # Development files
56
+ *.md
57
+ !intentkit/README.md
58
+ LICENSE
59
+ CONTRIBUTING.md
60
+ DEVELOPMENT.md
61
+ SECURITY.md
62
+
63
+ # Scripts not needed in production
64
+ scripts/
65
+
66
+ # Tests
67
+ tests/
68
+
69
+ # Logs
70
+ *.log
71
+
72
+ # Temporary files
73
+ *.tmp
74
+ *.temp
75
+
76
+ # Local development artifacts
77
+ wallet_data.txt
78
+ *.response
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Crestal Network
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,14 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include abstracts *.py
4
+ recursive-include clients *.py
5
+ recursive-include config *.py
6
+ recursive-include core *.py
7
+ recursive-include models *.py *.json
8
+ recursive-include skills *.py *.toml *.md
9
+ recursive-include utils *.py
10
+ recursive-exclude * __pycache__
11
+ recursive-exclude * *.pyc
12
+ recursive-exclude * *.pyo
13
+ recursive-exclude * .DS_Store
14
+ recursive-exclude * .ruff_cache
@@ -0,0 +1,88 @@
1
+ # IntentKit
2
+
3
+ IntentKit is a powerful intent-based AI agent platform that enables developers to build sophisticated AI agents with blockchain and cryptocurrency capabilities.
4
+
5
+ ## Features
6
+
7
+ - **Intent-based Architecture**: Build agents that understand and execute user intents
8
+ - **Blockchain Integration**: Native support for multiple blockchain networks
9
+ - **Cryptocurrency Operations**: Built-in tools for DeFi, trading, and token operations
10
+ - **Extensible Skills System**: Modular skill system with 30+ pre-built skills
11
+ - **Multi-platform Support**: Telegram, Twitter, Slack, and API integrations
12
+ - **Advanced AI Capabilities**: Powered by LangChain and LangGraph
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ pip install intentkit
18
+ ```
19
+
20
+ ## Development
21
+
22
+ To build the package locally:
23
+
24
+ ```bash
25
+ # Build both source and wheel distributions
26
+ uv build
27
+
28
+ # Build only wheel
29
+ uv build --wheel
30
+
31
+ # Build only source distribution
32
+ uv build --sdist
33
+ ```
34
+
35
+ To publish to PyPI:
36
+
37
+ ```bash
38
+ # Build and publish to PyPI
39
+ uv build
40
+ uv publish
41
+
42
+ # Publish to Test PyPI
43
+ uv publish --publish-url https://test.pypi.org/legacy/
44
+ ```
45
+
46
+ > **Note**: This package uses `hatchling` as the build backend with `uv` for dependency management and publishing.
47
+
48
+ ## Quick Start
49
+
50
+ ```python
51
+ from intentkit.core.agent import Agent
52
+ from intentkit.config.config import Config
53
+
54
+ # Initialize configuration
55
+ config = Config()
56
+
57
+ # Create an agent
58
+ agent = Agent(config=config)
59
+
60
+ # Your agent is ready to use!
61
+ ```
62
+
63
+ ## Skills
64
+
65
+ IntentKit comes with 30+ pre-built skills including:
66
+
67
+ - **DeFi**: Uniswap, 1inch, Enso, LiFi
68
+ - **Data**: DexScreener, CoinGecko, DefiLlama, CryptoCompare
69
+ - **Social**: Twitter, Telegram, Slack
70
+ - **Blockchain**: CDP, Moralis, various wallet integrations
71
+ - **AI**: OpenAI, Heurist, Venice AI
72
+ - **And many more...**
73
+
74
+ ## Documentation
75
+
76
+ For detailed documentation, examples, and guides, visit our [documentation](https://github.com/crestal-network/intentkit/tree/main/docs).
77
+
78
+ ## Contributing
79
+
80
+ We welcome contributions! Please see our [Contributing Guide](https://github.com/crestal-network/intentkit/blob/main/CONTRIBUTING.md) for details.
81
+
82
+ ## License
83
+
84
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
85
+
86
+ ## Support
87
+
88
+ For support, please open an issue on our [GitHub repository](https://github.com/crestal-network/intentkit/issues).