XaresAICoder
Groups

AI-Powered Development Environment

Create and manage your coding projects with integrated AI assistance

Create New Project

Quick Clone

Quickly create a workspace from a public Git repository with default settings (2GB RAM, 2 CPU cores)

Project name will be auto-extracted from the repository URL. For private repositories, use the full form below.
or create with custom settings
Clone an existing Git repository instead of using a template
Require password authentication to access this workspace

Recent Projects

Git Server

🚀 Forgejo Git Server

Your integrated self-hosted Git server with GitHub Actions compatibility. Manage repositories, collaborate on code, and automate your workflows.

Features

📦 Repository Management

Create, clone, and manage Git repositories with full version control

🔄 GitHub Actions Compatible

Run CI/CD pipelines with full GitHub Actions workflow support

👥 Team Collaboration

Issue tracking, pull requests, and code review workflows

🔐 Self-Hosted Security

Complete control over your code with on-premise hosting

Workspace Git Commands

Use these commands inside your workspace containers to work with Git repositories:

Every workspace already carries the credentials in the environment variables $GIT_ADMIN_USER and $GIT_ADMIN_PASSWORD, so the commands below work as-is — no need to type a password anywhere.

🆕 Create New Repository
curl -u "$GIT_ADMIN_USER:$GIT_ADMIN_PASSWORD" -X POST \
  -H "Content-Type: application/json" \
  -d '{"name":"my-project","description":"My new project","private":false}' \
  http://forgejo:3000/api/v1/user/repos

Replace my-project with your desired repository name.

🔗 Clone Repository
git clone http://$GIT_ADMIN_USER:$GIT_ADMIN_PASSWORD@forgejo:3000/$GIT_ADMIN_USER/repo.git
📂 Add Remote to Existing Project
git remote add origin http://$GIT_ADMIN_USER:$GIT_ADMIN_PASSWORD@forgejo:3000/$GIT_ADMIN_USER/repo.git
git push -u origin main
⚡ Shortcut
setup_local_remote

Run this inside an existing Git repository — it creates the remote repository and wires up origin for you.

🌐 Web Access

Browse repositories in the web interface:

/git/

The credentials in the workspace are meant for Git and the API. Depending on how this instance is configured they may be an access token, which cannot be used to sign in to the web interface.

Note: The forgejo:3000 hostname resolves only inside workspace containers. Replace my-project and repo with your actual repository name.

Workflow: Create repo → Clone/Add remote → Push your code. No need to use the web interface for basic repository creation!

Private repositories: The account above may not be the owner of every repository on this server. Repositories owned by another account are not visible with these credentials.

AI Development Tools

🎯 VS Code Extensions

Install these extensions directly in VS Code for integrated AI assistance:

Continue

AI code completion and chat interface

Install from VS Code marketplace Extension ID: continue.continue

Cline (Claude Dev)

AI file editing and automation assistant

Install from VS Code marketplace Extension ID: saoudrizwan.claude-dev

⌨️ Command Line Tools

Pre-installed AI assistants available in your workspace terminal:

OpenCode SST

Open-source AI coding agent with 75+ LLM providers via Models.dev. Sign in with a GitHub Copilot or ChatGPT Plus account, or bring your own provider key. Strong project analysis via /init and shareable collaborative sessions.

opencode
opencode.ai →

Aider

Terminal pair programmer. Works with OpenAI, Anthropic, Google, DeepSeek, Ollama, and most other LLM providers — pick your model, it edits files directly and auto-commits each change to git.

aider
aider.chat →

Claude Code

Anthropic's agentic coding CLI. Sign in with a Claude Pro/Max subscription, or set ANTHROPIC_API_KEY. Excels at multi-file refactors and long-running tasks across the codebase.

claude
docs.claude.com/claude-code →

Qwen Code

Alibaba's Qwen-tuned coding CLI. The free Qwen OAuth tier was discontinued in April 2026 — now requires an Alibaba Cloud DashScope key, an OpenRouter/Fireworks API key, or a paid Qwen Coding Plan subscription.

qwen-code
github.com/QwenLM/qwen-code →

OpenAI Codex CLI

OpenAI's terminal coding CLI with Model Context Protocol (MCP) support. Authenticate by running codex login on your local machine, then copying ~/.codex/auth.json into the workspace.

codex
github.com/openai/codex →

Crush

Charm Bracelet's multi-provider coding agent (Anthropic, OpenAI, Google, Groq, OpenRouter, …). Session-based workflows with in-session model switching and LSP-aware code understanding.

crush
github.com/charmbracelet/crush →
π

Pi

Earendil's minimal terminal harness for 15+ providers (Anthropic, OpenAI, Google, Mistral, Groq, xAI, …). API keys or OAuth, with interactive/print/JSON/RPC modes for scripting agent calls.

pi
pi.dev →

Quick Reference

Run this command in your workspace terminal to see all pre-installed AI tools with binary names, auth hints, and docs links:

info