├── .gitignore ├── CLAUDE.md ├── DEVELOPER_GUIDE.md ├── README.md ├── WORK_STREAM_TASKS.md ├── bootstrap.md ├── contexts ├── docs-import-materials-context.md └── main-context.md ├── lib └── _Z_Utils.zsh ├── requirements └── guides │ ├── context_guide.md │ ├── error_recovery_guide.md │ ├── git_workflow_guide.md │ └── task_tracking_guide.md └── scripts ├── create_github_remote.sh └── setup_git_inception_repo.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/DEVELOPER_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /WORK_STREAM_TASKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/WORK_STREAM_TASKS.md -------------------------------------------------------------------------------- /bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/bootstrap.md -------------------------------------------------------------------------------- /contexts/docs-import-materials-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/contexts/docs-import-materials-context.md -------------------------------------------------------------------------------- /contexts/main-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/contexts/main-context.md -------------------------------------------------------------------------------- /lib/_Z_Utils.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/lib/_Z_Utils.zsh -------------------------------------------------------------------------------- /requirements/guides/context_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/requirements/guides/context_guide.md -------------------------------------------------------------------------------- /requirements/guides/error_recovery_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/requirements/guides/error_recovery_guide.md -------------------------------------------------------------------------------- /requirements/guides/git_workflow_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/requirements/guides/git_workflow_guide.md -------------------------------------------------------------------------------- /requirements/guides/task_tracking_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/requirements/guides/task_tracking_guide.md -------------------------------------------------------------------------------- /scripts/create_github_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/scripts/create_github_remote.sh -------------------------------------------------------------------------------- /scripts/setup_git_inception_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherA/Claude-Code-CLI-Toolkit/HEAD/scripts/setup_git_inception_repo.sh --------------------------------------------------------------------------------