intentkit 0.6.7.dev1__tar.gz → 0.6.7.dev3__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.
Potentially problematic release.
This version of intentkit might be problematic. Click here for more details.
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/PKG-INFO +1 -1
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/__init__.py +1 -1
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/skill.py +42 -2
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/agent.py +118 -2
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/engine.py +39 -12
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/skill.py +48 -2
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/pyproject.toml +1 -1
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/system/__init__.py +24 -0
- intentkit-0.6.7.dev3/skills/system/add_autonomous_task.py +94 -0
- intentkit-0.6.7.dev3/skills/system/delete_autonomous_task.py +56 -0
- intentkit-0.6.7.dev3/skills/system/list_autonomous_tasks.py +52 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/system/schema.json +44 -2
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/.gitignore +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/LICENSE +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/MANIFEST.in +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/agent.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/api.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/engine.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/exception.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/graph.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/abstracts/twitter.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/clients/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/clients/cdp.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/clients/twitter.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/config/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/config/config.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/api.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/client.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/credit.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/node.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/core/prompt.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/agent.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/agent_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/agent_schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/app_setting.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/chat.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/conversation.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/credit.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/db.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/db_mig.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/generator.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/llm.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/redis.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/skill.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/models/user.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/acolyt/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/acolyt/acolyt.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/acolyt/ask.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/acolyt/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/acolyt/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/aixbt/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/aixbt/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/aixbt/aixbt.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/aixbt/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/aixbt/projects.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/aixbt/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/allora/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/allora/allora.jpeg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/allora/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/allora/price.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/allora/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/carv.webp +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/fetch_news.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/onchain_query.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/carv/token_info_and_price.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cdp/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cdp/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cdp/cdp.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cdp/get_balance.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cdp/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cdp/swap.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/chainlist/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/chainlist/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/chainlist/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/chainlist/chain_lookup.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/chainlist/chainlist.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/chainlist/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/common/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/common/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/common/common.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/common/current_time.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/common/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/constants.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/cookiefun.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/get_account_details.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/get_account_feed.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/get_account_smart_followers.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/get_sectors.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cookiefun/search_accounts.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/api.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/cryptocompare.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/fetch_news.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/fetch_price.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/fetch_top_exchanges.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/fetch_top_market_cap.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/fetch_top_volume.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/fetch_trading_signals.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptocompare/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptopanic/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptopanic/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptopanic/cryptopanic.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptopanic/fetch_crypto_news.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptopanic/fetch_crypto_sentiment.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/cryptopanic/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dapplooker/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dapplooker/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dapplooker/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dapplooker/dapplooker.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dapplooker/dapplooker_token_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dapplooker/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/api.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_batch_historical_prices.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_block.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_current_prices.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_first_price.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_historical_prices.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_price_chart.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/coins/fetch_price_percentage.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/config/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/config/chains.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/defillama.jpeg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/fees/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/fees/fetch_fees_overview.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/stablecoins/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/stablecoins/fetch_stablecoin_chains.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/stablecoins/fetch_stablecoin_charts.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/stablecoins/fetch_stablecoin_prices.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/stablecoins/fetch_stablecoins.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tests/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tests/api_integration.test.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tests/api_unit.test.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/fetch_chain_historical_tvl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/fetch_chains.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/fetch_historical_tvl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/fetch_protocol.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/fetch_protocol_current_tvl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/tvl/fetch_protocols.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/volumes/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/volumes/fetch_dex_overview.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/volumes/fetch_dex_summary.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/volumes/fetch_options_overview.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/yields/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/yields/fetch_pool_chart.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/defillama/yields/fetch_pools.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/dexscreener.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/model/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/model/search_token_response.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dexscreener/search_token.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dune_analytics/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dune_analytics/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dune_analytics/dune.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dune_analytics/fetch_kol_buys.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dune_analytics/fetch_nation_metrics.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/dune_analytics/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/elfa.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/mention.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/stats.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/elfa/tokens.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/abi/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/abi/approval.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/abi/erc20.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/abi/route.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/best_yield.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/enso.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/networks.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/prices.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/route.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/tokens.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/enso/wallet.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/clear.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/crawl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/firecrawl.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/query.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/scrape.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/firecrawl/utils.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/github/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/github/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/github/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/github/github.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/github/github_search.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/github/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/heurist.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_animagine_xl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_arthemy_comics.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_arthemy_real.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_braindance.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_cyber_realistic_xl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_flux_1_dev.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/image_generation_sdxl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/heurist/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/get.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/http.svg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/post.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/put.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/http/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/lifi.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/token_execute.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/token_quote.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/lifi/utils.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/api.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/fetch_chain_portfolio.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/fetch_nft_portfolio.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/fetch_solana_portfolio.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/fetch_wallet_portfolio.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/moralis.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/tests/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/moralis/tests/test_wallet.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/nation/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/nation/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/nation/nation.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/nation/nft_check.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/nation/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/dalle_image_generation.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/gpt_image_generation.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/gpt_image_to_image.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/image_to_text.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/openai.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/openai/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/constants.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/moralis.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/token_balances.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_approvals.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_defi_positions.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_history.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_net_worth.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_nfts.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_profitability.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_profitability_summary.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_stats.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/portfolio/wallet_swaps.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/skills.toml +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/get_channel.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/get_message.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/schedule_message.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/send_message.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/slack/slack.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/delete_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/fetch_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/insert_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/invoke_function.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/supabase.svg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/update_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/supabase/upsert_data.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/system/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/system/read_agent_api_key.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/system/regenerate_agent_api_key.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/system/system.svg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/tavily.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/tavily_extract.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/tavily/tavily_search.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/constants.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/erc20_transfers.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/moralis.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/token_analytics.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/token_price.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/token/token_search.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/follow_user.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/get_mentions.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/get_timeline.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/get_user_by_username.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/get_user_tweets.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/like_tweet.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/post_tweet.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/reply_tweet.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/retweet.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/search_tweets.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/twitter/twitter.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/unrealspeech/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/unrealspeech/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/unrealspeech/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/unrealspeech/text_to_speech.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/unrealspeech/unrealspeech.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_audio/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_audio/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_audio/input.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_audio/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_audio/venice_audio.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_audio/venice_logo.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/api.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/config.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_enhance/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_enhance/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_enhance/image_enhance.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_enhance/image_enhance_base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_enhance/image_enhance_input.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_fluently_xl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_flux_dev.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_flux_dev_uncensored.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_input.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_lustify_sdxl.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_pony_realism.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_stable_diffusion_3_5.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_generation/image_generation_venice_sd35.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_upscale/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_upscale/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_upscale/image_upscale.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_upscale/image_upscale_base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_upscale/image_upscale_input.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_vision/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_vision/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_vision/image_vision.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_vision/image_vision_base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/image_vision/image_vision_input.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/utils.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/venice_image/venice_image.jpg +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/README.md +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/base.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/document_indexer.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/langchain.png +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/schema.json +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/scrape_and_index.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/utils.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/skills/web_scraper/website_indexer.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/__init__.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/chain.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/error.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/logging.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/random.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/s3.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/slack_alert.py +0 -0
- {intentkit-0.6.7.dev1 → intentkit-0.6.7.dev3}/utils/tx.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.6.7.
|
|
3
|
+
Version: 0.6.7.dev3
|
|
4
4
|
Summary: Intent-based AI Agent Platform - Core Package
|
|
5
5
|
Project-URL: Homepage, https://github.com/crestal-network/intentkit
|
|
6
6
|
Project-URL: Repository, https://github.com/crestal-network/intentkit
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from abc import ABC, abstractmethod
|
|
2
|
-
from typing import Any, Dict, Optional
|
|
2
|
+
from typing import Any, Dict, List, Optional
|
|
3
3
|
|
|
4
|
-
from intentkit.models.agent import Agent
|
|
4
|
+
from intentkit.models.agent import Agent, AgentAutonomous
|
|
5
5
|
from intentkit.models.agent_data import AgentData, AgentQuota
|
|
6
6
|
|
|
7
7
|
|
|
@@ -139,3 +139,43 @@ class SkillStoreABC(ABC):
|
|
|
139
139
|
data: JSON data to store
|
|
140
140
|
"""
|
|
141
141
|
pass
|
|
142
|
+
|
|
143
|
+
@staticmethod
|
|
144
|
+
@abstractmethod
|
|
145
|
+
async def list_autonomous_tasks(agent_id: str) -> List[AgentAutonomous]:
|
|
146
|
+
"""List all autonomous tasks for an agent.
|
|
147
|
+
|
|
148
|
+
Args:
|
|
149
|
+
agent_id: ID of the agent
|
|
150
|
+
|
|
151
|
+
Returns:
|
|
152
|
+
List[AgentAutonomous]: List of autonomous task configurations
|
|
153
|
+
"""
|
|
154
|
+
pass
|
|
155
|
+
|
|
156
|
+
@staticmethod
|
|
157
|
+
@abstractmethod
|
|
158
|
+
async def add_autonomous_task(
|
|
159
|
+
agent_id: str, task: AgentAutonomous
|
|
160
|
+
) -> AgentAutonomous:
|
|
161
|
+
"""Add a new autonomous task to an agent.
|
|
162
|
+
|
|
163
|
+
Args:
|
|
164
|
+
agent_id: ID of the agent
|
|
165
|
+
task: Autonomous task configuration
|
|
166
|
+
|
|
167
|
+
Returns:
|
|
168
|
+
AgentAutonomous: The created task
|
|
169
|
+
"""
|
|
170
|
+
pass
|
|
171
|
+
|
|
172
|
+
@staticmethod
|
|
173
|
+
@abstractmethod
|
|
174
|
+
async def delete_autonomous_task(agent_id: str, task_id: str) -> None:
|
|
175
|
+
"""Delete an autonomous task from an agent.
|
|
176
|
+
|
|
177
|
+
Args:
|
|
178
|
+
agent_id: ID of the agent
|
|
179
|
+
task_id: ID of the task to delete
|
|
180
|
+
"""
|
|
181
|
+
pass
|
|
@@ -2,11 +2,11 @@ import logging
|
|
|
2
2
|
import time
|
|
3
3
|
from datetime import datetime, timedelta, timezone
|
|
4
4
|
from decimal import Decimal
|
|
5
|
-
from typing import Dict
|
|
5
|
+
from typing import Dict, List
|
|
6
6
|
|
|
7
7
|
from sqlalchemy import func, select, text, update
|
|
8
8
|
|
|
9
|
-
from intentkit.models.agent import Agent, AgentTable
|
|
9
|
+
from intentkit.models.agent import Agent, AgentAutonomous, AgentTable
|
|
10
10
|
from intentkit.models.agent_data import AgentQuotaTable
|
|
11
11
|
from intentkit.models.credit import CreditEventTable, EventType, UpstreamType
|
|
12
12
|
from intentkit.models.db import get_session
|
|
@@ -274,3 +274,119 @@ async def update_agent_action_cost():
|
|
|
274
274
|
logger.info(
|
|
275
275
|
f"Finished updating action costs for {total_updated} agents in {total_time:.3f}s"
|
|
276
276
|
)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
async def list_autonomous_tasks(agent_id: str) -> List[AgentAutonomous]:
|
|
280
|
+
"""
|
|
281
|
+
List all autonomous tasks for an agent.
|
|
282
|
+
|
|
283
|
+
Args:
|
|
284
|
+
agent_id: ID of the agent
|
|
285
|
+
|
|
286
|
+
Returns:
|
|
287
|
+
List[AgentAutonomous]: List of autonomous task configurations
|
|
288
|
+
|
|
289
|
+
Raises:
|
|
290
|
+
IntentKitAPIError: If agent is not found
|
|
291
|
+
"""
|
|
292
|
+
agent = await Agent.get(agent_id)
|
|
293
|
+
if not agent:
|
|
294
|
+
raise IntentKitAPIError(
|
|
295
|
+
400, "AgentNotFound", f"Agent with ID {agent_id} does not exist."
|
|
296
|
+
)
|
|
297
|
+
|
|
298
|
+
if not agent.autonomous:
|
|
299
|
+
return []
|
|
300
|
+
|
|
301
|
+
return agent.autonomous
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
async def add_autonomous_task(agent_id: str, task: AgentAutonomous) -> AgentAutonomous:
|
|
305
|
+
"""
|
|
306
|
+
Add a new autonomous task to an agent.
|
|
307
|
+
|
|
308
|
+
Args:
|
|
309
|
+
agent_id: ID of the agent
|
|
310
|
+
task: Autonomous task configuration (id will be generated if not provided)
|
|
311
|
+
|
|
312
|
+
Returns:
|
|
313
|
+
AgentAutonomous: The created task with generated ID
|
|
314
|
+
|
|
315
|
+
Raises:
|
|
316
|
+
IntentKitAPIError: If agent is not found
|
|
317
|
+
"""
|
|
318
|
+
agent = await Agent.get(agent_id)
|
|
319
|
+
if not agent:
|
|
320
|
+
raise IntentKitAPIError(
|
|
321
|
+
400, "AgentNotFound", f"Agent with ID {agent_id} does not exist."
|
|
322
|
+
)
|
|
323
|
+
|
|
324
|
+
# Get current autonomous tasks
|
|
325
|
+
current_tasks = agent.autonomous or []
|
|
326
|
+
if not isinstance(current_tasks, list):
|
|
327
|
+
current_tasks = []
|
|
328
|
+
|
|
329
|
+
# Add the new task
|
|
330
|
+
current_tasks.append(task)
|
|
331
|
+
|
|
332
|
+
# Update the agent in the database
|
|
333
|
+
async with get_session() as session:
|
|
334
|
+
update_stmt = (
|
|
335
|
+
update(AgentTable)
|
|
336
|
+
.where(AgentTable.id == agent_id)
|
|
337
|
+
.values(autonomous=current_tasks)
|
|
338
|
+
)
|
|
339
|
+
await session.execute(update_stmt)
|
|
340
|
+
await session.commit()
|
|
341
|
+
|
|
342
|
+
logger.info(f"Added autonomous task {task.id} to agent {agent_id}")
|
|
343
|
+
return task
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
async def delete_autonomous_task(agent_id: str, task_id: str) -> None:
|
|
347
|
+
"""
|
|
348
|
+
Delete an autonomous task from an agent.
|
|
349
|
+
|
|
350
|
+
Args:
|
|
351
|
+
agent_id: ID of the agent
|
|
352
|
+
task_id: ID of the task to delete
|
|
353
|
+
|
|
354
|
+
Raises:
|
|
355
|
+
IntentKitAPIError: If agent is not found or task is not found
|
|
356
|
+
"""
|
|
357
|
+
agent = await Agent.get(agent_id)
|
|
358
|
+
if not agent:
|
|
359
|
+
raise IntentKitAPIError(
|
|
360
|
+
400, "AgentNotFound", f"Agent with ID {agent_id} does not exist."
|
|
361
|
+
)
|
|
362
|
+
|
|
363
|
+
# Get current autonomous tasks
|
|
364
|
+
current_tasks = agent.autonomous or []
|
|
365
|
+
if not isinstance(current_tasks, list):
|
|
366
|
+
current_tasks = []
|
|
367
|
+
|
|
368
|
+
# Find and remove the task
|
|
369
|
+
task_found = False
|
|
370
|
+
updated_tasks = []
|
|
371
|
+
for task_data in current_tasks:
|
|
372
|
+
if isinstance(task_data, dict) and task_data.get("id") == task_id:
|
|
373
|
+
task_found = True
|
|
374
|
+
continue
|
|
375
|
+
updated_tasks.append(task_data)
|
|
376
|
+
|
|
377
|
+
if not task_found:
|
|
378
|
+
raise IntentKitAPIError(
|
|
379
|
+
404, "TaskNotFound", f"Autonomous task with ID {task_id} not found."
|
|
380
|
+
)
|
|
381
|
+
|
|
382
|
+
# Update the agent in the database
|
|
383
|
+
async with get_session() as session:
|
|
384
|
+
update_stmt = (
|
|
385
|
+
update(AgentTable)
|
|
386
|
+
.where(AgentTable.id == agent_id)
|
|
387
|
+
.values(autonomous=updated_tasks)
|
|
388
|
+
)
|
|
389
|
+
await session.execute(update_stmt)
|
|
390
|
+
await session.commit()
|
|
391
|
+
|
|
392
|
+
logger.info(f"Deleted autonomous task {task_id} from agent {agent_id}")
|
|
@@ -221,6 +221,45 @@ async def create_agent(
|
|
|
221
221
|
):
|
|
222
222
|
entrypoint_prompt = agent.telegram_entrypoint_prompt
|
|
223
223
|
logger.debug("telegram entrypoint prompt added")
|
|
224
|
+
elif entrypoint == AuthorType.TRIGGER.value:
|
|
225
|
+
task_id = (
|
|
226
|
+
config["configurable"]
|
|
227
|
+
.get("chat_id", "")
|
|
228
|
+
.removeprefix("autonomous-")
|
|
229
|
+
)
|
|
230
|
+
# Find the autonomous task by task_id
|
|
231
|
+
autonomous_task = None
|
|
232
|
+
if agent.autonomous:
|
|
233
|
+
for task in agent.autonomous:
|
|
234
|
+
if task.id == task_id:
|
|
235
|
+
autonomous_task = task
|
|
236
|
+
break
|
|
237
|
+
|
|
238
|
+
if autonomous_task:
|
|
239
|
+
# Build detailed task info - always include task_id
|
|
240
|
+
if autonomous_task.name:
|
|
241
|
+
task_info = f"You are running an autonomous task '{autonomous_task.name}' (ID: {task_id})"
|
|
242
|
+
else:
|
|
243
|
+
task_info = (
|
|
244
|
+
f"You are running an autonomous task (ID: {task_id})"
|
|
245
|
+
)
|
|
246
|
+
|
|
247
|
+
# Add description if available
|
|
248
|
+
if autonomous_task.description:
|
|
249
|
+
task_info += f": {autonomous_task.description}"
|
|
250
|
+
|
|
251
|
+
# Add cycle info
|
|
252
|
+
if autonomous_task.minutes:
|
|
253
|
+
task_info += f". This task runs every {autonomous_task.minutes} minute(s)"
|
|
254
|
+
elif autonomous_task.cron:
|
|
255
|
+
task_info += (
|
|
256
|
+
f". This task runs on schedule: {autonomous_task.cron}"
|
|
257
|
+
)
|
|
258
|
+
|
|
259
|
+
entrypoint_prompt = f"{task_info}. "
|
|
260
|
+
else:
|
|
261
|
+
# Fallback if task not found
|
|
262
|
+
entrypoint_prompt = f"You are running an autonomous task. The task id is {task_id}. "
|
|
224
263
|
if entrypoint_prompt:
|
|
225
264
|
entrypoint_prompt = await explain_prompt(entrypoint_prompt)
|
|
226
265
|
final_system_prompt = f"{final_system_prompt}## Entrypoint rules\n\n{entrypoint_prompt}\n\n"
|
|
@@ -1012,15 +1051,3 @@ async def thread_stats(agent_id: str, chat_id: str) -> list[BaseMessage]:
|
|
|
1012
1051
|
return snap.values["messages"]
|
|
1013
1052
|
else:
|
|
1014
1053
|
return []
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
async def is_payment_required(input: ChatMessageCreate, agent: Agent) -> bool:
|
|
1018
|
-
if not config.payment_enabled:
|
|
1019
|
-
return False
|
|
1020
|
-
payment_settings = await AppSetting.payment()
|
|
1021
|
-
if payment_settings.agent_whitelist_enabled:
|
|
1022
|
-
if agent.id not in payment_settings.agent_whitelist:
|
|
1023
|
-
return False
|
|
1024
|
-
if input.user_id and agent.owner:
|
|
1025
|
-
return True
|
|
1026
|
-
return False
|
|
@@ -1,8 +1,17 @@
|
|
|
1
|
-
from typing import Any, Dict, Optional
|
|
1
|
+
from typing import Any, Dict, List, Optional
|
|
2
2
|
|
|
3
3
|
from intentkit.abstracts.skill import SkillStoreABC
|
|
4
4
|
from intentkit.config.config import config
|
|
5
|
-
from intentkit.
|
|
5
|
+
from intentkit.core.agent import (
|
|
6
|
+
add_autonomous_task as _add_autonomous_task,
|
|
7
|
+
)
|
|
8
|
+
from intentkit.core.agent import (
|
|
9
|
+
delete_autonomous_task as _delete_autonomous_task,
|
|
10
|
+
)
|
|
11
|
+
from intentkit.core.agent import (
|
|
12
|
+
list_autonomous_tasks as _list_autonomous_tasks,
|
|
13
|
+
)
|
|
14
|
+
from intentkit.models.agent import Agent, AgentAutonomous
|
|
6
15
|
from intentkit.models.agent_data import AgentData, AgentQuota
|
|
7
16
|
from intentkit.models.skill import (
|
|
8
17
|
AgentSkillData,
|
|
@@ -131,5 +140,42 @@ class SkillStore(SkillStoreABC):
|
|
|
131
140
|
)
|
|
132
141
|
await skill_data.save()
|
|
133
142
|
|
|
143
|
+
@staticmethod
|
|
144
|
+
async def list_autonomous_tasks(agent_id: str) -> List[AgentAutonomous]:
|
|
145
|
+
"""List all autonomous tasks for an agent.
|
|
146
|
+
|
|
147
|
+
Args:
|
|
148
|
+
agent_id: ID of the agent
|
|
149
|
+
|
|
150
|
+
Returns:
|
|
151
|
+
List[AgentAutonomous]: List of autonomous task configurations
|
|
152
|
+
"""
|
|
153
|
+
return await _list_autonomous_tasks(agent_id)
|
|
154
|
+
|
|
155
|
+
@staticmethod
|
|
156
|
+
async def add_autonomous_task(
|
|
157
|
+
agent_id: str, task: AgentAutonomous
|
|
158
|
+
) -> AgentAutonomous:
|
|
159
|
+
"""Add a new autonomous task to an agent.
|
|
160
|
+
|
|
161
|
+
Args:
|
|
162
|
+
agent_id: ID of the agent
|
|
163
|
+
task: Autonomous task configuration
|
|
164
|
+
|
|
165
|
+
Returns:
|
|
166
|
+
AgentAutonomous: The created task
|
|
167
|
+
"""
|
|
168
|
+
return await _add_autonomous_task(agent_id, task)
|
|
169
|
+
|
|
170
|
+
@staticmethod
|
|
171
|
+
async def delete_autonomous_task(agent_id: str, task_id: str) -> None:
|
|
172
|
+
"""Delete an autonomous task from an agent.
|
|
173
|
+
|
|
174
|
+
Args:
|
|
175
|
+
agent_id: ID of the agent
|
|
176
|
+
task_id: ID of the task to delete
|
|
177
|
+
"""
|
|
178
|
+
await _delete_autonomous_task(agent_id, task_id)
|
|
179
|
+
|
|
134
180
|
|
|
135
181
|
skill_store = SkillStore()
|
|
@@ -5,7 +5,10 @@ from typing import TypedDict
|
|
|
5
5
|
|
|
6
6
|
from intentkit.abstracts.skill import SkillStoreABC
|
|
7
7
|
from intentkit.skills.base import SkillConfig, SkillOwnerState
|
|
8
|
+
from intentkit.skills.system.add_autonomous_task import AddAutonomousTask
|
|
8
9
|
from intentkit.skills.system.base import SystemBaseTool
|
|
10
|
+
from intentkit.skills.system.delete_autonomous_task import DeleteAutonomousTask
|
|
11
|
+
from intentkit.skills.system.list_autonomous_tasks import ListAutonomousTasks
|
|
9
12
|
from intentkit.skills.system.read_agent_api_key import ReadAgentApiKey
|
|
10
13
|
from intentkit.skills.system.regenerate_agent_api_key import RegenerateAgentApiKey
|
|
11
14
|
|
|
@@ -18,6 +21,9 @@ logger = logging.getLogger(__name__)
|
|
|
18
21
|
class SkillStates(TypedDict):
|
|
19
22
|
read_agent_api_key: SkillOwnerState
|
|
20
23
|
regenerate_agent_api_key: SkillOwnerState
|
|
24
|
+
list_autonomous_tasks: SkillOwnerState
|
|
25
|
+
add_autonomous_task: SkillOwnerState
|
|
26
|
+
delete_autonomous_task: SkillOwnerState
|
|
21
27
|
|
|
22
28
|
|
|
23
29
|
class Config(SkillConfig):
|
|
@@ -85,6 +91,24 @@ def get_system_skill(
|
|
|
85
91
|
skill_store=store,
|
|
86
92
|
)
|
|
87
93
|
return _cache[name]
|
|
94
|
+
elif name == "list_autonomous_tasks":
|
|
95
|
+
if name not in _cache:
|
|
96
|
+
_cache[name] = ListAutonomousTasks(
|
|
97
|
+
skill_store=store,
|
|
98
|
+
)
|
|
99
|
+
return _cache[name]
|
|
100
|
+
elif name == "add_autonomous_task":
|
|
101
|
+
if name not in _cache:
|
|
102
|
+
_cache[name] = AddAutonomousTask(
|
|
103
|
+
skill_store=store,
|
|
104
|
+
)
|
|
105
|
+
return _cache[name]
|
|
106
|
+
elif name == "delete_autonomous_task":
|
|
107
|
+
if name not in _cache:
|
|
108
|
+
_cache[name] = DeleteAutonomousTask(
|
|
109
|
+
skill_store=store,
|
|
110
|
+
)
|
|
111
|
+
return _cache[name]
|
|
88
112
|
else:
|
|
89
113
|
logger.warning(f"Unknown system skill: {name}")
|
|
90
114
|
return None
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from langchain_core.runnables import RunnableConfig
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
|
+
|
|
6
|
+
from intentkit.models.agent import AgentAutonomous
|
|
7
|
+
from intentkit.skills.system.base import SystemBaseTool
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class AddAutonomousTaskInput(BaseModel):
|
|
11
|
+
"""Input model for add_autonomous_task skill."""
|
|
12
|
+
|
|
13
|
+
name: Optional[str] = Field(
|
|
14
|
+
default=None, description="Display name of the autonomous task configuration"
|
|
15
|
+
)
|
|
16
|
+
description: Optional[str] = Field(
|
|
17
|
+
default=None, description="Description of the autonomous task configuration"
|
|
18
|
+
)
|
|
19
|
+
minutes: Optional[int] = Field(
|
|
20
|
+
default=None,
|
|
21
|
+
description="Interval in minutes between operations, mutually exclusive with cron",
|
|
22
|
+
)
|
|
23
|
+
cron: Optional[str] = Field(
|
|
24
|
+
default=None,
|
|
25
|
+
description="Cron expression for scheduling operations, mutually exclusive with minutes",
|
|
26
|
+
)
|
|
27
|
+
prompt: str = Field(description="Special prompt used during autonomous operation")
|
|
28
|
+
enabled: Optional[bool] = Field(
|
|
29
|
+
default=False, description="Whether the autonomous configuration is enabled"
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class AddAutonomousTaskOutput(BaseModel):
|
|
34
|
+
"""Output model for add_autonomous_task skill."""
|
|
35
|
+
|
|
36
|
+
task: AgentAutonomous = Field(
|
|
37
|
+
description="The created autonomous task configuration"
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class AddAutonomousTask(SystemBaseTool):
|
|
42
|
+
"""Skill to add a new autonomous task to an agent."""
|
|
43
|
+
|
|
44
|
+
name: str = "system_add_autonomous_task"
|
|
45
|
+
description: str = (
|
|
46
|
+
"Add a new autonomous task configuration to the agent. "
|
|
47
|
+
"Allows setting up scheduled operations with custom prompts and intervals. "
|
|
48
|
+
"The minutes and cron fields are mutually exclusive. But you must provide one of them. "
|
|
49
|
+
"If user want to add a condition task, you can add a 5 minutes task to check the condition. "
|
|
50
|
+
"If the user does not explicitly state that the condition task should be executed continuously, "
|
|
51
|
+
"then add in the task prompt that it will delete itself after successful execution."
|
|
52
|
+
)
|
|
53
|
+
args_schema = AddAutonomousTaskInput
|
|
54
|
+
|
|
55
|
+
async def _arun(
|
|
56
|
+
self,
|
|
57
|
+
name: Optional[str] = None,
|
|
58
|
+
description: Optional[str] = None,
|
|
59
|
+
minutes: Optional[int] = None,
|
|
60
|
+
cron: Optional[str] = None,
|
|
61
|
+
prompt: str = "",
|
|
62
|
+
enabled: Optional[bool] = False,
|
|
63
|
+
config: RunnableConfig = None,
|
|
64
|
+
**kwargs,
|
|
65
|
+
) -> AddAutonomousTaskOutput:
|
|
66
|
+
"""Add an autonomous task to the agent.
|
|
67
|
+
|
|
68
|
+
Args:
|
|
69
|
+
name: Display name of the task
|
|
70
|
+
description: Description of the task
|
|
71
|
+
minutes: Interval in minutes (mutually exclusive with cron)
|
|
72
|
+
cron: Cron expression (mutually exclusive with minutes)
|
|
73
|
+
prompt: Special prompt for autonomous operation
|
|
74
|
+
enabled: Whether the task is enabled
|
|
75
|
+
config: Runtime configuration containing agent context
|
|
76
|
+
|
|
77
|
+
Returns:
|
|
78
|
+
AddAutonomousTaskOutput: The created task
|
|
79
|
+
"""
|
|
80
|
+
context = self.context_from_config(config)
|
|
81
|
+
agent_id = context.agent_id
|
|
82
|
+
|
|
83
|
+
task = AgentAutonomous(
|
|
84
|
+
name=name,
|
|
85
|
+
description=description,
|
|
86
|
+
minutes=minutes,
|
|
87
|
+
cron=cron,
|
|
88
|
+
prompt=prompt,
|
|
89
|
+
enabled=enabled,
|
|
90
|
+
)
|
|
91
|
+
|
|
92
|
+
created_task = await self.skill_store.add_autonomous_task(agent_id, task)
|
|
93
|
+
|
|
94
|
+
return AddAutonomousTaskOutput(task=created_task)
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
from langchain_core.runnables import RunnableConfig
|
|
2
|
+
from pydantic import BaseModel, Field
|
|
3
|
+
|
|
4
|
+
from intentkit.skills.system.base import SystemBaseTool
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class DeleteAutonomousTaskInput(BaseModel):
|
|
8
|
+
"""Input model for delete_autonomous_task skill."""
|
|
9
|
+
|
|
10
|
+
task_id: str = Field(
|
|
11
|
+
description="The unique identifier of the autonomous task to delete"
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class DeleteAutonomousTaskOutput(BaseModel):
|
|
16
|
+
"""Output model for delete_autonomous_task skill."""
|
|
17
|
+
|
|
18
|
+
success: bool = Field(
|
|
19
|
+
description="Whether the task was successfully deleted", default=True
|
|
20
|
+
)
|
|
21
|
+
message: str = Field(description="Confirmation message about the deletion")
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class DeleteAutonomousTask(SystemBaseTool):
|
|
25
|
+
"""Skill to delete an autonomous task from an agent."""
|
|
26
|
+
|
|
27
|
+
name: str = "system_delete_autonomous_task"
|
|
28
|
+
description: str = (
|
|
29
|
+
"Delete an autonomous task configuration from the agent. "
|
|
30
|
+
"Requires the task ID to identify which task to remove."
|
|
31
|
+
)
|
|
32
|
+
args_schema = DeleteAutonomousTaskInput
|
|
33
|
+
|
|
34
|
+
async def _arun(
|
|
35
|
+
self,
|
|
36
|
+
task_id: str,
|
|
37
|
+
config: RunnableConfig,
|
|
38
|
+
**kwargs,
|
|
39
|
+
) -> DeleteAutonomousTaskOutput:
|
|
40
|
+
"""Delete an autonomous task from the agent.
|
|
41
|
+
|
|
42
|
+
Args:
|
|
43
|
+
task_id: The ID of the task to delete
|
|
44
|
+
config: Runtime configuration containing agent context
|
|
45
|
+
|
|
46
|
+
Returns:
|
|
47
|
+
DeleteAutonomousTaskOutput: Confirmation of deletion
|
|
48
|
+
"""
|
|
49
|
+
context = self.context_from_config(config)
|
|
50
|
+
agent_id = context.agent_id
|
|
51
|
+
|
|
52
|
+
await self.skill_store.delete_autonomous_task(agent_id, task_id)
|
|
53
|
+
|
|
54
|
+
return DeleteAutonomousTaskOutput(
|
|
55
|
+
success=True, message=f"Successfully deleted autonomous task {task_id}"
|
|
56
|
+
)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
3
|
+
from langchain_core.runnables import RunnableConfig
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
|
+
|
|
6
|
+
from intentkit.models.agent import AgentAutonomous
|
|
7
|
+
from intentkit.skills.system.base import SystemBaseTool
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ListAutonomousTasksInput(BaseModel):
|
|
11
|
+
"""Input model for list_autonomous_tasks skill."""
|
|
12
|
+
|
|
13
|
+
pass
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ListAutonomousTasksOutput(BaseModel):
|
|
17
|
+
"""Output model for list_autonomous_tasks skill."""
|
|
18
|
+
|
|
19
|
+
tasks: List[AgentAutonomous] = Field(
|
|
20
|
+
description="List of autonomous task configurations for the agent"
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class ListAutonomousTasks(SystemBaseTool):
|
|
25
|
+
"""Skill to list all autonomous tasks for an agent."""
|
|
26
|
+
|
|
27
|
+
name: str = "system_list_autonomous_tasks"
|
|
28
|
+
description: str = (
|
|
29
|
+
"List all autonomous task configurations for the agent. "
|
|
30
|
+
"Returns details about each task including scheduling, prompts, and status."
|
|
31
|
+
)
|
|
32
|
+
args_schema = ListAutonomousTasksInput
|
|
33
|
+
|
|
34
|
+
async def _arun(
|
|
35
|
+
self,
|
|
36
|
+
config: RunnableConfig,
|
|
37
|
+
**kwargs,
|
|
38
|
+
) -> ListAutonomousTasksOutput:
|
|
39
|
+
"""List autonomous tasks for the agent.
|
|
40
|
+
|
|
41
|
+
Args:
|
|
42
|
+
config: Runtime configuration containing agent context
|
|
43
|
+
|
|
44
|
+
Returns:
|
|
45
|
+
ListAutonomousTasksOutput: List of autonomous tasks
|
|
46
|
+
"""
|
|
47
|
+
context = self.context_from_config(config)
|
|
48
|
+
agent_id = context.agent_id
|
|
49
|
+
|
|
50
|
+
tasks = await self.skill_store.list_autonomous_tasks(agent_id)
|
|
51
|
+
|
|
52
|
+
return ListAutonomousTasksOutput(tasks=tasks)
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"Agent Owner Only"
|
|
32
32
|
],
|
|
33
33
|
"description": "Retrieve the API key for the agent. If no API key exists, generates and sets a new one.",
|
|
34
|
-
"default": "
|
|
34
|
+
"default": "disabled"
|
|
35
35
|
},
|
|
36
36
|
"regenerate_agent_api_key": {
|
|
37
37
|
"type": "string",
|
|
@@ -45,7 +45,49 @@
|
|
|
45
45
|
"Agent Owner Only"
|
|
46
46
|
],
|
|
47
47
|
"description": "Generate a new API key for the agent, replacing any existing key.",
|
|
48
|
-
"default": "
|
|
48
|
+
"default": "disabled"
|
|
49
|
+
},
|
|
50
|
+
"list_autonomous_tasks": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"title": "List Autonomous Tasks",
|
|
53
|
+
"enum": [
|
|
54
|
+
"disabled",
|
|
55
|
+
"private"
|
|
56
|
+
],
|
|
57
|
+
"x-enum-title": [
|
|
58
|
+
"Disabled",
|
|
59
|
+
"Agent Owner Only"
|
|
60
|
+
],
|
|
61
|
+
"description": "List all autonomous task configurations for the agent.",
|
|
62
|
+
"default": "disabled"
|
|
63
|
+
},
|
|
64
|
+
"add_autonomous_task": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"title": "Add Autonomous Task",
|
|
67
|
+
"enum": [
|
|
68
|
+
"disabled",
|
|
69
|
+
"private"
|
|
70
|
+
],
|
|
71
|
+
"x-enum-title": [
|
|
72
|
+
"Disabled",
|
|
73
|
+
"Agent Owner Only"
|
|
74
|
+
],
|
|
75
|
+
"description": "Add a new autonomous task configuration to the agent.",
|
|
76
|
+
"default": "disabled"
|
|
77
|
+
},
|
|
78
|
+
"delete_autonomous_task": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"title": "Delete Autonomous Task",
|
|
81
|
+
"enum": [
|
|
82
|
+
"disabled",
|
|
83
|
+
"private"
|
|
84
|
+
],
|
|
85
|
+
"x-enum-title": [
|
|
86
|
+
"Disabled",
|
|
87
|
+
"Agent Owner Only"
|
|
88
|
+
],
|
|
89
|
+
"description": "Delete an autonomous task configuration from the agent.",
|
|
90
|
+
"default": "disabled"
|
|
49
91
|
}
|
|
50
92
|
}
|
|
51
93
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|