[THUGS(red)]

AI Project Scaffold

A reusable starting point for AI-assisted projects — working rules, architecture guidance and templates, validated in CI and released as a single ZIP.

Tooling live
github.com open ↗

A repository for keeping your own project scaffold, AI instructions and architecture notes in one maintained place, then dropping them into any project with one download. The payload lives in ai-scaffold/; the repository around it supplies the discipline — PR-only changes into a protected main, CI that lints, checks required files and exact rule sentences, scans for sensitive patterns and inspects the archive, and tagged releases that publish scaffold.zip with a SHA-256 checksum. Extracting with unzip -n never overwrites files already in a project. It is also the "Kawaiipantsu scaffold" option when starting a workload in AI Worker.

Install it

cd /path/to/project
curl --fail --location --output scaffold.zip \
  https://github.com/kawaiipantsu/ai-project-scaffold/releases/latest/download/scaffold.zip
unzip -n scaffold.zip && rm scaffold.zip
ai ai-agents project-template scaffold developer-tools

go to github.com