├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── apply-md ├── autocommit ├── autodocs ├── context ├── docs ├── apply-md.md ├── context.md └── git-context.md ├── git-context ├── images ├── poorcoder-comparison-table.svg ├── poorcoder-script-details.svg └── poorcoder-workflow-diagram.svg ├── prompts ├── commit_prompt.txt ├── context_prompt.txt └── conventional_commit.txt └── test ├── fixtures └── sample.js ├── test_runner.sh ├── test_utils.sh └── unit ├── test_apply_md.sh ├── test_context.sh └── test_git_context.sh /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/README.md -------------------------------------------------------------------------------- /apply-md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/apply-md -------------------------------------------------------------------------------- /autocommit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/autocommit -------------------------------------------------------------------------------- /autodocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/autodocs -------------------------------------------------------------------------------- /context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/context -------------------------------------------------------------------------------- /docs/apply-md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/docs/apply-md.md -------------------------------------------------------------------------------- /docs/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/docs/context.md -------------------------------------------------------------------------------- /docs/git-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/docs/git-context.md -------------------------------------------------------------------------------- /git-context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/git-context -------------------------------------------------------------------------------- /images/poorcoder-comparison-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/images/poorcoder-comparison-table.svg -------------------------------------------------------------------------------- /images/poorcoder-script-details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/images/poorcoder-script-details.svg -------------------------------------------------------------------------------- /images/poorcoder-workflow-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/images/poorcoder-workflow-diagram.svg -------------------------------------------------------------------------------- /prompts/commit_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/prompts/commit_prompt.txt -------------------------------------------------------------------------------- /prompts/context_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/prompts/context_prompt.txt -------------------------------------------------------------------------------- /prompts/conventional_commit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/prompts/conventional_commit.txt -------------------------------------------------------------------------------- /test/fixtures/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/test/fixtures/sample.js -------------------------------------------------------------------------------- /test/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/test/test_runner.sh -------------------------------------------------------------------------------- /test/test_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/test/test_utils.sh -------------------------------------------------------------------------------- /test/unit/test_apply_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/test/unit/test_apply_md.sh -------------------------------------------------------------------------------- /test/unit/test_context.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/test/unit/test_context.sh -------------------------------------------------------------------------------- /test/unit/test_git_context.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strawberry-Computer/poorcoder/HEAD/test/unit/test_git_context.sh --------------------------------------------------------------------------------