├── .envrc ├── .gitignore ├── README.md ├── best_practices_guides ├── ANGULAR_BEST_PRACTICES.md ├── ANSIBLE_DEVOPS_BEST_PRACTICES.md ├── BASH_AND_ZSH_SCRIPTING_FOR_UBUNTU.md ├── CLOUD_NATIVE_DEVOPS_BEST_PRACTICES.md ├── COSMOS_GOLANG_BLOCKCHAIN_BEST_PRACTICES.md ├── CPP_SYSTEMS_PROGRAMMING_BEST_PRACTICES.md ├── DATA_ENGINEERING_AND_ANALYTICS_BEST_PRACTICES.md ├── DATA_LAKES_KAFKA_SNOWFLAKE_SPARK_BEST_PRACTICES.md ├── DSPY_AND_PYTHON_LLM_PIPELINE_BEST_PRACTICES.md ├── EXCEL_AUTOMATION_WITH_PYTHON_AND_AZURE.md ├── FLUTTER_BEST_PRACTICES.md ├── GENAI_LLM_OPS_BEST_PRACTICES.md ├── GO_WEBAPPS_BEST_PRACTICES.md ├── HARDWARE_DEV_BEST_PRACTICES.md ├── HASHICORP_VAULT_POLICY_AS_CODE_BEST_PRACTICES.md ├── JAVA_ENTERPRISE_BEST_PRACTICES.md ├── KUBERNETES_AI_INFERENCE_BEST_PRACTICES.md ├── LARAVEL_BEST_PRACTICES.md ├── LLM_DEV_AND_TESTING_BEST_PRACTICES.md ├── LLM_EVALUATION_AND_OBSERVABILITY_BEST_PRACTICES.md ├── NEXTJS15_BEST_PRACTICES.md ├── PHP_BEST_PRACTICES.md ├── POLARS_DUCKDB_PYARROW_DATA_ENGINEERING_BEST_PRACTICES.md ├── POSTGRES17_AND_PYTHON_BEST_PRACTICES.md ├── PYTHON_FASTAPI_BEST_PRACTICES.md ├── PYTHON_FASTMCP_BEST_PRACTICES.md ├── REACT_NATIVE_BEST_PRACTICES.md ├── REMIX_ASTRO_BEST_PRACTICES.md ├── RUST_CLI_TOOLS_BEST_PRACTICES.md ├── RUST_SYSTEM_PROGRAMMING_BEST_PRACTICES.md ├── RUST_WEBAPPS_BEST_PRACTICES.md ├── SECURITY_ENGINEERING_BEST_PRACTICES.md ├── SERVERLESS_EDGE_BEST_PRACTICES.md ├── SOLANA_ANCHOR_RUST_BEST_PRACTICES.md ├── SVELTEKIT2_BEST_PRACTICES.md ├── TERRAFORM_WITH_AZURE_BEST_PRACTICES.md └── UNREAL_ENGINE_5_BEST_PRACTICES.md ├── claude_code_agent_farm.py ├── configs ├── angular_config.json ├── ansible_config.json ├── bash_zsh_config.json ├── cloud_native_devops_config.json ├── cosmos_blockchain_config.json ├── cpp_systems_config.json ├── data_engineering_config.json ├── data_lakes_config.json ├── excel_automation_config.json ├── flutter_config.json ├── genai_llm_ops_config.json ├── go_webapps_config.json ├── hardware_dev_config.json ├── java_enterprise_config.json ├── kubernetes_ai_inference_config.json ├── laravel_config.json ├── llm_dev_testing_config.json ├── llm_eval_observability_config.json ├── nextjs_best_practices_config.json ├── nextjs_config.json ├── php_config.json ├── polars_duckdb_config.json ├── python_config.json ├── python_cooperating_agents_config.json ├── react_native_config.json ├── remix_astro_config.json ├── rust_cli_config.json ├── rust_system_config.json ├── rust_webapps_config.json ├── sample.json ├── security_engineering_config.json ├── serverless_edge_config.json ├── solana_anchor_config.json ├── sveltekit2_config.json ├── terraform_azure_config.json ├── unreal_engine_config.json └── vault_config.json ├── prompts ├── bug_fixing_prompt_for_nextjs.txt ├── continue_best_practices_prompt.txt ├── cooperating_agents_improvement_prompt_for_python_fastapi_postgres.txt ├── default_best_practices_prompt.txt ├── default_best_practices_prompt_angular.txt ├── default_best_practices_prompt_ansible.txt ├── default_best_practices_prompt_bash_zsh.txt ├── default_best_practices_prompt_cloud_native_devops.txt ├── default_best_practices_prompt_cosmos.txt ├── default_best_practices_prompt_cpp.txt ├── default_best_practices_prompt_data_engineering.txt ├── default_best_practices_prompt_data_lakes.txt ├── default_best_practices_prompt_excel.txt ├── default_best_practices_prompt_flutter.txt ├── default_best_practices_prompt_genai_llm_ops.txt ├── default_best_practices_prompt_go.txt ├── default_best_practices_prompt_hardware.txt ├── default_best_practices_prompt_java.txt ├── default_best_practices_prompt_kubernetes_ai.txt ├── default_best_practices_prompt_laravel.txt ├── default_best_practices_prompt_llm_dev_testing.txt ├── default_best_practices_prompt_llm_eval_observability.txt ├── default_best_practices_prompt_nextjs.txt ├── default_best_practices_prompt_php.txt ├── default_best_practices_prompt_polars.txt ├── default_best_practices_prompt_python.txt ├── default_best_practices_prompt_react_native.txt ├── default_best_practices_prompt_remix_astro.txt ├── default_best_practices_prompt_rust_cli.txt ├── default_best_practices_prompt_rust_system.txt ├── default_best_practices_prompt_rust_web.txt ├── default_best_practices_prompt_security.txt ├── default_best_practices_prompt_serverless_edge.txt ├── default_best_practices_prompt_solana.txt ├── default_best_practices_prompt_sveltekit.txt ├── default_best_practices_prompt_terraform_azure.txt ├── default_best_practices_prompt_unreal.txt ├── default_best_practices_prompt_vault.txt ├── default_prompt.txt ├── default_prompt_nextjs.txt └── default_prompt_python.txt ├── pyproject.toml ├── setup.sh ├── tool_setup_scripts ├── README.md ├── common_utils.sh ├── llm_ops_pyproject.toml ├── setup.sh ├── setup_angular.sh ├── setup_ansible.sh ├── setup_bash_zsh.sh ├── setup_cloud_native_devops.sh ├── setup_cosmos_blockchain.sh ├── setup_cpp_systems.sh ├── setup_data_engineering.sh ├── setup_data_lakes.sh ├── setup_excel_automation.sh ├── setup_flutter.sh ├── setup_genai_llm_ops.sh ├── setup_go_webapps.sh ├── setup_hardware_dev.sh ├── setup_java_enterprise.sh ├── setup_kubernetes_ai_inference.sh ├── setup_llm_dev_testing.sh ├── setup_llm_eval_observability.sh ├── setup_nextjs.sh ├── setup_php_laravel.sh ├── setup_polars_duckdb.sh ├── setup_python_fastapi.sh ├── setup_react_native.sh ├── setup_rust.sh ├── setup_rust_cli.sh ├── setup_security_engineering.sh ├── setup_serverless_edge.sh ├── setup_solana_anchor.sh ├── setup_sveltekit_remix_astro.sh ├── setup_terraform_azure.sh ├── setup_unreal_engine.sh └── setup_vault.sh └── view_agents.sh /.envrc: -------------------------------------------------------------------------------- 1 | source .venv/bin/activate 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/README.md -------------------------------------------------------------------------------- /best_practices_guides/ANGULAR_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/ANGULAR_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/ANSIBLE_DEVOPS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/ANSIBLE_DEVOPS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/BASH_AND_ZSH_SCRIPTING_FOR_UBUNTU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/BASH_AND_ZSH_SCRIPTING_FOR_UBUNTU.md -------------------------------------------------------------------------------- /best_practices_guides/CLOUD_NATIVE_DEVOPS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/CLOUD_NATIVE_DEVOPS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/COSMOS_GOLANG_BLOCKCHAIN_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/COSMOS_GOLANG_BLOCKCHAIN_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/CPP_SYSTEMS_PROGRAMMING_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/CPP_SYSTEMS_PROGRAMMING_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/DATA_ENGINEERING_AND_ANALYTICS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/DATA_ENGINEERING_AND_ANALYTICS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/DATA_LAKES_KAFKA_SNOWFLAKE_SPARK_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/DATA_LAKES_KAFKA_SNOWFLAKE_SPARK_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/DSPY_AND_PYTHON_LLM_PIPELINE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/DSPY_AND_PYTHON_LLM_PIPELINE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/EXCEL_AUTOMATION_WITH_PYTHON_AND_AZURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/EXCEL_AUTOMATION_WITH_PYTHON_AND_AZURE.md -------------------------------------------------------------------------------- /best_practices_guides/FLUTTER_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/FLUTTER_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/GENAI_LLM_OPS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/GENAI_LLM_OPS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/GO_WEBAPPS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/GO_WEBAPPS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/HARDWARE_DEV_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/HARDWARE_DEV_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/HASHICORP_VAULT_POLICY_AS_CODE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/HASHICORP_VAULT_POLICY_AS_CODE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/JAVA_ENTERPRISE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/JAVA_ENTERPRISE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/KUBERNETES_AI_INFERENCE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/KUBERNETES_AI_INFERENCE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/LARAVEL_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/LARAVEL_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/LLM_DEV_AND_TESTING_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/LLM_DEV_AND_TESTING_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/LLM_EVALUATION_AND_OBSERVABILITY_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/LLM_EVALUATION_AND_OBSERVABILITY_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/NEXTJS15_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/NEXTJS15_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/PHP_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/PHP_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/POLARS_DUCKDB_PYARROW_DATA_ENGINEERING_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/POLARS_DUCKDB_PYARROW_DATA_ENGINEERING_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/POSTGRES17_AND_PYTHON_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/POSTGRES17_AND_PYTHON_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/PYTHON_FASTAPI_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/PYTHON_FASTAPI_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/PYTHON_FASTMCP_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/PYTHON_FASTMCP_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/REACT_NATIVE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/REACT_NATIVE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/REMIX_ASTRO_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/REMIX_ASTRO_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/RUST_CLI_TOOLS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/RUST_CLI_TOOLS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/RUST_SYSTEM_PROGRAMMING_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/RUST_SYSTEM_PROGRAMMING_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/RUST_WEBAPPS_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/RUST_WEBAPPS_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/SECURITY_ENGINEERING_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/SECURITY_ENGINEERING_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/SERVERLESS_EDGE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/SERVERLESS_EDGE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/SOLANA_ANCHOR_RUST_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/SOLANA_ANCHOR_RUST_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/SVELTEKIT2_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/SVELTEKIT2_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/TERRAFORM_WITH_AZURE_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/TERRAFORM_WITH_AZURE_BEST_PRACTICES.md -------------------------------------------------------------------------------- /best_practices_guides/UNREAL_ENGINE_5_BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/best_practices_guides/UNREAL_ENGINE_5_BEST_PRACTICES.md -------------------------------------------------------------------------------- /claude_code_agent_farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/claude_code_agent_farm.py -------------------------------------------------------------------------------- /configs/angular_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/angular_config.json -------------------------------------------------------------------------------- /configs/ansible_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/ansible_config.json -------------------------------------------------------------------------------- /configs/bash_zsh_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/bash_zsh_config.json -------------------------------------------------------------------------------- /configs/cloud_native_devops_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/cloud_native_devops_config.json -------------------------------------------------------------------------------- /configs/cosmos_blockchain_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/cosmos_blockchain_config.json -------------------------------------------------------------------------------- /configs/cpp_systems_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/cpp_systems_config.json -------------------------------------------------------------------------------- /configs/data_engineering_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/data_engineering_config.json -------------------------------------------------------------------------------- /configs/data_lakes_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/data_lakes_config.json -------------------------------------------------------------------------------- /configs/excel_automation_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/excel_automation_config.json -------------------------------------------------------------------------------- /configs/flutter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/flutter_config.json -------------------------------------------------------------------------------- /configs/genai_llm_ops_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/genai_llm_ops_config.json -------------------------------------------------------------------------------- /configs/go_webapps_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/go_webapps_config.json -------------------------------------------------------------------------------- /configs/hardware_dev_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/hardware_dev_config.json -------------------------------------------------------------------------------- /configs/java_enterprise_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/java_enterprise_config.json -------------------------------------------------------------------------------- /configs/kubernetes_ai_inference_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/kubernetes_ai_inference_config.json -------------------------------------------------------------------------------- /configs/laravel_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/laravel_config.json -------------------------------------------------------------------------------- /configs/llm_dev_testing_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/llm_dev_testing_config.json -------------------------------------------------------------------------------- /configs/llm_eval_observability_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/llm_eval_observability_config.json -------------------------------------------------------------------------------- /configs/nextjs_best_practices_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/nextjs_best_practices_config.json -------------------------------------------------------------------------------- /configs/nextjs_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/nextjs_config.json -------------------------------------------------------------------------------- /configs/php_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/php_config.json -------------------------------------------------------------------------------- /configs/polars_duckdb_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/polars_duckdb_config.json -------------------------------------------------------------------------------- /configs/python_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/python_config.json -------------------------------------------------------------------------------- /configs/python_cooperating_agents_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/python_cooperating_agents_config.json -------------------------------------------------------------------------------- /configs/react_native_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/react_native_config.json -------------------------------------------------------------------------------- /configs/remix_astro_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/remix_astro_config.json -------------------------------------------------------------------------------- /configs/rust_cli_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/rust_cli_config.json -------------------------------------------------------------------------------- /configs/rust_system_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/rust_system_config.json -------------------------------------------------------------------------------- /configs/rust_webapps_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/rust_webapps_config.json -------------------------------------------------------------------------------- /configs/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/sample.json -------------------------------------------------------------------------------- /configs/security_engineering_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/security_engineering_config.json -------------------------------------------------------------------------------- /configs/serverless_edge_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/serverless_edge_config.json -------------------------------------------------------------------------------- /configs/solana_anchor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/solana_anchor_config.json -------------------------------------------------------------------------------- /configs/sveltekit2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/sveltekit2_config.json -------------------------------------------------------------------------------- /configs/terraform_azure_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/terraform_azure_config.json -------------------------------------------------------------------------------- /configs/unreal_engine_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/unreal_engine_config.json -------------------------------------------------------------------------------- /configs/vault_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/configs/vault_config.json -------------------------------------------------------------------------------- /prompts/bug_fixing_prompt_for_nextjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/bug_fixing_prompt_for_nextjs.txt -------------------------------------------------------------------------------- /prompts/continue_best_practices_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/continue_best_practices_prompt.txt -------------------------------------------------------------------------------- /prompts/cooperating_agents_improvement_prompt_for_python_fastapi_postgres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/cooperating_agents_improvement_prompt_for_python_fastapi_postgres.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_angular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_angular.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_ansible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_ansible.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_bash_zsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_bash_zsh.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_cloud_native_devops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_cloud_native_devops.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_cosmos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_cosmos.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_cpp.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_data_engineering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_data_engineering.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_data_lakes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_data_lakes.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_excel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_excel.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_flutter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_flutter.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_genai_llm_ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_genai_llm_ops.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_go.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_hardware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_hardware.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_java.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_kubernetes_ai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_kubernetes_ai.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_laravel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_laravel.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_llm_dev_testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_llm_dev_testing.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_llm_eval_observability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_llm_eval_observability.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_nextjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_nextjs.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_php.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_polars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_polars.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_python.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_react_native.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_react_native.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_remix_astro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_remix_astro.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_rust_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_rust_cli.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_rust_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_rust_system.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_rust_web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_rust_web.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_security.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_serverless_edge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_serverless_edge.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_solana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_solana.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_sveltekit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_sveltekit.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_terraform_azure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_terraform_azure.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_unreal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_unreal.txt -------------------------------------------------------------------------------- /prompts/default_best_practices_prompt_vault.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_best_practices_prompt_vault.txt -------------------------------------------------------------------------------- /prompts/default_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_prompt.txt -------------------------------------------------------------------------------- /prompts/default_prompt_nextjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_prompt_nextjs.txt -------------------------------------------------------------------------------- /prompts/default_prompt_python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/prompts/default_prompt_python.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/setup.sh -------------------------------------------------------------------------------- /tool_setup_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/README.md -------------------------------------------------------------------------------- /tool_setup_scripts/common_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/common_utils.sh -------------------------------------------------------------------------------- /tool_setup_scripts/llm_ops_pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/llm_ops_pyproject.toml -------------------------------------------------------------------------------- /tool_setup_scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_angular.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_angular.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_ansible.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_bash_zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_bash_zsh.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_cloud_native_devops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_cloud_native_devops.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_cosmos_blockchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_cosmos_blockchain.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_cpp_systems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_cpp_systems.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_data_engineering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_data_engineering.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_data_lakes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_data_lakes.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_excel_automation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_excel_automation.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_flutter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_flutter.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_genai_llm_ops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_genai_llm_ops.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_go_webapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_go_webapps.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_hardware_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_hardware_dev.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_java_enterprise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_java_enterprise.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_kubernetes_ai_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_kubernetes_ai_inference.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_llm_dev_testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_llm_dev_testing.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_llm_eval_observability.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_llm_eval_observability.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_nextjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_nextjs.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_php_laravel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_php_laravel.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_polars_duckdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_polars_duckdb.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_python_fastapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_python_fastapi.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_react_native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_react_native.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_rust.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_rust_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_rust_cli.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_security_engineering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_security_engineering.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_serverless_edge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_serverless_edge.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_solana_anchor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_solana_anchor.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_sveltekit_remix_astro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_sveltekit_remix_astro.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_terraform_azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_terraform_azure.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_unreal_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_unreal_engine.sh -------------------------------------------------------------------------------- /tool_setup_scripts/setup_vault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/tool_setup_scripts/setup_vault.sh -------------------------------------------------------------------------------- /view_agents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dicklesworthstone/claude_code_agent_farm/HEAD/view_agents.sh --------------------------------------------------------------------------------