├── .github └── workflows │ └── publish-to-pypi.yml ├── .gitignore ├── LICENSE ├── Readme.md ├── claudetools ├── __init__.py ├── completion │ ├── __init__.py │ ├── async_complete.py │ └── complete.py ├── extract │ ├── __init__.py │ ├── multiple.py │ └── single.py ├── prompts │ ├── __init__.py │ ├── multi_functions.py │ └── single_function.py └── tools │ ├── __init__.py │ └── tool.py ├── configs.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test_bedrock.py ├── test_multiple_function.py ├── test_single_function.py └── test_single_specific.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/Readme.md -------------------------------------------------------------------------------- /claudetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/__init__.py -------------------------------------------------------------------------------- /claudetools/completion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claudetools/completion/async_complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/completion/async_complete.py -------------------------------------------------------------------------------- /claudetools/completion/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/completion/complete.py -------------------------------------------------------------------------------- /claudetools/extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claudetools/extract/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/extract/multiple.py -------------------------------------------------------------------------------- /claudetools/extract/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/extract/single.py -------------------------------------------------------------------------------- /claudetools/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claudetools/prompts/multi_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/prompts/multi_functions.py -------------------------------------------------------------------------------- /claudetools/prompts/single_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/prompts/single_function.py -------------------------------------------------------------------------------- /claudetools/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /claudetools/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/claudetools/tools/tool.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/configs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/tests/test_bedrock.py -------------------------------------------------------------------------------- /tests/test_multiple_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/tests/test_multiple_function.py -------------------------------------------------------------------------------- /tests/test_single_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/tests/test_single_function.py -------------------------------------------------------------------------------- /tests/test_single_specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vatsalsaglani/claudetools/HEAD/tests/test_single_specific.py --------------------------------------------------------------------------------