{"id":46537421,"url":"https://github.com/humanapp/mindcraft-lang","last_synced_at":"2026-04-11T21:18:28.823Z","repository":{"id":340453911,"uuid":"1165228867","full_name":"humanapp/mindcraft-lang","owner":"humanapp","description":"Mindcraft -- a tile-based visual programming language for creative coding applications","archived":false,"fork":false,"pushed_at":"2026-04-02T04:42:02.000Z","size":22009,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-02T05:04:40.317Z","etag":null,"topics":["coding","creative-coding","game-development","kodu","luau","microcode","mindcraft","programming-language","project-spark","roblox","robotics","stem","tile-based","typescript","visual-programming"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/humanapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-02-24T00:30:32.000Z","updated_at":"2026-03-30T23:44:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/humanapp/mindcraft-lang","commit_stats":null,"previous_names":["humanapp/mindcraft-lang"],"tags_count":51,"template":false,"template_full_name":null,"purl":"pkg:github/humanapp/mindcraft-lang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humanapp%2Fmindcraft-lang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humanapp%2Fmindcraft-lang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humanapp%2Fmindcraft-lang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humanapp%2Fmindcraft-lang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/humanapp","download_url":"https://codeload.github.com/humanapp/mindcraft-lang/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humanapp%2Fmindcraft-lang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31481238,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T14:34:32.243Z","status":"ssl_error","status_checked_at":"2026-04-06T14:34:31.723Z","response_time":112,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["coding","creative-coding","game-development","kodu","luau","microcode","mindcraft","programming-language","project-spark","roblox","robotics","stem","tile-based","typescript","visual-programming"],"created_at":"2026-03-07T00:09:55.590Z","updated_at":"2026-04-06T19:01:03.551Z","avatar_url":"https://github.com/humanapp.png","language":"TypeScript","readme":"# Mindcraft Language\n\nA tile-based programming language for creative coding applications.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./assets/2026-03-12_19-30-06.png\" alt=\"Brain Rule\" width=\"80%\"\u003e\n\u003c/div\u003e\n\nMindcraft programs are built by arranging **tiles** -- typed, composable tokens -- into **rules**. Each rule has a WHEN side (condition) and a DO side (action). A collection of rules forms a **brain** that drives an autonomous actor. Host applications extend the language with custom types, sensors, and actuators.\n\nThe core library compiles to Roblox (Luau), Node.js, and browser (ESM) targets from a single TypeScript codebase.\n\nMindcraft draws inspiration from other tile-based programming systems past and present, including [Kodu Game Lab](https://www.kodugamelab.com/), [Project Spark](https://en.wikipedia.org/wiki/Project_Spark) ([Wiki](https://projectspark.fandom.com/wiki/How_the_brains_work)), and [MicroCode](https://microbit-apps.org/microcode-classic/docs/language).\n\n## Demos\n\n- [Ecosystem Sim](https://sim.mindcraft-lang.org) -- carnivores, herbivores, and plants driven by user-editable Mindcraft brains\n\n## Repository Structure\n\n```\npackages/\n  core/       @mindcraft-lang/core -- language runtime (multi-target)\n  ui/         @mindcraft-lang/ui -- shared React UI components\n  docs/       @mindcraft-lang/docs -- shared documentation sidebar and rendering\napps/\n  sim/        Ecosystem simulation demo\n```\n\n## Packages\n\n| Package | Description |\n|---------|-------------|\n| [@mindcraft-lang/core](packages/core/) | Language runtime -- tiles, parser, compiler, VM (multi-target: Roblox, Node.js, ESM) |\n| [@mindcraft-lang/ui](packages/ui/) | Shared React UI -- shadcn/ui primitives + brain editor components |\n| [@mindcraft-lang/docs](packages/docs/) | Shared documentation subsystem -- renders as in-app sidebar or full-screen SPA |\n\n## Apps\n\n| App | Description |\n|-----|-------------|\n| [Ecosystem Sim](apps/sim/) | Demo: carnivores, herbivores, and plants driven by user-editable Mindcraft brains |\n\n## Getting Started\n\nInstall the packages you need:\n\n```bash\n# Core only (language runtime, compiler, VM)\nnpm install @mindcraft-lang/core\n\n# Core + UI (adds brain editor and shadcn/ui components)\nnpm install @mindcraft-lang/core @mindcraft-lang/ui\n\n# Full stack (adds documentation sidebar and renderer)\nnpm install @mindcraft-lang/core @mindcraft-lang/ui @mindcraft-lang/docs\n```\n\nFor full setup instructions -- Vite config, TypeScript paths, Tailwind, and component usage -- see the [Integration Guide](INTEGRATION.md).\n\n## Documentation\n\nDocumentation is a work in progress. Browse the sim demo's [language documentation](https://sim.mindcraft-lang.org/docs) online. See also the [core package README](packages/core/README.md) for language architecture, the [ui package README](packages/ui/README.md) for the shared React components, and the [docs package README](packages/docs/README.md) for the documentation system.\n\n## Contributing\n\nTo report a bug or request a feature, please [open an issue](https://github.com/humanapp/mindcraft-lang/issues).\n\n## License\n\n[MIT](LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhumanapp%2Fmindcraft-lang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhumanapp%2Fmindcraft-lang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhumanapp%2Fmindcraft-lang/lists"}