├── .github ├── dependabot.yml └── workflows │ ├── actionlint.dockerfile │ ├── actionlint.yml │ ├── docs.yml │ ├── matchers │ └── actionlint.json │ ├── periodic-maintainers-update.yml │ ├── spellcheck.yml │ └── stale_bot.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .prettierrc ├── .spellcheck-en-custom.txt ├── .spellcheck.yml ├── CODE_OF_CONDUCT.md ├── CODE_OF_CONDUCT_COMMITTEE.md ├── CONTRIBUTING.md ├── CONTRIBUTOR_ROLES.md ├── Collaboration.md ├── FAQ.md ├── GOVERNANCE.md ├── HW_REQS.md ├── InstructLab_DISCORD_GUIDE.md ├── InstructLab_DISCORD_MODERATION_GUIDE.md ├── InstructLab_SLACK_GUIDE.md ├── InstructLab_SLACK_MODERATION_GUIDE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── QUICK_START_GUIDE.md ├── README.md ├── SECURITY.md ├── docs ├── DataSources.md ├── README.md └── taxonomy_paper_diagram.png ├── public └── images │ └── discord_delete_message.png ├── requirements.txt ├── tools ├── maintainers │ ├── README.md │ ├── maintainers.py │ ├── requirements.txt │ └── teams.yaml └── triage │ ├── batch_comment.py │ └── requirements.txt └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/actionlint.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/actionlint.dockerfile -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/matchers/actionlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/matchers/actionlint.json -------------------------------------------------------------------------------- /.github/workflows/periodic-maintainers-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/periodic-maintainers-update.yml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/stale_bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.github/workflows/stale_bot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.prettierrc -------------------------------------------------------------------------------- /.spellcheck-en-custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.spellcheck-en-custom.txt -------------------------------------------------------------------------------- /.spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/.spellcheck.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT_COMMITTEE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/CODE_OF_CONDUCT_COMMITTEE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR_ROLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/CONTRIBUTOR_ROLES.md -------------------------------------------------------------------------------- /Collaboration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/Collaboration.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/FAQ.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /HW_REQS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/HW_REQS.md -------------------------------------------------------------------------------- /InstructLab_DISCORD_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/InstructLab_DISCORD_GUIDE.md -------------------------------------------------------------------------------- /InstructLab_DISCORD_MODERATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/InstructLab_DISCORD_MODERATION_GUIDE.md -------------------------------------------------------------------------------- /InstructLab_SLACK_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/InstructLab_SLACK_GUIDE.md -------------------------------------------------------------------------------- /InstructLab_SLACK_MODERATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/InstructLab_SLACK_MODERATION_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/Makefile -------------------------------------------------------------------------------- /QUICK_START_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/QUICK_START_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/DataSources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/docs/DataSources.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/taxonomy_paper_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/docs/taxonomy_paper_diagram.png -------------------------------------------------------------------------------- /public/images/discord_delete_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/public/images/discord_delete_message.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | tox>=4.4.2,<5 4 | pyspelling 5 | -------------------------------------------------------------------------------- /tools/maintainers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/tools/maintainers/README.md -------------------------------------------------------------------------------- /tools/maintainers/maintainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/tools/maintainers/maintainers.py -------------------------------------------------------------------------------- /tools/maintainers/requirements.txt: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | PyYAML>=6.0.1,<7.0.0 4 | -------------------------------------------------------------------------------- /tools/maintainers/teams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/tools/maintainers/teams.yaml -------------------------------------------------------------------------------- /tools/triage/batch_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/tools/triage/batch_comment.py -------------------------------------------------------------------------------- /tools/triage/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/tools/triage/requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructlab/community/HEAD/tox.ini --------------------------------------------------------------------------------