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.
- xian_tech_intentkit-0.17.19/.gitignore +190 -0
- xian_tech_intentkit-0.17.19/LICENSE +21 -0
- xian_tech_intentkit-0.17.19/PKG-INFO +184 -0
- xian_tech_intentkit-0.17.19/app/team/intentkit/docker-compose.yml +97 -0
- xian_tech_intentkit-0.17.19/intentkit/.dockerignore +78 -0
- xian_tech_intentkit-0.17.19/intentkit/LICENSE +21 -0
- xian_tech_intentkit-0.17.19/intentkit/MANIFEST.in +14 -0
- xian_tech_intentkit-0.17.19/intentkit/README.md +88 -0
- xian_tech_intentkit-0.17.19/intentkit/__init__.py +19 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/agent.py +60 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/api.py +4 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/engine.py +38 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/graph.py +51 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/skill.py +60 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/twitter.py +53 -0
- xian_tech_intentkit-0.17.19/intentkit/abstracts/wallet.py +161 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/__init__.py +13 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/mcp/__init__.py +1 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/mcp/client.py +111 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/mcp/registry.py +51 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/mcp/tool.py +128 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/mcp/wrapper.py +124 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/moralis.py +57 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/s3.py +375 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/s3_setup.py +84 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/supabase.py +121 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/twitter.py +628 -0
- xian_tech_intentkit-0.17.19/intentkit/clients/web3_ens.py +125 -0
- xian_tech_intentkit-0.17.19/intentkit/config/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/config/base.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/config/config.py +352 -0
- xian_tech_intentkit-0.17.19/intentkit/config/db.py +226 -0
- xian_tech_intentkit-0.17.19/intentkit/config/db_mig.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/config/redis.py +138 -0
- xian_tech_intentkit-0.17.19/intentkit/core/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/core/account_checking.py +927 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/__init__.py +32 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/analytics.py +433 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/constants.py +6 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/management.py +343 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/notifications.py +113 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/public_info.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/queries.py +100 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent/wallet.py +400 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent_activity.py +82 -0
- xian_tech_intentkit-0.17.19/intentkit/core/agent_post.py +112 -0
- xian_tech_intentkit-0.17.19/intentkit/core/api.py +196 -0
- xian_tech_intentkit-0.17.19/intentkit/core/asset.py +377 -0
- xian_tech_intentkit-0.17.19/intentkit/core/autonomous.py +293 -0
- xian_tech_intentkit-0.17.19/intentkit/core/avatar.py +280 -0
- xian_tech_intentkit-0.17.19/intentkit/core/budget.py +71 -0
- xian_tech_intentkit-0.17.19/intentkit/core/chat.py +69 -0
- xian_tech_intentkit-0.17.19/intentkit/core/cleanup.py +80 -0
- xian_tech_intentkit-0.17.19/intentkit/core/client.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/__init__.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/adjustment.py +183 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/base.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/expense.py +1187 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/list_events.py +284 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/plan_credit.py +184 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/recharge.py +156 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/refill.py +175 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/reward.py +158 -0
- xian_tech_intentkit-0.17.19/intentkit/core/credit/withdraw.py +193 -0
- xian_tech_intentkit-0.17.19/intentkit/core/draft.py +202 -0
- xian_tech_intentkit-0.17.19/intentkit/core/draft_chat.py +121 -0
- xian_tech_intentkit-0.17.19/intentkit/core/engine.py +931 -0
- xian_tech_intentkit-0.17.19/intentkit/core/executor.py +333 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/__init__.py +23 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/cache.py +48 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/engine.py +221 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/service.py +77 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/__init__.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/add_autonomous_task.py +71 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/base.py +11 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/create_team_agent.py +161 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/delete_autonomous_task.py +58 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/edit_autonomous_task.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/get_team_agent.py +43 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/get_team_info.py +37 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/list_autonomous_tasks.py +48 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/list_team_agents.py +63 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/llm.py +37 -0
- xian_tech_intentkit-0.17.19/intentkit/core/lead/skills/update_team_agent.py +181 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/__init__.py +25 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/engine.py +237 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/service.py +184 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/__init__.py +57 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/add_autonomous_task.py +86 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/base.py +11 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/delete_autonomous_task.py +63 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/draft.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/edit_autonomous_task.py +87 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/list_autonomous_tasks.py +57 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/llm.py +35 -0
- xian_tech_intentkit-0.17.19/intentkit/core/manager/skills/public_info.py +103 -0
- xian_tech_intentkit-0.17.19/intentkit/core/memory.py +78 -0
- xian_tech_intentkit-0.17.19/intentkit/core/middleware.py +118 -0
- xian_tech_intentkit-0.17.19/intentkit/core/prompt.py +448 -0
- xian_tech_intentkit-0.17.19/intentkit/core/public_agents.py +230 -0
- xian_tech_intentkit-0.17.19/intentkit/core/public_api.py +80 -0
- xian_tech_intentkit-0.17.19/intentkit/core/scheduler.py +158 -0
- xian_tech_intentkit-0.17.19/intentkit/core/statistics.py +169 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/__init__.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/base.py +53 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/call_agent.py +158 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/create_activity.py +104 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/create_post.py +146 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/current_time.py +78 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/get_post.py +54 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/read_webpage.py +184 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/recent_activities.py +58 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/recent_posts.py +53 -0
- xian_tech_intentkit-0.17.19/intentkit/core/system_skills/update_memory.py +54 -0
- xian_tech_intentkit-0.17.19/intentkit/core/task_registry.py +33 -0
- xian_tech_intentkit-0.17.19/intentkit/core/team/__init__.py +50 -0
- xian_tech_intentkit-0.17.19/intentkit/core/team/channel.py +164 -0
- xian_tech_intentkit-0.17.19/intentkit/core/team/feed.py +202 -0
- xian_tech_intentkit-0.17.19/intentkit/core/team/membership.py +470 -0
- xian_tech_intentkit-0.17.19/intentkit/core/team/subscription.py +90 -0
- xian_tech_intentkit-0.17.19/intentkit/core/template.py +199 -0
- xian_tech_intentkit-0.17.19/intentkit/core/user.py +220 -0
- xian_tech_intentkit-0.17.19/intentkit/core/xian_event_triggers.py +681 -0
- xian_tech_intentkit-0.17.19/intentkit/models/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/__init__.py +34 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/agent.py +414 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/autonomous.py +490 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/core.py +255 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/db.py +357 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/public.json +98 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/public_info.py +162 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/response.py +391 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/schema.json +527 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent/user_input.py +348 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent_activity.py +83 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent_data.py +777 -0
- xian_tech_intentkit-0.17.19/intentkit/models/agent_post.py +277 -0
- xian_tech_intentkit-0.17.19/intentkit/models/app_setting.py +241 -0
- xian_tech_intentkit-0.17.19/intentkit/models/chat.py +698 -0
- xian_tech_intentkit-0.17.19/intentkit/models/credit/__init__.py +82 -0
- xian_tech_intentkit-0.17.19/intentkit/models/credit/account.py +861 -0
- xian_tech_intentkit-0.17.19/intentkit/models/credit/base.py +40 -0
- xian_tech_intentkit-0.17.19/intentkit/models/credit/event.py +543 -0
- xian_tech_intentkit-0.17.19/intentkit/models/credit/price.py +205 -0
- xian_tech_intentkit-0.17.19/intentkit/models/credit/transaction.py +176 -0
- xian_tech_intentkit-0.17.19/intentkit/models/draft.py +223 -0
- xian_tech_intentkit-0.17.19/intentkit/models/llm.csv +40 -0
- xian_tech_intentkit-0.17.19/intentkit/models/llm.py +1002 -0
- xian_tech_intentkit-0.17.19/intentkit/models/llm_picker.py +97 -0
- xian_tech_intentkit-0.17.19/intentkit/models/skill.py +357 -0
- xian_tech_intentkit-0.17.19/intentkit/models/team.py +368 -0
- xian_tech_intentkit-0.17.19/intentkit/models/team_channel.py +223 -0
- xian_tech_intentkit-0.17.19/intentkit/models/team_feed.py +64 -0
- xian_tech_intentkit-0.17.19/intentkit/models/template.py +216 -0
- xian_tech_intentkit-0.17.19/intentkit/models/user.py +523 -0
- xian_tech_intentkit-0.17.19/intentkit/models/user_data.py +155 -0
- xian_tech_intentkit-0.17.19/intentkit/models/x402_order.py +201 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/__init__.py +12 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/__init__.py +83 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/aave_v3.svg +4 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/base.py +31 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/borrow.py +105 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/constants.py +188 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/get_reserve_data.py +126 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/get_user_account_data.py +83 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/repay.py +117 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/schema.json +150 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/set_collateral.py +84 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/supply.py +95 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/utils.py +114 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aave_v3/withdraw.py +96 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/__init__.py +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/add_liquidity.py +332 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/aerodrome.svg +20 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/base.py +7 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/constants.py +334 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/get_positions.py +167 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/quote.py +124 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/remove_liquidity.py +220 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/schema.json +116 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/swap.py +186 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aerodrome/utils.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/README.md +71 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/__init__.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/aixbt.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/base.py +17 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/projects.py +101 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/aixbt/schema.json +57 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/allora/__init__.py +81 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/allora/allora.jpeg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/allora/base.py +17 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/allora/price.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/allora/schema.json +46 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/base.py +345 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/basename/__init__.py +74 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/basename/base.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/basename/basename.svg +11 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/basename/constants.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/basename/register.py +158 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/basename/schema.json +46 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/README.md +95 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/__init__.py +117 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/base.py +109 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/carv.webp +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/fetch_news.py +64 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/onchain_query.py +130 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/schema.json +88 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/carv/token_info_and_price.py +90 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/README.md +254 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/__init__.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/base.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/casino.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/deck_draw.py +127 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/deck_shuffle.py +113 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/dice_roll.py +105 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/schema.json +77 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/casino/utils.py +109 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/__init__.py +68 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/base.py +24 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/cdp.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/get_balance.py +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/get_wallet_details.py +90 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/native_transfer.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cdp/schema.json +78 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/README.md +38 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/__init__.py +58 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/base.py +7 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/chain_lookup.py +205 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/chainlist.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/chainlist/schema.json +45 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/README.md +121 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/__init__.py +80 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/base.py +19 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/constants.py +18 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/cookiefun.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_account_details.py +169 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_account_feed.py +260 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_account_smart_followers.py +181 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/get_sectors.py +135 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/schema.json +111 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cookiefun/search_accounts.py +223 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/__init__.py +118 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/api.py +156 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/base.py +294 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/cryptocompare.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_news.py +84 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_price.py +86 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_top_exchanges.py +96 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_top_market_cap.py +95 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_top_volume.py +96 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/fetch_trading_signals.py +97 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptocompare/schema.json +126 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/__init__.py +110 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/base.py +26 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/cryptopanic.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/fetch_crypto_news.py +144 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/fetch_crypto_sentiment.py +113 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/cryptopanic/schema.json +63 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/README.md +92 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/__init__.py +81 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/dapplooker.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/dapplooker_token_data.py +475 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dapplooker/schema.json +46 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/__init__.py +278 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/api.py +207 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/base.py +83 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_batch_historical_prices.py +91 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_block.py +84 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_current_prices.py +81 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_first_price.py +77 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_historical_prices.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_price_chart.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/coins/fetch_price_percentage.py +69 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/config/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/config/chains.py +431 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/defillama.jpeg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/fees/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/fees/fetch_fees_overview.py +106 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/schema.json +375 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoin_chains.py +86 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoin_charts.py +98 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoin_prices.py +67 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/stablecoins/fetch_stablecoins.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tests/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tests/api_integration.test.py +192 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tests/api_unit.test.py +583 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_chain_historical_tvl.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_chains.py +84 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_historical_tvl.py +79 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_protocol.py +164 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_protocol_current_tvl.py +70 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/tvl/fetch_protocols.py +146 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/fetch_dex_overview.py +138 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/fetch_dex_summary.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/volumes/fetch_options_overview.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/yields/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/yields/fetch_pool_chart.py +81 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/defillama/yields/fetch_pools.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/README.md +154 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/__init__.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/base.py +125 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/dexscreener.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/get_pair_info.py +159 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/get_token_pairs.py +165 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/get_tokens_info.py +211 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/model/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/model/search_token_response.py +80 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/schema.json +91 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/search_token.py +178 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dexscreener/utils.py +418 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/__init__.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/base.py +166 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/dune.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/execute_query.py +74 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/get_query_results.py +57 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/run_sql.py +74 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/dune/schema.json +78 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/README.md +152 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/__init__.py +106 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/base.py +17 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/elfa.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/mention.py +205 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/schema.json +95 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/stats.py +82 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/tokens.py +116 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/elfa/utils.py +125 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/README.md +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/__init__.py +100 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/approval.py +279 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/erc20.py +14 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/abi/route.py +129 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/base.py +99 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/best_yield.py +271 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/enso.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/networks.py +93 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/prices.py +88 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/route.py +285 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/schema.json +171 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/tokens.py +199 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/enso/wallet.py +251 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/__init__.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/constants.py +185 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/erc20.svg +5 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/get_balance.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/get_token_address.py +80 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/schema.json +78 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/transfer.py +123 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc20/utils.py +204 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/__init__.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/constants.py +221 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/erc721.svg +5 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/get_balance.py +74 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/mint.py +93 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/schema.json +78 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/erc721/transfer.py +90 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/README.md +217 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/__init__.py +89 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/clear.py +79 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/crawl.py +402 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/firecrawl.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/query.py +111 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/schema.json +109 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/scrape.py +422 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/firecrawl/utils.py +315 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/github/README.md +63 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/github/__init__.py +58 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/github/base.py +7 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/github/github.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/github/github_search.py +181 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/github/schema.json +46 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/__init__.py +129 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/base.py +20 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/heurist.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_animagine_xl.py +151 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_arthemy_comics.py +151 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_arthemy_real.py +151 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_braindance.py +151 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_cyber_realistic_xl.py +151 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_flux_1_dev.py +150 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/image_generation_sdxl.py +150 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/heurist/schema.json +152 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/README.md +78 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/__init__.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/base.py +68 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/get.py +97 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/http.svg +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/post.py +113 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/put.py +113 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/http/schema.json +79 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/__init__.py +104 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/base.py +202 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/gemini.py +83 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/gpt.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/grok.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/image.svg +17 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/minimax.py +93 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/openrouter.py +40 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/image/schema.json +132 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/README.md +92 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/__init__.py +28 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/base.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/jupiter.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/price.py +103 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/schema.json +70 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/jupiter/swap.py +76 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/README.md +294 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/__init__.py +140 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/base.py +7 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/lifi.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/schema.json +98 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/token_execute.py +566 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/token_quote.py +192 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/lifi/utils.py +715 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/mcp_coingecko/__init__.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/mcp_coingecko/coingecko.svg +16 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/mcp_coingecko/schema.json +835 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/README.md +490 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/__init__.py +100 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/api.py +295 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/base.py +48 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_chain_portfolio.py +189 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_nft_portfolio.py +282 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_solana_portfolio.py +321 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/fetch_wallet_portfolio.py +309 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/moralis.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/moralis/schema.json +121 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/__init__.py +80 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/base.py +70 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/borrow.py +99 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/constants.py +207 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/deposit.py +101 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/get_position.py +138 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/get_vault_data.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/morpho.svg +12 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/repay.py +128 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/schema.json +157 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/supply_collateral.py +113 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/withdraw.py +89 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/morpho/withdraw_collateral.py +101 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/onchain.py +220 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/__init__.py +110 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/base.py +175 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/buy_nft.py +110 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/cancel_listing.py +67 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/constants.py +188 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/create_listing.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_collection.py +39 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_collection_stats.py +37 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_events.py +63 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_listings.py +52 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_nft.py +48 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_nfts_by_account.py +67 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/get_offers.py +51 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/onchain_base.py +180 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/opensea.svg +5 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/schema.json +195 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/opensea/update_listing.py +126 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/__init__.py +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/add_liquidity.py +319 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/base.py +7 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/constants.py +333 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/get_positions.py +166 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/pancakeswap.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/quote.py +137 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/remove_liquidity.py +217 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/schema.json +116 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/swap.py +195 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pancakeswap/utils.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/__init__.py +108 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/base.py +436 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/cancel_order.py +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_market.py +121 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_orderbook.py +72 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_orders.py +82 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_positions.py +82 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_price_history.py +108 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/get_trades.py +87 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/place_order.py +109 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/polymarket.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/schema.json +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/polymarket/search_markets.py +111 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/README.md +55 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/__init__.py +132 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/base.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/constants.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/moralis.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/schema.json +191 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/token_balances.py +151 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_approvals.py +96 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_defi_positions.py +77 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_history.py +148 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_net_worth.py +108 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_nfts.py +135 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_profitability.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_profitability_summary.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_stats.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/portfolio/wallet_swaps.py +143 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pyth/__init__.py +62 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pyth/base.py +13 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pyth/fetch_price.py +99 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pyth/fetch_price_feed.py +127 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pyth/pyth.svg +6 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/pyth/schema.json +63 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/__init__.py +91 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/base.py +52 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/get_channel.py +122 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/get_message.py +133 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/schedule_message.py +92 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/schema.json +112 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/send_message.py +76 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/slack/slack.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/__init__.py +106 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/base.py +152 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/delete_data.py +70 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/fetch_data.py +84 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/insert_data.py +64 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/invoke_function.py +68 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/schema.json +163 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/supabase.svg +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/update_data.py +69 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/supabase/upsert_data.py +67 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/__init__.py +65 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/base.py +16 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/constants.py +63 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/create_flow.py +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/delete_flow.py +90 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/schema.json +77 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/superfluid.svg +6 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/superfluid/update_flow.py +93 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/README.md +86 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/__init__.py +87 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/schema.json +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/tavily.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/tavily_extract.py +145 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/tavily/tavily_search.py +137 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/telegram/__init__.py +58 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/telegram/base.py +40 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/telegram/schema.json +60 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/telegram/send_message.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/README.md +89 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/__init__.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/base.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/constants.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/erc20_transfers.py +139 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/moralis.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/schema.json +94 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/token_analytics.py +79 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/token_price.py +126 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/token/token_search.py +116 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/__init__.py +133 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/base.py +43 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/follow_user.py +60 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_mentions.py +111 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_timeline.py +100 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_user_by_username.py +72 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/get_user_tweets.py +112 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/like_tweet.py +59 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/post_tweet.py +114 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/reply_tweet.py +105 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/retweet.py +68 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/schema.json +269 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/search_tweets.py +110 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/twitter/twitter.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/ui/__init__.py +86 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/ui/ask_user.py +63 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/ui/base.py +12 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/ui/schema.json +62 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/ui/show_card.py +61 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/ui/ui.svg +14 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/__init__.py +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/add_liquidity.py +272 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/base.py +7 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/constants.py +296 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/get_positions.py +124 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/quote.py +133 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/remove_liquidity.py +156 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/schema.json +116 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/swap.py +192 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/uniswap.svg +4 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/uniswap/utils.py +98 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/__init__.py +59 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/schema.json +55 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/text_to_speech.py +156 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/unrealspeech/unrealspeech.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/__init__.py +102 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/base.py +47 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/input.py +36 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/schema.json +105 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/venice_audio.py +256 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_audio/venice_logo.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/README.md +119 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/__init__.py +148 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/api.py +140 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/base.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/config.py +29 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/README.md +119 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/image_enhance.py +78 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/image_enhance_base.py +24 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_enhance/image_enhance_input.py +38 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/README.md +144 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_base.py +122 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_fluently_xl.py +29 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_flux_dev.py +30 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_flux_dev_uncensored.py +29 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_input.py +162 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_lustify_sdxl.py +29 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_pony_realism.py +29 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_stable_diffusion_3_5.py +31 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_generation/image_generation_venice_sd35.py +31 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/README.md +111 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/image_upscale.py +88 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/image_upscale_base.py +24 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_upscale/image_upscale_input.py +22 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/README.md +112 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/__init__.py +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/image_vision.py +99 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/image_vision_base.py +19 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/image_vision/image_vision_input.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/schema.json +225 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/utils.py +77 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/venice_image/venice_image.jpg +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/__init__.py +96 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/base.py +122 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/gemini.py +107 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/gpt.py +125 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/grok.py +122 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/minimax.py +146 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/schema.json +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/video/video.svg +27 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/README.md +113 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/__init__.py +101 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/base.py +16 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/document_indexer.py +147 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/langchain.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/schema.json +127 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/scrape_and_index.py +271 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/utils.py +710 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/web_scraper/website_indexer.py +456 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/__init__.py +62 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/base.py +15 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/constants.py +60 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/schema.json +62 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/unwrap_eth.py +99 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/weth.svg +6 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/weth/wrap_eth.py +95 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/__init__.py +72 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/base.py +647 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/check_price.py +256 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/get_orders.py +95 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/http_request.py +143 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/httpx_compat.py +314 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/pay.py +175 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/schema.json +88 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/x402/x402.webp +0 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/README.md +237 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/__init__.py +85 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/approve_tokens.py +62 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/base.py +49 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/call_contract.py +46 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/dex_common.py +220 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/dex_quote.py +91 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/dex_trade.py +182 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_allowance.py +54 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_chain_status.py +43 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_events_for_tx.py +41 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_token_balance.py +52 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_transaction.py +39 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/get_wallet_details.py +37 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/list_events.py +59 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/read_contract_state.py +47 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/schema.json +124 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/send_contract_transaction.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/transfer_tokens.py +66 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xian/utils.py +75 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/README.md +110 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/__init__.py +92 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/base.py +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/price.py +68 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/schema.json +73 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/swap.py +218 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/transfer.py +212 -0
- xian_tech_intentkit-0.17.19/intentkit/skills/xmtp/xmtp.png +0 -0
- xian_tech_intentkit-0.17.19/intentkit/testing/__init__.py +2 -0
- xian_tech_intentkit-0.17.19/intentkit/testing/xian_trade_social_live.py +1118 -0
- xian_tech_intentkit-0.17.19/intentkit/testing/xian_trade_social_workflow.py +392 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/__init__.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/alert.py +251 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/alert_handler.py +277 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/chain.py +595 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/ens.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/error.py +164 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/logging.py +160 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/opengraph.py +116 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/pdf.py +197 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/random.py +16 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/s3_setup.py +9 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/schema.py +100 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/slack_alert.py +95 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/telegram_alert.py +104 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/templates/post_pdf.html +254 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/time.py +22 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/tx.py +49 -0
- xian_tech_intentkit-0.17.19/intentkit/utils/upload.py +43 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/__init__.py +193 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/cdp.py +274 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/evm_wallet.py +287 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/native.py +399 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy.py +87 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy_client.py +598 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy_nonce.py +126 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy_safe.py +2491 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy_signer.py +300 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy_types.py +348 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/privy_utils.py +78 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/signer.py +64 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/web3.py +45 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/xian.py +288 -0
- xian_tech_intentkit-0.17.19/intentkit/wallets/xian_networks.py +205 -0
- 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).
|