├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── README.zh.md ├── SECURITY.md ├── cct.ps1 ├── cct.sh └── sugar ├── README.md ├── README.zh.md ├── install.ps1 └── install.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://xi-xu.me/#sponsorships 2 | buy_me_a_coffee: xixu 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/README.zh.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cct.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/cct.ps1 -------------------------------------------------------------------------------- /cct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/cct.sh -------------------------------------------------------------------------------- /sugar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/sugar/README.md -------------------------------------------------------------------------------- /sugar/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/sugar/README.zh.md -------------------------------------------------------------------------------- /sugar/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/sugar/install.ps1 -------------------------------------------------------------------------------- /sugar/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xixu-me/claude-code-toolkit/HEAD/sugar/install.sh --------------------------------------------------------------------------------