Skip to repository content29 lines · 664 B · json
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:48:11.871Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
initial_debug_tasks.json
1// Some example tasks for common languages.
2//
3// For more documentation on how to configure debug tasks,
4[
5 {
6 "label": "Debug active Python file",
7 "adapter": "Debugpy",
8 "program": "$ZED_FILE",
9 "request": "launch",
10 "cwd": "$ZED_WORKTREE_ROOT",
11 },
12 {
13 "label": "Debug active JavaScript file",
14 "adapter": "JavaScript",
15 "program": "$ZED_FILE",
16 "request": "launch",
17 "cwd": "$ZED_WORKTREE_ROOT",
18 "type": "pwa-node",
19 },
20 {
21 "label": "JavaScript debug terminal",
22 "adapter": "JavaScript",
23 "request": "launch",
24 "cwd": "$ZED_WORKTREE_ROOT",
25 "console": "integratedTerminal",
26 "type": "pwa-node",
27 },
28]
29