{"id":47629722,"url":"https://github.com/netzulo/autonomousworld-vscode","last_synced_at":"2026-04-01T23:12:01.285Z","repository":{"id":339969254,"uuid":"1074159707","full_name":"netzulo/autonomousworld-vscode","owner":"netzulo","description":"VSCode MCPS and setup to create an autonomous development environment ready to use","archived":false,"fork":false,"pushed_at":"2026-03-07T22:25:00.000Z","size":43557,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-08T02:47:07.616Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/netzulo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS.md","security":"SECURITY.md","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":"2025-10-11T08:55:16.000Z","updated_at":"2026-02-22T14:42:53.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/netzulo/autonomousworld-vscode","commit_stats":null,"previous_names":["netzulo/autonomousworld-vscode"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/netzulo/autonomousworld-vscode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fautonomousworld-vscode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fautonomousworld-vscode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fautonomousworld-vscode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fautonomousworld-vscode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netzulo","download_url":"https://codeload.github.com/netzulo/autonomousworld-vscode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netzulo%2Fautonomousworld-vscode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292831,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"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":[],"created_at":"2026-04-01T23:12:00.529Z","updated_at":"2026-04-01T23:12:01.277Z","avatar_url":"https://github.com/netzulo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🛠️ Autonomous Dev Environment\n\n![CI](https://github.com/netzulo/autonomousworld-vscode/actions/workflows/ci.yml/badge.svg)\n![Publish](https://github.com/netzulo/autonomousworld-vscode/actions/workflows/docker-publish.yml/badge.svg)\n![Release](https://github.com/netzulo/autonomousworld-vscode/actions/workflows/release-please.yml/badge.svg)\n![Security](https://github.com/netzulo/autonomousworld-vscode/actions/workflows/security.yml/badge.svg)\n![GHCR](https://img.shields.io/badge/ghcr-available-brightgreen)\n\nThis repository defines the **autonomous development Docker environment** used by AI agents in the Autonomous World system.  \nThe goal is to provide a highly configurable, reproducible, and observable dev container that includes:\n\n- Multiple programming languages (via ENV)\n- Code editors and terminal tools\n- Installed MCPs for AI interaction\n- Runtime dependencies for tests, git, browsers, etc.\n- A way to scale this across different stacks and agent types\n\n---\n\n## 🚀 Quick Start (WIP)\n\n```bash\n# Build the container with default values\ndocker compose -f docker/docker-compose.dep.yml up --build\n\n# Or override ENV variables dynamically\nMCP_ENABLED=true \\\nLANGUAGES=\"node,python\" \\\ndocker compose -f docker/docker-compose.dep.yml up --build\n```\n\n---\n\n## ⚙️ ENV Variables (with defaults)\n\nThese variables allow customizing the final image per use case:\n\n```bash\n# Languages to install (comma-separated)\nLANGUAGES=node,python,java\nNODE_VERSION=20.11.1\nASDF_VERSION=v0.14.0\nPYTHON_VERSION=3.12.1\nJAVA_VERSION=temurin-17.0.10+7\n\n# VS Code (code-server)\nVSCODE_PORT=8443\nVSCODE_PASSWORD=agent\n```\n\n\nYou can create your own `.env` file or copy the template:\n\n```bash\ncp env.example .env\n```\n\n---\n## 🐳 Docker Image\n\nThe Dockerfile is located at `Dockerfile` and uses a multi-stage build to optimize the final image size. \n\nThe base image is `ubuntu:24.04`, and it installs:\n- Core utilities (`curl`, `git`, `unzip`, etc.)\n- ASDF version manager (for managing multiple languages)\n- Language runtimes (Node.js, Python, Java) via ASDF\n- Code-server (VS Code in-browser)\n\n\nDocker image can be built with (docker compose recommended):\n\n```bash\n# docker compose\ndocker compose -f docker-compose.yml up --build\n```\n\n## ✅ Build Checklist\n\n- [x] ✅ Shell and terminal access\n- [ ] ✅ Git installed\n- [x] ✅ Core tools (`curl`, `unzip`, `zip`, etc.)\n- [x] ✅ Programming languages:\n  - [x] Node.js\n  - [x] Python\n  - [x] Java (optional)\n- [x] ✅ Code editor:\n  - [x] `vim`, or `vi` (fallback/CLI mode)\n  - [x] `code-server` (VS Code in-browser)\n    - [x] Extensions installed\n    - [x] MCP's accessible\n- [ ] ✅ Browsers installed (e.g. headless Chrome)\n- [ ] ✅ VNC/Socket access (if enabled)\n\n---\n\n## 🧠 Visual Studio Code (Remote)\n\nBy default, the image will install [code-server](https://github.com/coder/code-server) or [openvscode-server](https://github.com/gitpod-io/openvscode-server), allowing remote development directly in the browser.\n\nYou can access it via:\n\n```bash\nhttp://localhost:8443\n```\n\nPassword: defined by `VSCODE_PASSWORD` env variable (default: `agent`)\n\nYou can change port/password by overriding:\n\n```env\nVSCODE_PORT=8080\nVSCODE_PASSWORD=secretpass\n```\n\n## 🗂️ Scripts\n\nLanguage and tool installers live in:\n\n```\nsrc/\n├── scripts/\n│   ├── entrypoint.sh\n│   ├── install_node.sh\n│   ├── install_python.sh\n│   ├── install_java.sh\n│   └── ...\n```\n\nEach script should support:\n- Headless mode\n- Logs to stdout\n- ENV overrides\n\n---\n\n---\n\n## 📄 Roadmap\n\n- [ ] Create base docker image for \"autonomous-dev\" environment\n- [ ] LLM Chatgpt or copilot working inside the container\n\n---\n\n\u003e ✍️ *Last updated:* 2025-10-11\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetzulo%2Fautonomousworld-vscode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetzulo%2Fautonomousworld-vscode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetzulo%2Fautonomousworld-vscode/lists"}