├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commands ├── cleanproject.md ├── commit.md ├── contributing.md ├── create-todos.md ├── docs.md ├── explain-like-senior.md ├── find-todos.md ├── fix-imports.md ├── fix-todos.md ├── format.md ├── implement.md ├── make-it-pretty.md ├── predict-issues.md ├── refactor.md ├── remove-comments.md ├── review.md ├── scaffold.md ├── security-scan.md ├── session-end.md ├── session-start.md ├── test.md ├── todos-to-issues.md ├── understand.md └── undo.md ├── install.py ├── install.sh ├── uninstall.py └── uninstall.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/README.md -------------------------------------------------------------------------------- /commands/cleanproject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/cleanproject.md -------------------------------------------------------------------------------- /commands/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/commit.md -------------------------------------------------------------------------------- /commands/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/contributing.md -------------------------------------------------------------------------------- /commands/create-todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/create-todos.md -------------------------------------------------------------------------------- /commands/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/docs.md -------------------------------------------------------------------------------- /commands/explain-like-senior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/explain-like-senior.md -------------------------------------------------------------------------------- /commands/find-todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/find-todos.md -------------------------------------------------------------------------------- /commands/fix-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/fix-imports.md -------------------------------------------------------------------------------- /commands/fix-todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/fix-todos.md -------------------------------------------------------------------------------- /commands/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/format.md -------------------------------------------------------------------------------- /commands/implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/implement.md -------------------------------------------------------------------------------- /commands/make-it-pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/make-it-pretty.md -------------------------------------------------------------------------------- /commands/predict-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/predict-issues.md -------------------------------------------------------------------------------- /commands/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/refactor.md -------------------------------------------------------------------------------- /commands/remove-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/remove-comments.md -------------------------------------------------------------------------------- /commands/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/review.md -------------------------------------------------------------------------------- /commands/scaffold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/scaffold.md -------------------------------------------------------------------------------- /commands/security-scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/security-scan.md -------------------------------------------------------------------------------- /commands/session-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/session-end.md -------------------------------------------------------------------------------- /commands/session-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/session-start.md -------------------------------------------------------------------------------- /commands/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/test.md -------------------------------------------------------------------------------- /commands/todos-to-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/todos-to-issues.md -------------------------------------------------------------------------------- /commands/understand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/understand.md -------------------------------------------------------------------------------- /commands/undo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/commands/undo.md -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/install.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/install.sh -------------------------------------------------------------------------------- /uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/uninstall.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennercruvinel/CCPlugins/HEAD/uninstall.sh --------------------------------------------------------------------------------