Skip to repository content23 lines · 979 B · json
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:53:28.253Z 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_worktree_setup_tasks.json
1// Worktree setup tasks, stored in this project's tasks.json.
2//
3// Tasks with the `create_worktree` hook run automatically right after Omega
4// creates a new git worktree. Use them to get a fresh worktree ready to work
5// in — for example, installing dependencies or copying files that git doesn't
6// track (like `.env`) from the original repository.
7//
8// Two variables are available to these tasks:
9// * $ZED_WORKTREE_ROOT — the root directory of the newly created worktree
10// * $ZED_MAIN_GIT_WORKTREE — the original repository's working directory
11//
12// Uncomment the example below and adjust the command to get started.
13// Note: hooked tasks run as soon as a worktree is created, so only enable
14// commands you want to run automatically.
15[
16 // {
17 // "label": "Set up new worktree",
18 // "command": "cp -n \"$ZED_MAIN_GIT_WORKTREE/.env\" \"$ZED_WORKTREE_ROOT/\" && npm install",
19 // "cwd": "$ZED_WORKTREE_ROOT",
20 // "hooks": ["create_worktree"]
21 // }
22]
23