├── .github └── workflows │ └── push.yml ├── .gitignore ├── README.md ├── cookiecutter.json ├── input-for-demo.txt ├── requirements.txt ├── tests └── test_cookiecutter_template.py └── {{cookiecutter.hyphenated}} ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── tests └── test_{{cookiecutter.underscored}}.py └── {{cookiecutter.underscored}}.py /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /input-for-demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/input-for-demo.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cookiecutter 2 | pytest 3 | -------------------------------------------------------------------------------- /tests/test_cookiecutter_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/tests/test_cookiecutter_template.py -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/.github/workflows/publish.yml -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/.github/workflows/test.yml -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/LICENSE -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/pyproject.toml -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/tests/test_{{cookiecutter.underscored}}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/tests/test_{{cookiecutter.underscored}}.py -------------------------------------------------------------------------------- /{{cookiecutter.hyphenated}}/{{cookiecutter.underscored}}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-plugin-tools/HEAD/{{cookiecutter.hyphenated}}/{{cookiecutter.underscored}}.py --------------------------------------------------------------------------------