├── .env.example ├── .github └── ISSUE_TEMPLATE │ └── new_crew.md ├── .gitignore ├── .gitmodules ├── .replit ├── .streamlit └── config.toml ├── CONTRIBUTING.md ├── README.md ├── aibtc-v1 ├── app.py ├── chat.py ├── components │ ├── agents_tab.py │ ├── execution_tab.py │ ├── tasks_tab.py │ └── tools_tab.py ├── crews │ ├── clarity_code_generator_v2.py │ ├── smart_contract_analyzer_v2.py │ ├── trading_analyzer.py │ ├── user_chat_specialist.py │ └── wallet_summarizer.py ├── run_clarinet.py └── utils │ ├── callbacks.py │ ├── clarinet.py │ ├── clarity.py │ ├── crews.py │ ├── scripts.py │ ├── session.py │ └── vector.py ├── clarinet ├── glibc-2.34 │ ├── ld-linux-x86-64.so.2 │ ├── libc.so.6 │ └── libgcc_s.so.1 └── setup-clarinet.sh ├── legacy_code ├── agents.py ├── aibtc-v1 │ ├── agents.py │ ├── tasks.py │ └── tools.py ├── bitcoin_crew_app.py ├── bitcoin_crew_app_selections.py ├── meeting_preparation.py ├── meeting_summary.py ├── news_examples.py ├── old_aibtcdev_streamlit.py ├── run_crew.py ├── run_managed_crew.py └── tools │ ├── aibtc_token.py │ ├── bun_runner.py │ ├── onchain_resources.py │ ├── wallet.py │ └── web_scraper.py ├── replit.nix └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_crew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/.github/ISSUE_TEMPLATE/new_crew.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/.gitmodules -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/.replit -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/README.md -------------------------------------------------------------------------------- /aibtc-v1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/app.py -------------------------------------------------------------------------------- /aibtc-v1/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/chat.py -------------------------------------------------------------------------------- /aibtc-v1/components/agents_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/components/agents_tab.py -------------------------------------------------------------------------------- /aibtc-v1/components/execution_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/components/execution_tab.py -------------------------------------------------------------------------------- /aibtc-v1/components/tasks_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/components/tasks_tab.py -------------------------------------------------------------------------------- /aibtc-v1/components/tools_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/components/tools_tab.py -------------------------------------------------------------------------------- /aibtc-v1/crews/clarity_code_generator_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/crews/clarity_code_generator_v2.py -------------------------------------------------------------------------------- /aibtc-v1/crews/smart_contract_analyzer_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/crews/smart_contract_analyzer_v2.py -------------------------------------------------------------------------------- /aibtc-v1/crews/trading_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/crews/trading_analyzer.py -------------------------------------------------------------------------------- /aibtc-v1/crews/user_chat_specialist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/crews/user_chat_specialist.py -------------------------------------------------------------------------------- /aibtc-v1/crews/wallet_summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/crews/wallet_summarizer.py -------------------------------------------------------------------------------- /aibtc-v1/run_clarinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/run_clarinet.py -------------------------------------------------------------------------------- /aibtc-v1/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/callbacks.py -------------------------------------------------------------------------------- /aibtc-v1/utils/clarinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/clarinet.py -------------------------------------------------------------------------------- /aibtc-v1/utils/clarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/clarity.py -------------------------------------------------------------------------------- /aibtc-v1/utils/crews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/crews.py -------------------------------------------------------------------------------- /aibtc-v1/utils/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/scripts.py -------------------------------------------------------------------------------- /aibtc-v1/utils/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/session.py -------------------------------------------------------------------------------- /aibtc-v1/utils/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/aibtc-v1/utils/vector.py -------------------------------------------------------------------------------- /clarinet/glibc-2.34/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/clarinet/glibc-2.34/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /clarinet/glibc-2.34/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/clarinet/glibc-2.34/libc.so.6 -------------------------------------------------------------------------------- /clarinet/glibc-2.34/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/clarinet/glibc-2.34/libgcc_s.so.1 -------------------------------------------------------------------------------- /clarinet/setup-clarinet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/clarinet/setup-clarinet.sh -------------------------------------------------------------------------------- /legacy_code/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/agents.py -------------------------------------------------------------------------------- /legacy_code/aibtc-v1/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/aibtc-v1/agents.py -------------------------------------------------------------------------------- /legacy_code/aibtc-v1/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/aibtc-v1/tasks.py -------------------------------------------------------------------------------- /legacy_code/aibtc-v1/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/aibtc-v1/tools.py -------------------------------------------------------------------------------- /legacy_code/bitcoin_crew_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/bitcoin_crew_app.py -------------------------------------------------------------------------------- /legacy_code/bitcoin_crew_app_selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/bitcoin_crew_app_selections.py -------------------------------------------------------------------------------- /legacy_code/meeting_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/meeting_preparation.py -------------------------------------------------------------------------------- /legacy_code/meeting_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/meeting_summary.py -------------------------------------------------------------------------------- /legacy_code/news_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/news_examples.py -------------------------------------------------------------------------------- /legacy_code/old_aibtcdev_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/old_aibtcdev_streamlit.py -------------------------------------------------------------------------------- /legacy_code/run_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/run_crew.py -------------------------------------------------------------------------------- /legacy_code/run_managed_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/run_managed_crew.py -------------------------------------------------------------------------------- /legacy_code/tools/aibtc_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/tools/aibtc_token.py -------------------------------------------------------------------------------- /legacy_code/tools/bun_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/tools/bun_runner.py -------------------------------------------------------------------------------- /legacy_code/tools/onchain_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/tools/onchain_resources.py -------------------------------------------------------------------------------- /legacy_code/tools/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/tools/wallet.py -------------------------------------------------------------------------------- /legacy_code/tools/web_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/legacy_code/tools/web_scraper.py -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/replit.nix -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aibtcdev/ai-agent-crew/HEAD/requirements.txt --------------------------------------------------------------------------------