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
Formal Verification Gates for AI Coding Loops
AI가 생성한 코드에서 보안 불변식(invariant)을 지키게 하려면 프롬프트 지시보다 타입 시스템 같은 구조적 제약이 훨씬 효과적이라는 주장과 구현 방법을 소개한다.
Learnings from 100K lines of Rust with AI (2025)
Azure RSL(분산 합의 라이브러리)을 Rust로 재구현하면서 AI 코딩 에이전트를 활용해 4주 만에 100K 라인을 작성한 경험담으로, Code Contracts와 Spec-Driven Development를 AI와 조합하는 실전 워크플로우를 공유한다.
Show HN: Forge – Guardrails take an 8B model from 53% to 99% on agentic tasks
작은 로컬 LLM(8B)에 guardrails(구조적 안전망)를 씌워 멀티스텝 에이전트 작업 성공률을 53%에서 99%까지 올린 Python 프레임워크 Forge 공개. 모델 자체는 건드리지 않고 실행 환경을 강화하는 접근법이라 주목받고 있음.
Mini Shai-Hulud Strikes Again: 314 npm Packages Compromised
2026년 5월 19일, npm 계정 하나가 탈취되어 22분 만에 637개 악성 버전이 배포됐고, echarts-for-react·size-sensor 등 월 수백만 다운로드 패키지들이 감염되어 AWS 자격증명·SSH 키·AI 코딩 에이전트까지 탈취하는 정교한 공급망 공격이 발생했다.
Show HN: Semble – Code search for agents that uses 98% fewer tokens than grep
AI 에이전트가 코드베이스를 탐색할 때 grep+파일 읽기 대신 자연어로 관련 코드 스니펫만 뽑아주는 검색 라이브러리로, 토큰 사용량을 약 98% 줄여준다.
Zerostack – A Unix-inspired coding agent written in pure Rust
Claude Code나 OpenCode처럼 메모리를 수 GB씩 잡아먹는 코딩 에이전트 대신, Rust로 만든 초경량(~8MB RAM) 코딩 에이전트 Zerostack이 공개됐다. 저사양 환경에서도 쓸 수 있고, 직접 만든 유사 프로젝트들과 비교 토론이 활발하게 이뤄지고 있다.