Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Remote Coding Agent for the Dynamous Agentic Coding Course and special Black Friday livestream. Connect Claude Code or Codex to Slack, Telegram, GitHub, etc.
| Date | Stars |
|---|---|
| 2026-07-31 | 347 |
| 2026-08-04 | 347 |
| 2026-08-06 | 347 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# Dynamous Remote Coding Agent Control AI coding assistants (Claude Code, Codex) remotely from Telegram, GitHub, and more. Built for developers who want to code from anywhere with persistent sessions and flexible workflows/systems. **Quick Start:** [Core Configuration](#1-core-configuration-required) • [AI Assistant Setup](#2-ai-assistant-setup-choose-at-least-one) • [Platform Setup](#3-platform-adapter-setup-choose-at-least-one) • [Start the App](#4-start-the-application) • [Usage Guide](#usage) ## Features - **Multi-Platform Support**: Interact via Telegram, GitHub issues/PRs, and more in the future - **Multiple AI Assistants**: Choose between Claude Code or Codex (or both) - **Persistent Sessions**: Sessions survive container restarts with full context preservation - **Codebase Management**: Clone and work with any GitHub repository - **Flexible Streaming**: Real-time or batch message delivery per platform - **Generic Command System**: User-defined commands versioned with Git - **Docker Ready**: Simple deployment with Docker Compose ## Prerequisites **System Requirements:** - Docker & Docker Compose (for deployment) - Node.js 20+ (for local development only) **Accounts Required:** - GitHub account (for repository cloning via `/clone` command) - At least one of: Claude Pro/Max subscription OR Codex account - At least one of: Telegram account OR GitHub account (for interaction) --- **🌐 Production Deployment:** This guide covers local development setup. To deploy remotely for 24/7 operation on a cloud VPS (DigitalOcean, AWS, Linode, etc.), see the **[Cloud Deployment Guide](docs/cloud-deployment.md)**. --- ## Setup Guide **Get started:** ```bash git clone https://github.com/coleam00/remote-agentic-coding-system cd remote-agentic-coding-system ``` ### 1. Core Configuration (Required) **Create environment file:** ```bash cp .env.example .env ``` **Set these required variables:** | Variable | Purpose | How to Get | |----------|---------|------------| | `DATABASE_URL` | PostgreSQL connection | See database options below | | `GH_TOKEN` | Repository cloning | [Generate token](https://github.com/settings/tokens) with `repo` scope | | `GITHUB_TOKEN` | Same as `GH_TOKEN` | Use same token value | | `PORT` | HTTP server port | Default: `3000` (optional) | | `WORKSPACE_PATH` | Clone destination | Default: `./workspace` (optional) | **GitHub Personal Access Token Setup:** 1. Visit [GitHub Settings > Personal Access Tokens](https://github.com/settings/tokens) 2. Click "Generate new token (classic)" → Select scope: **`repo`** 3. Copy token (starts with `ghp_...`) and set both variables: ```env # .env GH_TOKEN=ghp_your_token_here GITHUB_TOKEN=ghp_your_token_here # Same value ``` **Database Setup - Choose One:** <details> <summary><b>Option A: Remote PostgreSQL (Supabase, Neon)</b></summary> Set your remote connection string: ```env DATABASE_URL=postgresql://user:password@host:5432/dbname ``` Run migrations manually after first startup: ```bash # Download the migration file or use psql directly psql $DATABASE_URL < migrations/001_initial_schema.sql ``` This creates 3 tables: - `remote_agent_codebases` - Repository metadata - `remote_agent_conversations` - Platform conversation tracking - `remote_agent_sessions` - AI session management </details> <details> <summary><b>Option B: Local PostgreSQL (via Docker)</b></summary> Use the `with-db` profile for automatic PostgreSQL setup: ```env DATABASE_URL=postgresql://postgres:postgres@postgres:5432/remote_coding_agent ``` Database will be created automatically when you start with `docker compose --profile with-db`. </details> --- ### 2. AI Assistant Setup (Choose At Least One) You must configure **at least one** AI assistant. Both can be configured if desired. <details> <summary><b>🤖 Claude Code</b></summary> **Recommended for Claude Pro/Max subscribers.** **Get OAuth Token (Preferred Method):** ```bash # Install Claude Code CLI first: https://docs.claude.com/
Excerpt of 22,836 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:4be8e626cb1ff947, name:agentic, desc:agentic