https://github.com/kargnas/vscode-ext-tmux-worktree
Let's work on 5 projects in parallels
https://github.com/kargnas/vscode-ext-tmux-worktree
ai-coding claude-code codex git-worktree parallel-development terminal tmux vibe-coding vscode-extension worktree
Last synced: 7 days ago
JSON representation
Let's work on 5 projects in parallels
- Host: GitHub
- URL: https://github.com/kargnas/vscode-ext-tmux-worktree
- Owner: kargnas
- License: mit
- Created: 2026-01-17T08:31:30.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-01T09:34:50.000Z (25 days ago)
- Last Synced: 2026-04-02T09:30:40.141Z (24 days ago)
- Topics: ai-coding, claude-code, codex, git-worktree, parallel-development, terminal, tmux, vibe-coding, vscode-extension, worktree
- Language: TypeScript
- Homepage:
- Size: 3.31 MB
- Stars: 29
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.ai-ready.md
- License: LICENSE.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# AI Agentic Coding Environment Setup
This document guides you through setting up the development environment for AI Agents (and human coders).
## 🚀 Quick Start
### 1. Environment Setup
```bash
# Copy AI-ready env (if needed, though currently empty)
cp -n .env.ai-ready .env
# Install Node dependencies
npm install
# Install Go dependencies (for CLI)
cd cli && go mod download && cd ..
```
### 2. Services
This project does not require heavy external services like MySQL or Redis.
It relies on:
- **VS Code**: The host environment.
- **tmux**: Must be installed on the system.
- **git**: Must be installed.
### 3. Testing
```bash
# Run ESLint
npm run lint
# Compile Extension
npm run compile
```
### 4. CLI Development
The CLI is written in Go.
```bash
cd cli
go build -o twt ./main.go
./twt
```