A chaos repository depending on 1430 packages, submodules, real language examples and automation files — plus 827 detected GitHub Linguist languages.
- 248 languages have real source examples under
languages/<lang>/with a random base filename per run (e.g.languages/python/xukybi.py; Brainfuck stays at the stablelanguages/brainfuck/hello.bfso the interpreter and docs always match) — detected from the current GitHub Linguist languages.yml, parsed at generation time. File names, submodule folder names and the repo name are all randomized on every run. - 37 are executed in CI and verified to print
Hello World!(.github/workflows/languages.yml). - 579 are honestly recorded as unsupported in
languages/README.md— no comment-only placeholders. - Brainfuck is included with a real interpreter (
tools/bf.py) and CI run. - Full metadata:
languages/LANGS.json(aliases, extensions, interpreters, package ecosystems, run commands, status).
| Ecosystem | Manager | Count |
|---|---|---|
| JavaScript / Node | npm | 220 |
| Python | pip | 230 |
| Go | go modules | 70 |
| Rust | Cargo | 90 |
| Ruby | Bundler | 121 |
| PHP | Composer | 110 |
| Java | Maven | 80 |
| Kotlin/Java | Gradle | 30 |
| C# / .NET / F# | NuGet | 45 |
| Dart / Flutter | pub | 45 |
| Git repositories | submodules | 12 |
| Bot / config / CI files | — | 91 |
| Deploy targets | GitHub Actions workflows | 38 |
| Language examples | — | 248 |
| Total | 1430 |
This repo ships 38 deployment workflows — one per major platform, mirroring GitHub's /actions/new?category=deployment gallery: Azure (Web App, Container Apps, AKS, Static Web Apps, Functions), AWS (ECS, ECR, EKS, Lambda, Amplify, Elastic Beanstalk, CodeDeploy, S3 + CloudFront), Google Cloud (Cloud Run, GKE, App Engine, Functions), Heroku, Netlify, Vercel, Cloudflare Pages, Deno Deploy, Fly.io, Railway, Render, DigitalOcean, Koyeb, Surge.sh, GitHub Pages, Docker Hub, GHCR, Kubernetes, SSH/SCP, Firebase Hosting & Functions, Cloud Foundry, and Alibaba Cloud Function Compute.
Every one is workflow_dispatch — they sit ready in the Actions tab and only run when you run them (add the platform's secrets first; each workflow's required secrets are listed in DEPLOYMENTS.md).
Also: Swift Package Manager, CocoaPods, Carthage, Hex, Rebar3, deps.edn, sbt, opam, Cabal, Zig, Nim, Crystal, DUB, V, Haxe, Gleam, Raku, fpm, Alire, Unity UPM, Unreal, Godot, Roblox Rojo, Minecraft Paper, Nix/Guix, Homebrew, WinGet/Chocolatey, APT/DNF/Pacman/APK/Zypper/Portage, Conda, PowerShell Gallery, Docker, and Brainfuck.
- Auto-accept (.github/workflows/automerge.yml) — every pull request is merged automatically when checks pass, then the branch is deleted
- Dependabot (.github/dependabot.yml) — 15 package ecosystems, grouped update PRs
- Renovate (renovate.json) — 30+ manager support, lockfile maintenance
- CodeQL SAST (.github/workflows/codeql.yml) — 6 languages, security-and-quality queries
- Dependency review (.github/workflows/dependency-review.yml) — blocks high-severity on PRs
- Stale bot (.github/workflows/stale.yml) — flags inactive issues/PRs (never auto-closes)
- Release Please (.github/workflows/release.yml) — semantic versioning + changelog + GitHub Releases
- Greetings (.github/workflows/hello.yml) — welcomes first-time contributors
- CI (.github/workflows/ci.yml) — installs & tests every ecosystem
- Lint (.github/workflows/lint.yml) — eslint/prettier/ruff/black/mypy/clippy/golangci
- Languages (.github/workflows/languages.yml) — executes every CI-capable language example
Auto-accept is ON: every pull request (Dependabot, Renovate, any contributor) is merged automatically when checks pass, and the merged branch is deleted. Deploy workflows stay manual (workflow_dispatch).
Brainfuck is a first-class language here. Source: languages/brainfuck/hello.bf; interpreter: tools/bf.py; run it: python3 tools/bf.py languages/brainfuck/hello.bf. See BRAINFUCK.md.
Generated by the Chaos Repo Generator.