{"id":49468072,"url":"https://github.com/thechandanbhagat/overture","last_synced_at":"2026-04-30T13:35:02.448Z","repository":{"id":351731709,"uuid":"1212162036","full_name":"thechandanbhagat/overture","owner":"thechandanbhagat","description":"Orchestrate multiple app processes from a VS Code sidebar terminals, profiles, logs, and auto-discovery.","archived":false,"fork":false,"pushed_at":"2026-04-17T00:42:37.000Z","size":112,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-30T13:34:58.241Z","etag":null,"topics":["dev-tools","developer-tools","extension","process-manager","productivity","vscode"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thechandanbhagat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-16T05:52:01.000Z","updated_at":"2026-04-26T04:30:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/thechandanbhagat/overture","commit_stats":null,"previous_names":["thechandanbhagat/overture"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/thechandanbhagat/overture","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thechandanbhagat%2Foverture","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thechandanbhagat%2Foverture/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thechandanbhagat%2Foverture/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thechandanbhagat%2Foverture/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thechandanbhagat","download_url":"https://codeload.github.com/thechandanbhagat/overture/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thechandanbhagat%2Foverture/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32466333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dev-tools","developer-tools","extension","process-manager","productivity","vscode"],"created_at":"2026-04-30T13:35:00.805Z","updated_at":"2026-04-30T13:35:02.443Z","avatar_url":"https://github.com/thechandanbhagat.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overture\n\nRun and manage multiple app processes from a single VS Code sidebar panel — with per-app terminals, live logs, and automatic project detection.\n\n---\n\n## Features\n\n- **Sidebar panel** — view all your apps at a glance with live status indicators\n- **Per-app terminals** — each process runs in its own VS Code terminal tab with full color and interactivity\n- **Log files** — output is simultaneously written to `.overture/logs/\u003capp\u003e-YYYY-MM-DD.log` (ANSI stripped, timestamped)\n- **Auto-scan** — detects all Node.js projects in your workspace and lists their npm scripts\n- **Enable / Disable** — toggle apps on or off without removing them from config\n- **Log retention** — old logs are auto-cleaned after a configurable number of days (default: 7)\n\n---\n\n## Installation\n\nInstall from the `.vsix` file:\n\n```\ncode --install-extension overture-1.0.3.vsix\n```\n\nOr via VS Code: **Extensions → ··· → Install from VSIX**\n\n---\n\n## Quick Start\n\n1. Open your project folder in VS Code\n2. Click the **Overture** icon in the activity bar (left sidebar)\n3. Click **Create Config** — this immediately opens a scanner to detect your projects\n4. Select the scripts you want to run and confirm\n5. Click **Start All** (▶▶ icon) to launch everything\n\n---\n\n## Config File\n\nThe extension reads `.overture/config.json` from your workspace root.\n\n```json\n{\n  \"retentionDays\": 7,\n  \"apps\": [\n    {\n      \"name\": \"frontend\",\n      \"path\": \"./packages/frontend\",\n      \"command\": \"npm run dev\",\n      \"enabled\": true\n    },\n    {\n      \"name\": \"backend\",\n      \"path\": \"./packages/backend\",\n      \"command\": \"npm run dev\",\n      \"enabled\": true\n    },\n    {\n      \"name\": \"worker\",\n      \"path\": \"./packages/worker\",\n      \"command\": \"npm run dev\",\n      \"enabled\": false\n    }\n  ]\n}\n```\n\n| Field          | Type    | Description                                      |\n|----------------|---------|--------------------------------------------------|\n| `retentionDays`| number  | Days to keep log files (default: 7)              |\n| `name`         | string  | Display name shown in the sidebar                |\n| `path`         | string  | Path to the project folder, relative to workspace root |\n| `command`      | string  | Command to run (e.g. `npm run dev`, `yarn start`)|\n| `enabled`      | boolean | Whether this app starts with Start All           |\n\nThe file is watched — changes take effect immediately without reloading VS Code.\n\n---\n\n## Sidebar Panel\n\nClick the **Overture** icon in the activity bar to open the panel.\n\n### Status indicators\n\n| Icon | Meaning |\n|------|---------|\n| Green filled circle | Running |\n| Grey outline circle | Stopped |\n| Slash circle | Disabled |\n| Red filled circle | Exited with error |\n\n### Toolbar buttons\n\n| Button | Action |\n|--------|--------|\n| ▶▶ | Start all enabled apps |\n| ⏹ | Stop all running apps |\n| ↺ | Refresh / reload config |\n| ⚙ | Open config file |\n| 🔍 | Scan workspace for Node.js projects |\n\n### Per-app inline buttons\n\nRight-click any app or use the inline icons:\n\n| Button | Condition | Action |\n|--------|-----------|--------|\n| ▶ | Stopped | Start this app |\n| ⏹ | Running | Stop this app |\n| ↺ | Running | Restart this app |\n| ⊟ | Any | Show terminal output |\n| ⊘ | Any | Toggle enable / disable |\n\n---\n\n## Scanning for Projects\n\nClick the **magnifying glass** icon or run `Overture: Scan Workspace for Node.js Projects` from the Command Palette (`Ctrl+Shift+P`).\n\nThe scanner:\n- Finds every `package.json` in the workspace (skips `node_modules`, `dist`, `build`, `out`)\n- Lists all scripts grouped by project\n- Pre-selects `dev`, `start`, `serve`, `preview`, `develop` scripts\n- Marks already-configured scripts so you don't add duplicates\n\nAfter confirming your selection, scripts are appended to `.overture/config.json`. You can scan multiple times safely.\n\n---\n\n## Terminals \u0026 Logs\n\nEach app runs in its own VS Code terminal tab named `▶ \u003cappname\u003e`.\n\n- Full ANSI color support — npm spinners, colors, etc. render correctly\n- The terminal is **interactive** — you can type into it (stdin is forwarded)\n- Closing the terminal tab stops the process\n\nLog files are written to `.overture/logs/`:\n- One file per app per day: `frontend-2026-04-16.log`\n- ANSI codes stripped, each line prefixed with `[HH:MM:SS]`\n- Files older than `retentionDays` are deleted automatically on next start\n\n---\n\n## Commands (Command Palette)\n\nAll commands are available via `Ctrl+Shift+P` → type **Overture**:\n\n| Command | Description |\n|---------|-------------|\n| Overture: Start All Enabled Apps | Start all enabled apps |\n| Overture: Stop All Apps | Stop all running apps |\n| Overture: Scan Workspace for Node.js Projects | Auto-detect and add projects |\n| Overture: Refresh | Reload config and sync state |\n| Overture: Open Config | Open `.overture/config.json` |\n| Overture: Create Config | Create an empty config and open the scanner |\n\n---\n\n## Status Bar\n\nThe bottom-left status bar shows the running count:\n\n- `▶ Overture` — nothing running, click to start all\n- `● 2/3 running` — 2 of 3 enabled apps are running, click to start remaining\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthechandanbhagat%2Foverture","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthechandanbhagat%2Foverture","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthechandanbhagat%2Foverture/lists"}