code-oss-logs

Solid

Find and read timestamped process logs from Code OSS dev builds, including main.log, renderer.log, extension host logs, and agenthost.log. For bundles produced by Export Agent Host Debug Logs, use agent-host-logs.

Code & Development 8 stars 0 forks Updated today MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
32
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Code OSS Logs Find and display logs from the most recent Code OSS or Agents app dev run. ## Log Root Directories | App | Default User Data Dir | Logs Path | |-----|-----------------------|-----------| | Code OSS | `$HOME/.vscode-oss-dev` | `$HOME/.vscode-oss-dev/logs/` | | Agents app | `$HOME/.vscode-oss-dev` | `$HOME/.vscode-oss-dev/logs/` | If Code OSS was launched with `--user-data-dir=<dir>`, use `<dir>/logs/` instead of the defaults above. Launch and debugging helpers often create temporary user data dirs under `.build/`; always prefer the exact user data dir from the launch command when it is known. Each run creates a timestamped folder like `20260330T163430`. The most recent folder sorted by modification time is usually the one the user cares about. ## Procedure 1. **Identify which app** the user is asking about: Code OSS or Agents app. If unclear, check both. 2. **Find the most recent log folder**: ```bash ls -lt "$HOME/.vscode-oss-dev/logs" | head -5 # or for a custom user data dir: ls -lt "<user-data-dir>/logs" | head -5 ``` 3. **Navigate into the most recent folder** and list contents. 4. **Read the relevant log file(s)** based on what the user is investigating. Use `tail` for recent entries or `rg` to filter. ## Directory Layout Each timestamped log folder has this structure: ```text <timestamp>/ ├── main.log # Electron main process (app lifecycle, window management) ├── agenthost.log # Agent host pr...

Details

Author
chapmanjw
Repository
chapmanjw/clawdius
Created
1 months ago
Last Updated
today
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

agent-host-logs

Analyze Agent Host debug log exports. Use when given an ah-logs or ahp-logs zip/folder, an Export Agent Host Debug Logs bundle, events.jsonl, AHP JSONL transport logs, Agent Host.log, remote-agenthost.log, or copilot-logs.

8 Updated today
chapmanjw
AI & Automation Solid

launch

Launch Code OSS (VS Code from sources) into an isolated throwaway profile with unique debug ports so you can drive it with @playwright/cli AND attach a Node debugger via dap-cli in the same session. Use when working on VS Code itself and you want to interact with the running workbench, automate chat or UI flows, test UI features, take screenshots, set breakpoints in the renderer / extension host / main process, or combine UI driving with debugging.

8 Updated today
chapmanjw
AI & Automation Listed

oss-launch

Use when taking a repo open source, or hardening one that already is. Run /oss-launch and it scans the repo (stack, existing files, git remote, secrets), asks only what it cannot infer, then generates a tailored OSS file collection (README, LICENSE, CONTRIBUTING, CODE_OF_CONDUCT, SECURITY, CHANGELOG, .gitignore, .github/ issue + PR templates, CI/CD). Also covers launch (GitHub metadata, badges, Show HN, Reddit, YouTube), release cadence (SemVer + CHANGELOG), and demo-GIF generation. Triggers on "open source this", "OSS checklist", "prep for launch", "make this repo public", "add a license / contributing / security policy", "Show HN", "release workflow", "star growth", "get contributors".

8 Updated 5 days ago
AnayDhawan