Skip to repository content63 lines · 3.1 KB · json
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T03:55:36.712Z 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_tasks.json
1// Project tasks configuration.
2//
3// Example:
4[
5 {
6 "label": "Example task",
7 "command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done",
8 //"args": [],
9 // Env overrides for the command, will be appended to the terminal's environment from the settings.
10 "env": { "foo": "bar" },
11 // Current working directory to spawn the command into, defaults to current project root.
12 //"cwd": "/path/to/working/directory",
13 // Whether to use a new terminal tab or reuse the existing one to spawn the process, defaults to `false`.
14 "use_new_terminal": false,
15 // Whether to allow multiple instances of the same task to be run, or rather wait for the existing ones to finish, defaults to `false`.
16 "allow_concurrent_runs": false,
17 // What to do with the terminal pane and tab, after the command was started:
18 // * `always` — always show the task's pane, and focus the corresponding tab in it (default)
19 // * `no_focus` — always show the task's pane, add the task's tab in it, but don't focus it
20 // * `never` — do not alter focus, but still add/reuse the task's tab in its pane
21 "reveal": "always",
22 // Where to place the task's terminal item after starting the task:
23 // * `dock` — in the terminal dock, "regular" terminal items' place (default)
24 // * `center` — in the central pane group, "main" editor area
25 "reveal_target": "dock",
26 // What to do with the terminal pane and tab, after the command had finished:
27 // * `never` — Do nothing when the command finishes (default)
28 // * `always` — always hide the terminal tab, hide the pane also if it was the last tab in it
29 // * `on_success` — hide the terminal tab on task success only, otherwise behaves similar to `always`
30 "hide": "never",
31 // Which shell to use when running a task inside the terminal.
32 // May take 3 values:
33 // 1. (default) Use the system's default terminal configuration in /etc/passwd
34 // "shell": "system"
35 // 2. A program:
36 // "shell": {
37 // "program": "sh"
38 // }
39 // 3. A program with arguments:
40 // "shell": {
41 // "with_arguments": {
42 // "program": "/bin/bash",
43 // "args": ["--login"]
44 // }
45 // }
46 "shell": "system",
47 // Whether to show the task line in the output of the spawned task, defaults to `true`.
48 "show_summary": true,
49 // Whether to show the command line in the output of the spawned task, defaults to `true`.
50 "show_command": true,
51 // Which edited buffers to save before running the task:
52 // * `all` — save all edited buffers
53 // * `current` — save currently active buffer only
54 // * `none` — don't save any buffers
55 "save": "none",
56 // Represents the tags for inline runnable indicators, or spawning multiple tasks at once.
57 // "tags": []
58 // Hooks that cause this task to run automatically on certain events:
59 // * `create_worktree` — run this task after creating a new git worktree (e.g. to install dependencies or copy untracked config files into it)
60 // "hooks": ["create_worktree"]
61 },
62]
63