Show HN: ctx – an Agentic Development Environment (ADE)
TL;DR Highlight
ADE (Agentic Development Environment) is a tool that allows you to run multiple coding agents such as Claude Code, Codex, and Cursor in a containerized, isolated environment from a single interface, and safely merge the results of parallel tasks.
Who Should Read
Development team engineers or platform/security personnel who are simultaneously using multiple AI coding agents (Claude Code, Codex, etc.) within a team, experiencing workflow fragmentation and management difficulties, or wanting to control the file access and network permissions of agents.
Core Mechanics
- ctx positions itself as a tool in the ADE (Agentic Development Environment) category. If IDE provides a workspace for developers, ADE provides a workspace for AI agents. It allows you to integrate and use different coding agents such as Claude Code, OpenAI Codex, and Cursor in a single UI.
- The environment in which the agent runs is isolated in a container, allowing you to explicitly control the scope of disk access and network communication. It acts as a security layer to prevent the agent from unintentionally transmitting data externally or accessing sensitive files.
- Instead of requesting user approval every time an agent works, you can configure it to operate autonomously within a predefined scope of permissions (bounded autonomy), preventing interruptions to the workflow.
- It utilizes Git worktree (a feature that allows you to simultaneously check out a repository into multiple directories) to run multiple agents in parallel on different tasks. Each task proceeds in an independent worktree, enabling concurrent work without file conflicts.
- It features an Agent Merge Queue to sequentially organize the changes from agents working in parallel and merge them into the main branch. Handling conflicts, especially when two agents modify the same file, is a key challenge that ctx aims to address.
- Task-specific execution sessions, diffs, and transcripts (a complete record of the agent's work), along with artifacts, are integrated into a single review screen. This makes it easier to track and review what the agent has done.
- It can be run not only on a local machine but also on remote devboxes or VPSs managed by the user. In a typical local workflow, you can use your own API keys and models without a ctx account.
- Installation is possible with a single curl command (`curl -fsSL ctx.rs/install | sh`). For first-time users, it is recommended to verify the entire loop (provider connection → workspace addition → simple first task execution (e.g., label modification, bug fix)) to validate functionality.
Evidence
- One comment pointed out the limitations in multi-repo environments. In actual development environments, dozens of repositories are often grouped into a single workspace, and it's unclear whether ctx properly supports scenarios where a single feature implementation is planned across multiple repos.
- Several comments pointed out that the GitHub repo (github.com/ctxrs/ctx) lacks source code and only contains links. The repo is marked as 'open source,' but the lack of actual code caused misunderstanding, and questions about the open-source status and free/paid policy followed.
- One comment noted that the Merge Queue, a core feature, is receiving less attention. While parallel agent execution is easy, merging changes when two agents modify the same file without conflicts is a problem that most tools haven't solved. Comments requested specific explanations of the conflict resolution method.
- There were questions comparing it to existing ADE tools like Conductor. Concerns were raised that existing ADEs lack code navigation capabilities and are GUI-focused, and the need for a tool that combines IntelliJ-level IDE functionality with the multitasking capabilities of ADEs was expressed.
- One comment asked if it supports GitHub Copilot subscription accounts (OAuth/HMAC). The practicality of adoption depends on being able to use an existing Copilot subscription because the cost of direct API calls is burdensome.
- A bug report was posted as a comment stating that the app window appears as a blank screen and the menu bar is completely disabled on Linux. Linux support appears to be unstable.
- One user shared an experience of abandoning Conductor because it forced the GitHub PR workflow. They asked if ctx allows free management of local repos and flexible handling of merges.
How to Apply
- If your team uses Claude Code and Codex with fragmented tools, introducing ctx as a common interface can centrally manage task history and diffs in a single review screen, regardless of the agent type.
- If you are concerned about agents freely reading the entire codebase and arbitrarily calling external APIs, you can operate ctx with container isolation and network egress policies to allow agents access only to permitted disk ranges and external communication.
- When you need to develop multiple independent features simultaneously, you can leverage ctx's worktree-based parallel task execution and Agent Merge Queue to create a pipeline where each agent works in a separate branch and merges safely in the order completed.
- When first introducing it, it is recommended to start with tasks that are small in scope and low in risk, such as modifying label text or fixing a simple bug, and then gradually apply it to more complex tasks after verifying the entire loop (install → provider connection → workspace addition → task execution → diff review → finalize).
Code Example
# ctx installation (one-line curl)
curl -fsSL ctx.rs/install | sh
# Subsequent flow (based on documentation)
# 1. Run app and connect provider (Claude Code, Codex, etc.)
# 2. Add local repo or remote devbox/VPS as workspace
# 3. Example of first task execution (recommended to start with low-risk tasks)
# - Modify a label or verification message
# - Fix a narrow-scoped, clear bug
# - Make a small UI/document/configuration change
# 4. Review diff and finalize changesTerminology
Related Papers
Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper
마케팅 웹사이트를 자동 생성하는 프로덕션 AI 에이전트를 Claude Opus 4.8에서 GPT-5.6 Sol로 전환한 실전 경험담으로, 단순 모델 교체가 아니라 eval 하네스, 툴 스키마, 캐싱, 추론 리플레이까지 손봐야 했던 과정을 구체적인 수치와 함께 정리했다.
What xAI's Grok build CLI sends to xAI: A wire-level analysis
xAI의 공식 코딩 CLI 도구 Grok Build가 사용자 동의 없이 전체 Git 저장소와 .env 시크릿 파일을 xAI 서버로 업로드한다는 사실이 네트워크 트래픽 분석으로 밝혀졌다.
Remember When It Matters: Proactive Memory Agent for Long-Horizon Agents
LLM 에이전트가 긴 작업 중 중요한 정보를 잊어버리는 문제를 별도의 메모리 에이전트가 '적절한 타이밍에' 끼어들어 해결하는 방법
WebSwarm: Recursive Multi-Agent Orchestration for Deep-and-Wide Web Search
복잡한 웹 검색을 재귀적으로 분해하고 각 노드에 적합한 검색 모드를 동적으로 할당하는 멀티에이전트 프레임워크
Show HN: Reverse-engineering web apps into agent tools
로그인된 웹 앱의 API 호출을 브라우저에서 감시해 자동으로 MCP 도구로 변환하는 에이전트를 만들었다. 소스 코드나 공식 API 문서 없이도 Jira, Spotify 같은 서비스에 AI 어시스턴트를 붙일 수 있다.
Show HN: FableCut – A browser video editor AI agents can drive (zero deps)
타임라인 전체를 JSON 파일 하나로 표현하고 MCP/REST로 AI 에이전트가 직접 편집할 수 있는 브라우저 비디오 에디터로, Claude 같은 AI가 프롬프트 하나로 영상을 자동 컷편집하고 결과를 실시간으로 UI에 반영해준다.