{"id":51140687,"url":"https://github.com/ariana-dot-dev/ascii-world","last_synced_at":"2026-06-25T22:30:31.075Z","repository":{"id":362974296,"uuid":"1259728984","full_name":"ariana-dot-dev/ascii-world","owner":"ariana-dot-dev","description":"A idle multiplayer game in the terminal for vibe coders","archived":false,"fork":false,"pushed_at":"2026-06-06T19:47:23.000Z","size":255,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-06T21:06:27.633Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://world.ascii.dev","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ariana-dot-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-04T19:54:21.000Z","updated_at":"2026-06-06T20:09:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ariana-dot-dev/ascii-world","commit_stats":null,"previous_names":["ariana-dot-dev/ascii-world"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/ariana-dot-dev/ascii-world","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariana-dot-dev%2Fascii-world","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariana-dot-dev%2Fascii-world/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariana-dot-dev%2Fascii-world/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariana-dot-dev%2Fascii-world/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ariana-dot-dev","download_url":"https://codeload.github.com/ariana-dot-dev/ascii-world/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariana-dot-dev%2Fascii-world/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34795436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-25T22:30:30.454Z","updated_at":"2026-06-25T22:30:31.069Z","avatar_url":"https://github.com/ariana-dot-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ascii World\n\nThe idle multiplayer game for vibe coders.\n\nJoin from your terminal:\n\n```sh\ncurl -fsSL https://world.ascii.dev/install.sh | sh\nworld\n```\n\nWindows:\n\n```powershell\npowershell -ExecutionPolicy Bypass -c \"irm https://world.ascii.dev/install.ps1 | iex\"\nworld\n```\n\nAscii World turns local coding-agent token activity into points, lobster yield, cosmetics, pixels, and a shared ASCII planet. Your local usage data stays local; the CLI reports gameplay totals to the multiplayer backend.\n\n## Build from source\n\nInstall Rust with [rustup](https://rustup.rs/), then clone this repository and build the terminal client:\n\n```sh\ngit clone https://github.com/ariana-dot-dev/ascii-world.git\ncd ascii-world\ncp cli/.env.production.example cli/.env.production\ncargo build --release --manifest-path cli/Cargo.toml\n./target/release/world\n```\n\nOn Windows PowerShell:\n\n```powershell\ngit clone https://github.com/ariana-dot-dev/ascii-world.git\ncd ascii-world\nCopy-Item cli/.env.production.example cli/.env.production\ncargo build --release --manifest-path cli/Cargo.toml\n.\\target\\release\\world.exe\n```\n\n`cli/.env.production` should point at the public backend:\n\n```env\nGAME_BACKEND_URL=https://world.ascii.dev\nGAME_ENV=production\n```\n\nYou can also run from source without a release build:\n\n```sh\nGAME_BACKEND_URL=https://world.ascii.dev cargo run --manifest-path cli/Cargo.toml\n```\n\nOn Windows PowerShell:\n\n```powershell\n$env:GAME_BACKEND_URL = \"https://world.ascii.dev\"\ncargo run --manifest-path cli/Cargo.toml\n```\n\nIf you do not want to pipe an install script into your shell, download and inspect it first:\n\n```sh\ncurl -fsSLO https://world.ascii.dev/install.sh\nless install.sh\nsh install.sh\n```\n\nOn Windows PowerShell:\n\n```powershell\nirm https://world.ascii.dev/install.ps1 -OutFile install.ps1\nnotepad .\\install.ps1\npowershell -ExecutionPolicy Bypass -File .\\install.ps1\n```\n\n## Development\n\nRun the CLI locally:\n\n```sh\ncargo run --manifest-path cli/Cargo.toml\n```\n\nDeploy the dev backend:\n\n```sh\nscripts/backend-dev.sh\n```\n\nDeploy production:\n\n```sh\nscripts/backend-prod.sh\n```\n\nRelease the CLI:\n\n```sh\nscripts/game-release-cli.sh\n```\n\n## Repository\n\n- `backend/` runs the Axum websocket/API server, X login, economy, and landing page.\n- `cli/` contains the terminal client.\n- `world-render/` contains the shared ASCII planet renderer used by the CLI and landing page.\n- `assets/` contains generated world mask assets.\n- `scripts/` contains deployment, release, and local reset helpers.\n\nRuntime secrets and machine-local state belong in ignored files such as `.env`, `.env.production`, `cli/.env`, `cli/.env.production`, and `.box-state/`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fariana-dot-dev%2Fascii-world","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fariana-dot-dev%2Fascii-world","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fariana-dot-dev%2Fascii-world/lists"}