agent-relay 1.3.2 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +130 -158
- package/bin/relay-pty +0 -0
- package/bin/relay-pty-darwin-arm64 +0 -0
- package/bin/relay-pty-darwin-x64 +0 -0
- package/bin/relay-pty-linux-x64 +0 -0
- package/deploy/workspace/entrypoint.sh +9 -0
- package/dist/bridge/spawner.d.ts +4 -4
- package/dist/bridge/spawner.js +58 -92
- package/dist/cli/index.d.ts +8 -6
- package/dist/cli/index.js +282 -47
- package/dist/cloud/api/daemons.js +13 -32
- package/dist/cloud/api/onboarding.js +2 -4
- package/dist/cloud/api/providers.js +6 -0
- package/dist/cloud/config.d.ts +1 -0
- package/dist/cloud/config.js +2 -0
- package/dist/cloud/db/bulk-ingest.d.ts +2 -1
- package/dist/cloud/db/drizzle.d.ts +21 -26
- package/dist/cloud/db/drizzle.js +87 -100
- package/dist/cloud/db/index.d.ts +6 -5
- package/dist/cloud/db/index.js +9 -8
- package/dist/cloud/db/schema.d.ts +1049 -1076
- package/dist/cloud/db/schema.js +59 -71
- package/dist/cloud/server.js +854 -18
- package/dist/cloud/services/persistence.d.ts +15 -15
- package/dist/cloud/services/persistence.js +14 -14
- package/dist/daemon/agent-manager.d.ts +6 -5
- package/dist/daemon/agent-manager.js +12 -8
- package/dist/daemon/channel-membership-store.d.ts +48 -0
- package/dist/daemon/channel-membership-store.js +149 -0
- package/dist/daemon/cloud-sync.d.ts +2 -0
- package/dist/daemon/cloud-sync.js +4 -0
- package/dist/daemon/connection.js +17 -9
- package/dist/daemon/router.d.ts +37 -0
- package/dist/daemon/router.js +318 -79
- package/dist/daemon/server.d.ts +15 -0
- package/dist/daemon/server.js +141 -3
- package/dist/dashboard/out/404.html +1 -0
- package/dist/dashboard/out/_next/static/IxxVRv94L1w3ReRGAiI-k/_buildManifest.js +1 -0
- package/dist/dashboard/out/_next/static/IxxVRv94L1w3ReRGAiI-k/_ssgManifest.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/116-eacf84a131b80db9.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/117-c8afed19e821a35d.js +2 -0
- package/dist/dashboard/out/_next/static/chunks/282-980c2eb8fff20123.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/532-bace199897eeab37.js +9 -0
- package/dist/dashboard/out/_next/static/chunks/64-87ab9cd6bcf2f737.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/648-acb2ff9f77cbfbd3.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/766-aa7c8c9900ff5f53.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/83-4f08122d4e7e79a6.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/847-f1f467060f32afff.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/891-a024fbe4b619cf6f.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/_not-found/page-60501fddbafba9dc.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/app/onboarding/page-f746f29e01fffc43.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/app/page-ffad986adfcc8b31.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/cloud/link/page-cfeb437f08a12ed9.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/connect-repos/page-03ac6f35a6654ea6.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/history/page-240f91e8b06ba8ac.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/layout-c0d118c0f92d969c.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/login/page-6ec54eee75877971.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/metrics/page-82938ab8fcf44694.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/page-671037943b2f2e43.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/pricing/page-0efa024c28ba4597.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/providers/page-57cbd738c6a73859.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/providers/setup/[provider]/page-5ab0854472b402b0.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/app/signup/page-18a4665665f6be11.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/e868780c-48e5f147c90a3a41.js +18 -0
- package/dist/dashboard/out/_next/static/chunks/fd9d1056-609918ca7b6280bb.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/framework-f66176bb897dc684.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/main-5a40a5ae29646e1b.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/main-app-6e8e8d3ef4e0192a.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/pages/_app-72b849fbd24ac258.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/pages/_error-7ba65e1336b92748.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
- package/dist/dashboard/out/_next/static/chunks/webpack-1cdd8ed57114d5e1.js +1 -0
- package/dist/dashboard/out/_next/static/css/4034f236dd1a3178.css +1 -0
- package/dist/dashboard/out/_next/static/css/8f9ed310f454e5a5.css +1 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-128.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-256.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-32.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-512.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-64.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo.svg +45 -0
- package/dist/dashboard/out/alt-logos/logo.svg +38 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-128.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-256.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-32.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-512.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-64.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo.svg +38 -0
- package/dist/dashboard/out/app/onboarding.html +1 -0
- package/dist/dashboard/out/app/onboarding.txt +7 -0
- package/dist/dashboard/out/app.html +1 -0
- package/dist/dashboard/out/app.txt +7 -0
- package/dist/dashboard/out/apple-icon.png +0 -0
- package/dist/dashboard/out/cloud/link.html +1 -0
- package/dist/dashboard/out/cloud/link.txt +7 -0
- package/dist/dashboard/out/connect-repos.html +1 -0
- package/dist/dashboard/out/connect-repos.txt +7 -0
- package/dist/dashboard/out/history.html +1 -0
- package/dist/dashboard/out/history.txt +7 -0
- package/dist/dashboard/out/index.html +1 -0
- package/dist/dashboard/out/index.txt +7 -0
- package/dist/dashboard/out/login.html +5 -0
- package/dist/dashboard/out/login.txt +7 -0
- package/dist/dashboard/out/metrics.html +1 -0
- package/dist/dashboard/out/metrics.txt +7 -0
- package/dist/dashboard/out/pricing.html +13 -0
- package/dist/dashboard/out/pricing.txt +7 -0
- package/dist/dashboard/out/providers/setup/claude.html +1 -0
- package/dist/dashboard/out/providers/setup/claude.txt +8 -0
- package/dist/dashboard/out/providers/setup/codex.html +1 -0
- package/dist/dashboard/out/providers/setup/codex.txt +8 -0
- package/dist/dashboard/out/providers.html +1 -0
- package/dist/dashboard/out/providers.txt +7 -0
- package/dist/dashboard/out/signup.html +6 -0
- package/dist/dashboard/out/signup.txt +7 -0
- package/dist/dashboard-server/metrics.d.ts +105 -0
- package/dist/dashboard-server/metrics.js +193 -0
- package/dist/dashboard-server/needs-attention.d.ts +24 -0
- package/dist/dashboard-server/needs-attention.js +78 -0
- package/dist/dashboard-server/server.d.ts +15 -0
- package/dist/dashboard-server/server.js +4753 -0
- package/dist/dashboard-server/start.d.ts +6 -0
- package/dist/dashboard-server/start.js +13 -0
- package/dist/dashboard-server/user-bridge.d.ts +132 -0
- package/dist/dashboard-server/user-bridge.js +317 -0
- package/dist/protocol/channels.d.ts +14 -8
- package/dist/protocol/channels.js +1 -1
- package/dist/protocol/index.d.ts +1 -0
- package/dist/protocol/index.js +1 -0
- package/dist/protocol/relay-pty-schemas.d.ts +209 -0
- package/dist/protocol/relay-pty-schemas.js +60 -0
- package/dist/wrapper/auth-detection.js +8 -1
- package/dist/wrapper/base-wrapper.d.ts +11 -1
- package/dist/wrapper/base-wrapper.js +67 -6
- package/dist/wrapper/client.d.ts +49 -1
- package/dist/wrapper/client.js +167 -0
- package/dist/wrapper/parser.d.ts +0 -4
- package/dist/wrapper/parser.js +38 -10
- package/dist/wrapper/pty-wrapper.d.ts +12 -1
- package/dist/wrapper/pty-wrapper.js +104 -5
- package/dist/wrapper/relay-pty-orchestrator.d.ts +270 -0
- package/dist/wrapper/relay-pty-orchestrator.js +970 -0
- package/dist/wrapper/shared.d.ts +1 -1
- package/dist/wrapper/shared.js +14 -4
- package/dist/wrapper/tmux-wrapper.d.ts +13 -1
- package/dist/wrapper/tmux-wrapper.js +143 -29
- package/package.json +9 -4
- package/scripts/postinstall.js +101 -11
- package/.trajectories/active/traj_3yx9dy148mge.json +0 -42
- package/.trajectories/agent-relay-322-324.md +0 -17
- package/.trajectories/completed/2026-01/traj_03zupyv1s7b9.json +0 -49
- package/.trajectories/completed/2026-01/traj_03zupyv1s7b9.md +0 -31
- package/.trajectories/completed/2026-01/traj_0zacdjl1g4ht.json +0 -125
- package/.trajectories/completed/2026-01/traj_0zacdjl1g4ht.md +0 -62
- package/.trajectories/completed/2026-01/traj_1dviorhnkcb5.json +0 -65
- package/.trajectories/completed/2026-01/traj_1dviorhnkcb5.md +0 -37
- package/.trajectories/completed/2026-01/traj_1g7yx6qtg4ai.json +0 -49
- package/.trajectories/completed/2026-01/traj_1g7yx6qtg4ai.md +0 -31
- package/.trajectories/completed/2026-01/traj_1k5if5snst2e.json +0 -65
- package/.trajectories/completed/2026-01/traj_1k5if5snst2e.md +0 -37
- package/.trajectories/completed/2026-01/traj_1rp3rges5811.json +0 -49
- package/.trajectories/completed/2026-01/traj_1rp3rges5811.md +0 -31
- package/.trajectories/completed/2026-01/traj_22bhyulruouw.json +0 -113
- package/.trajectories/completed/2026-01/traj_22bhyulruouw.md +0 -57
- package/.trajectories/completed/2026-01/traj_2dao7ddgnta0.json +0 -53
- package/.trajectories/completed/2026-01/traj_2dao7ddgnta0.md +0 -32
- package/.trajectories/completed/2026-01/traj_33iuy72sezbk.json +0 -49
- package/.trajectories/completed/2026-01/traj_33iuy72sezbk.md +0 -31
- package/.trajectories/completed/2026-01/traj_3t0440mjeunc.json +0 -26
- package/.trajectories/completed/2026-01/traj_3t0440mjeunc.md +0 -6
- package/.trajectories/completed/2026-01/traj_45x9494d9xnr.json +0 -47
- package/.trajectories/completed/2026-01/traj_45x9494d9xnr.md +0 -32
- package/.trajectories/completed/2026-01/traj_4aa0bb77s4nh.json +0 -53
- package/.trajectories/completed/2026-01/traj_4aa0bb77s4nh.md +0 -32
- package/.trajectories/completed/2026-01/traj_4qwd4zmhfwp4.json +0 -49
- package/.trajectories/completed/2026-01/traj_4qwd4zmhfwp4.md +0 -31
- package/.trajectories/completed/2026-01/traj_5ammh5qtvklq.json +0 -77
- package/.trajectories/completed/2026-01/traj_5ammh5qtvklq.md +0 -42
- package/.trajectories/completed/2026-01/traj_5lhmzq8rxpqv.json +0 -59
- package/.trajectories/completed/2026-01/traj_5lhmzq8rxpqv.md +0 -33
- package/.trajectories/completed/2026-01/traj_5vr4e9erb1fs.json +0 -53
- package/.trajectories/completed/2026-01/traj_5vr4e9erb1fs.md +0 -32
- package/.trajectories/completed/2026-01/traj_6fgiwdoklvym.json +0 -48
- package/.trajectories/completed/2026-01/traj_6fgiwdoklvym.md +0 -24
- package/.trajectories/completed/2026-01/traj_6mieijqyvaag.json +0 -77
- package/.trajectories/completed/2026-01/traj_6mieijqyvaag.md +0 -42
- package/.trajectories/completed/2026-01/traj_6unwwmgyj5sq.json +0 -109
- package/.trajectories/completed/2026-01/traj_78ffm31jn3uk.json +0 -77
- package/.trajectories/completed/2026-01/traj_78ffm31jn3uk.md +0 -42
- package/.trajectories/completed/2026-01/traj_7ludwvz45veh.json +0 -209
- package/.trajectories/completed/2026-01/traj_7ludwvz45veh.md +0 -97
- package/.trajectories/completed/2026-01/traj_94gnp3k30goq.json +0 -66
- package/.trajectories/completed/2026-01/traj_94gnp3k30goq.md +0 -36
- package/.trajectories/completed/2026-01/traj_9921cuhel0pj.json +0 -48
- package/.trajectories/completed/2026-01/traj_9921cuhel0pj.md +0 -24
- package/.trajectories/completed/2026-01/traj_a0tqx8biw9c4.json +0 -49
- package/.trajectories/completed/2026-01/traj_a0tqx8biw9c4.md +0 -31
- package/.trajectories/completed/2026-01/traj_ajs7zqfux4wc.json +0 -49
- package/.trajectories/completed/2026-01/traj_ajs7zqfux4wc.md +0 -23
- package/.trajectories/completed/2026-01/traj_avqeghu6pz5a.json +0 -40
- package/.trajectories/completed/2026-01/traj_avqeghu6pz5a.md +0 -22
- package/.trajectories/completed/2026-01/traj_ax8uungxz2qh.json +0 -66
- package/.trajectories/completed/2026-01/traj_ax8uungxz2qh.md +0 -36
- package/.trajectories/completed/2026-01/traj_c9izbh2snpzf.json +0 -49
- package/.trajectories/completed/2026-01/traj_c9izbh2snpzf.md +0 -31
- package/.trajectories/completed/2026-01/traj_cpn70dw066nt.json +0 -65
- package/.trajectories/completed/2026-01/traj_cpn70dw066nt.md +0 -37
- package/.trajectories/completed/2026-01/traj_cvtqhlwcq9s0.json +0 -53
- package/.trajectories/completed/2026-01/traj_cvtqhlwcq9s0.md +0 -32
- package/.trajectories/completed/2026-01/traj_cxofprm2m2en.json +0 -49
- package/.trajectories/completed/2026-01/traj_cxofprm2m2en.md +0 -31
- package/.trajectories/completed/2026-01/traj_d2hhz3k0vrhn.json +0 -26
- package/.trajectories/completed/2026-01/traj_d2hhz3k0vrhn.md +0 -6
- package/.trajectories/completed/2026-01/traj_dcsp9s8y01ra.json +0 -121
- package/.trajectories/completed/2026-01/traj_dcsp9s8y01ra.md +0 -29
- package/.trajectories/completed/2026-01/traj_dfuvww9pege5.json +0 -59
- package/.trajectories/completed/2026-01/traj_dfuvww9pege5.md +0 -37
- package/.trajectories/completed/2026-01/traj_erglv2f8t9eh.json +0 -36
- package/.trajectories/completed/2026-01/traj_erglv2f8t9eh.md +0 -21
- package/.trajectories/completed/2026-01/traj_fhx9irlckht6.json +0 -53
- package/.trajectories/completed/2026-01/traj_fhx9irlckht6.md +0 -32
- package/.trajectories/completed/2026-01/traj_fqduidx3xbtp.json +0 -101
- package/.trajectories/completed/2026-01/traj_fqduidx3xbtp.md +0 -52
- package/.trajectories/completed/2026-01/traj_g0fisy9h51mf.json +0 -77
- package/.trajectories/completed/2026-01/traj_g0fisy9h51mf.md +0 -42
- package/.trajectories/completed/2026-01/traj_gjdre5voouod.json +0 -53
- package/.trajectories/completed/2026-01/traj_gjdre5voouod.md +0 -32
- package/.trajectories/completed/2026-01/traj_gtlyqtta3x8l.json +0 -25
- package/.trajectories/completed/2026-01/traj_gtlyqtta3x8l.md +0 -15
- package/.trajectories/completed/2026-01/traj_h4xijiuip3w4.json +0 -101
- package/.trajectories/completed/2026-01/traj_h4xijiuip3w4.md +0 -44
- package/.trajectories/completed/2026-01/traj_he75f24d1xfm.json +0 -101
- package/.trajectories/completed/2026-01/traj_he75f24d1xfm.md +0 -52
- package/.trajectories/completed/2026-01/traj_hf81ey93uz6t.json +0 -49
- package/.trajectories/completed/2026-01/traj_hf81ey93uz6t.md +0 -31
- package/.trajectories/completed/2026-01/traj_hfmki2jr9d4r.json +0 -65
- package/.trajectories/completed/2026-01/traj_hfmki2jr9d4r.md +0 -37
- package/.trajectories/completed/2026-01/traj_hhxte7w4gjjx.json +0 -22
- package/.trajectories/completed/2026-01/traj_hhxte7w4gjjx.md +0 -5
- package/.trajectories/completed/2026-01/traj_hpungyhoj6v5.json +0 -53
- package/.trajectories/completed/2026-01/traj_hpungyhoj6v5.md +0 -32
- package/.trajectories/completed/2026-01/traj_lgtodco7dp1n.json +0 -61
- package/.trajectories/completed/2026-01/traj_lgtodco7dp1n.md +0 -36
- package/.trajectories/completed/2026-01/traj_lq450ly148uw.json +0 -49
- package/.trajectories/completed/2026-01/traj_lq450ly148uw.md +0 -31
- package/.trajectories/completed/2026-01/traj_m2xkjv0w2sq7.json +0 -25
- package/.trajectories/completed/2026-01/traj_m2xkjv0w2sq7.md +0 -15
- package/.trajectories/completed/2026-01/traj_multi_server_arch.md +0 -101
- package/.trajectories/completed/2026-01/traj_noq5zbvnrdvz.json +0 -53
- package/.trajectories/completed/2026-01/traj_noq5zbvnrdvz.md +0 -32
- package/.trajectories/completed/2026-01/traj_ntbs6ppopf46.json +0 -53
- package/.trajectories/completed/2026-01/traj_ntbs6ppopf46.md +0 -32
- package/.trajectories/completed/2026-01/traj_oszg9flv74pk.json +0 -73
- package/.trajectories/completed/2026-01/traj_oszg9flv74pk.md +0 -41
- package/.trajectories/completed/2026-01/traj_ozd98si6a7ns.json +0 -48
- package/.trajectories/completed/2026-01/traj_ozd98si6a7ns.md +0 -24
- package/.trajectories/completed/2026-01/traj_prdza7a5cxp5.json +0 -53
- package/.trajectories/completed/2026-01/traj_prdza7a5cxp5.md +0 -32
- package/.trajectories/completed/2026-01/traj_psd9ob0j2ru3.json +0 -27
- package/.trajectories/completed/2026-01/traj_psd9ob0j2ru3.md +0 -14
- package/.trajectories/completed/2026-01/traj_pulomd3y8cvj.json +0 -77
- package/.trajectories/completed/2026-01/traj_pulomd3y8cvj.md +0 -42
- package/.trajectories/completed/2026-01/traj_qb3twvvywfwi.json +0 -77
- package/.trajectories/completed/2026-01/traj_qb3twvvywfwi.md +0 -42
- package/.trajectories/completed/2026-01/traj_qft54mi7nfor.json +0 -53
- package/.trajectories/completed/2026-01/traj_qft54mi7nfor.md +0 -32
- package/.trajectories/completed/2026-01/traj_qx9uhf8whhxo.json +0 -83
- package/.trajectories/completed/2026-01/traj_qx9uhf8whhxo.md +0 -47
- package/.trajectories/completed/2026-01/traj_rd9toccj18a0.json +0 -59
- package/.trajectories/completed/2026-01/traj_rd9toccj18a0.md +0 -37
- package/.trajectories/completed/2026-01/traj_rsavt0jipi3c.json +0 -109
- package/.trajectories/completed/2026-01/traj_rsavt0jipi3c.md +0 -56
- package/.trajectories/completed/2026-01/traj_rt4fiw3ecp50.json +0 -48
- package/.trajectories/completed/2026-01/traj_rt4fiw3ecp50.md +0 -16
- package/.trajectories/completed/2026-01/traj_st8j35b0hrlc.json +0 -59
- package/.trajectories/completed/2026-01/traj_st8j35b0hrlc.md +0 -37
- package/.trajectories/completed/2026-01/traj_t1yy8m7hbuxp.json +0 -53
- package/.trajectories/completed/2026-01/traj_t1yy8m7hbuxp.md +0 -32
- package/.trajectories/completed/2026-01/traj_tmux_orchestrator_analysis.json +0 -84
- package/.trajectories/completed/2026-01/traj_tmux_orchestrator_analysis.md +0 -109
- package/.trajectories/completed/2026-01/traj_u9n9eqasw16k.json +0 -53
- package/.trajectories/completed/2026-01/traj_u9n9eqasw16k.md +0 -32
- package/.trajectories/completed/2026-01/traj_ub8csuv3lcv4.json +0 -53
- package/.trajectories/completed/2026-01/traj_ub8csuv3lcv4.md +0 -32
- package/.trajectories/completed/2026-01/traj_uc29tlso8i9s.json +0 -186
- package/.trajectories/completed/2026-01/traj_uc29tlso8i9s.md +0 -86
- package/.trajectories/completed/2026-01/traj_ui9b4tqxoa7j.json +0 -77
- package/.trajectories/completed/2026-01/traj_ui9b4tqxoa7j.md +0 -42
- package/.trajectories/completed/2026-01/traj_v87hypnongqx.json +0 -71
- package/.trajectories/completed/2026-01/traj_v87hypnongqx.md +0 -42
- package/.trajectories/completed/2026-01/traj_v9dkdoxylyid.json +0 -89
- package/.trajectories/completed/2026-01/traj_v9dkdoxylyid.md +0 -47
- package/.trajectories/completed/2026-01/traj_wkp2fgzdyinb.json +0 -53
- package/.trajectories/completed/2026-01/traj_wkp2fgzdyinb.md +0 -32
- package/.trajectories/completed/2026-01/traj_x14t8w8rn7xg.json +0 -20
- package/.trajectories/completed/2026-01/traj_x14t8w8rn7xg.md +0 -6
- package/.trajectories/completed/2026-01/traj_x721m1j9rzup.json +0 -113
- package/.trajectories/completed/2026-01/traj_x721m1j9rzup.md +0 -57
- package/.trajectories/completed/2026-01/traj_xjqvmep5ed3h.json +0 -61
- package/.trajectories/completed/2026-01/traj_xjqvmep5ed3h.md +0 -36
- package/.trajectories/completed/2026-01/traj_xnwbznkvv8ua.json +0 -175
- package/.trajectories/completed/2026-01/traj_xnwbznkvv8ua.md +0 -82
- package/.trajectories/completed/2026-01/traj_xy9vifpqet80.json +0 -65
- package/.trajectories/completed/2026-01/traj_xy9vifpqet80.md +0 -37
- package/.trajectories/completed/2026-01/traj_y7aiwijyfmmv.json +0 -49
- package/.trajectories/completed/2026-01/traj_y7aiwijyfmmv.md +0 -31
- package/.trajectories/completed/2026-01/traj_y7n6hfbf7dmg.json +0 -49
- package/.trajectories/completed/2026-01/traj_y7n6hfbf7dmg.md +0 -31
- package/.trajectories/completed/2026-01/traj_ysjc8zaeqtd3.json +0 -47
- package/.trajectories/completed/2026-01/traj_ysjc8zaeqtd3.md +0 -32
- package/.trajectories/completed/2026-01/traj_yvdadtvdgnz3.json +0 -59
- package/.trajectories/completed/2026-01/traj_yvdadtvdgnz3.md +0 -37
- package/.trajectories/completed/2026-01/traj_yvfkwnkdiso2.json +0 -49
- package/.trajectories/completed/2026-01/traj_yvfkwnkdiso2.md +0 -31
- package/.trajectories/completed/2026-01/traj_z0vcw1wrzide.json +0 -53
- package/.trajectories/completed/2026-01/traj_z0vcw1wrzide.md +0 -32
- package/.trajectories/consolidate-settings-panel.md +0 -24
- package/.trajectories/gh-cli-user-token.md +0 -26
- package/.trajectories/index.json +0 -607
package/.trajectories/index.json
DELETED
|
@@ -1,607 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"lastUpdated": "2026-01-11T19:05:52.036968Z",
|
|
4
|
-
"trajectories": {
|
|
5
|
-
"traj_ozd98si6a7ns": {
|
|
6
|
-
"title": "Fix thinking indicator showing on all messages",
|
|
7
|
-
"status": "abandoned",
|
|
8
|
-
"startedAt": "2026-01-02T10:19:46.895Z",
|
|
9
|
-
"completedAt": "2026-01-02T10:22:28.822Z",
|
|
10
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_ozd98si6a7ns.json"
|
|
11
|
-
},
|
|
12
|
-
"traj_gtlyqtta3x8l": {
|
|
13
|
-
"title": "Implement optimistic message delivery",
|
|
14
|
-
"status": "completed",
|
|
15
|
-
"startedAt": "2026-01-02T10:22:32.477Z",
|
|
16
|
-
"completedAt": "2026-01-02T21:18:48.601Z",
|
|
17
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_gtlyqtta3x8l.json"
|
|
18
|
-
},
|
|
19
|
-
"traj_v87hypnongqx": {
|
|
20
|
-
"title": "Switch from GitHub OAuth to GitHub App for repo access",
|
|
21
|
-
"status": "completed",
|
|
22
|
-
"startedAt": "2026-01-02T21:18:58.532Z",
|
|
23
|
-
"completedAt": "2026-01-02T21:55:20.552Z",
|
|
24
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_v87hypnongqx.json"
|
|
25
|
-
},
|
|
26
|
-
"traj_dfuvww9pege5": {
|
|
27
|
-
"title": "Implement Nango OAuth integration for GitHub",
|
|
28
|
-
"status": "completed",
|
|
29
|
-
"startedAt": "2026-01-02T21:56:04.202Z",
|
|
30
|
-
"completedAt": "2026-01-02T21:59:41.222Z",
|
|
31
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_dfuvww9pege5.json"
|
|
32
|
-
},
|
|
33
|
-
"traj_qx9uhf8whhxo": {
|
|
34
|
-
"title": "Comprehensive codebase review and hardening",
|
|
35
|
-
"status": "completed",
|
|
36
|
-
"startedAt": "2026-01-02T22:19:15.313Z",
|
|
37
|
-
"completedAt": "2026-01-02T22:29:20.753Z",
|
|
38
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_qx9uhf8whhxo.json"
|
|
39
|
-
},
|
|
40
|
-
"traj_xnwbznkvv8ua": {
|
|
41
|
-
"title": "Backend developer session - waiting for Lead tasks",
|
|
42
|
-
"status": "completed",
|
|
43
|
-
"startedAt": "2026-01-03T11:26:14.776Z",
|
|
44
|
-
"completedAt": "2026-01-03T11:54:49.955Z",
|
|
45
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_xnwbznkvv8ua.json"
|
|
46
|
-
},
|
|
47
|
-
"traj_rd9toccj18a0": {
|
|
48
|
-
"title": "Replace console.log with structured logger in router.ts",
|
|
49
|
-
"status": "completed",
|
|
50
|
-
"startedAt": "2026-01-03T11:56:09.607Z",
|
|
51
|
-
"completedAt": "2026-01-03T12:01:25.798Z",
|
|
52
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_rd9toccj18a0.json"
|
|
53
|
-
},
|
|
54
|
-
"traj_45x9494d9xnr": {
|
|
55
|
-
"title": "agent-relay-442 - test coverage for vault and billing",
|
|
56
|
-
"status": "completed",
|
|
57
|
-
"startedAt": "2026-01-03T12:01:40.457Z",
|
|
58
|
-
"completedAt": "2026-01-03T12:02:10.085Z",
|
|
59
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_45x9494d9xnr.json"
|
|
60
|
-
},
|
|
61
|
-
"traj_5lhmzq8rxpqv": {
|
|
62
|
-
"title": "agent-relay-yv5 - HookEmitter class",
|
|
63
|
-
"status": "completed",
|
|
64
|
-
"startedAt": "2026-01-03T12:03:48.661Z",
|
|
65
|
-
"completedAt": "2026-01-03T12:05:57.790Z",
|
|
66
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_5lhmzq8rxpqv.json"
|
|
67
|
-
},
|
|
68
|
-
"traj_m2xkjv0w2sq7": {
|
|
69
|
-
"title": "Review GitHub OAuth login logic",
|
|
70
|
-
"status": "completed",
|
|
71
|
-
"startedAt": "2026-01-03T12:06:12.855Z",
|
|
72
|
-
"completedAt": "2026-01-03T12:06:18.137Z",
|
|
73
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_m2xkjv0w2sq7.json"
|
|
74
|
-
},
|
|
75
|
-
"traj_6fgiwdoklvym": {
|
|
76
|
-
"title": "Wire up TrajectoryViewer component",
|
|
77
|
-
"status": "abandoned",
|
|
78
|
-
"startedAt": "2026-01-03T13:25:38.257Z",
|
|
79
|
-
"completedAt": "2026-01-03T13:28:41.392Z",
|
|
80
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_6fgiwdoklvym.json"
|
|
81
|
-
},
|
|
82
|
-
"traj_9921cuhel0pj": {
|
|
83
|
-
"title": "Fix empty continuity handoff files",
|
|
84
|
-
"status": "abandoned",
|
|
85
|
-
"startedAt": "2026-01-03T13:28:47.101Z",
|
|
86
|
-
"completedAt": "2026-01-03T13:30:03.924Z",
|
|
87
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_9921cuhel0pj.json"
|
|
88
|
-
},
|
|
89
|
-
"traj_rt4fiw3ecp50": {
|
|
90
|
-
"title": "Fix trajectory agents array population",
|
|
91
|
-
"status": "abandoned",
|
|
92
|
-
"startedAt": "2026-01-03T13:30:08.415Z",
|
|
93
|
-
"completedAt": "2026-01-03T13:31:22.829Z",
|
|
94
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_rt4fiw3ecp50.json"
|
|
95
|
-
},
|
|
96
|
-
"traj_ysjc8zaeqtd3": {
|
|
97
|
-
"title": "Add recent repos quick access",
|
|
98
|
-
"status": "completed",
|
|
99
|
-
"startedAt": "2026-01-03T13:31:22.891Z",
|
|
100
|
-
"completedAt": "2026-01-03T13:33:18.061Z",
|
|
101
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_ysjc8zaeqtd3.json"
|
|
102
|
-
},
|
|
103
|
-
"traj_x14t8w8rn7xg": {
|
|
104
|
-
"title": "Fix trajectory agents array population",
|
|
105
|
-
"status": "abandoned",
|
|
106
|
-
"startedAt": "2026-01-03T13:36:06.506Z",
|
|
107
|
-
"completedAt": "2026-01-03T13:36:55.892Z",
|
|
108
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_x14t8w8rn7xg.json"
|
|
109
|
-
},
|
|
110
|
-
"traj_z0vcw1wrzide": {
|
|
111
|
-
"title": "Fix trajectory agents array population",
|
|
112
|
-
"status": "completed",
|
|
113
|
-
"startedAt": "2026-01-03T13:37:00.860Z",
|
|
114
|
-
"completedAt": "2026-01-03T13:38:16.320Z",
|
|
115
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_z0vcw1wrzide.json"
|
|
116
|
-
},
|
|
117
|
-
"traj_d2hhz3k0vrhn": {
|
|
118
|
-
"title": "Coordinate backend logic with Frontend",
|
|
119
|
-
"status": "abandoned",
|
|
120
|
-
"startedAt": "2026-01-03T13:40:25.915Z",
|
|
121
|
-
"completedAt": "2026-01-03T13:48:57.609Z",
|
|
122
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_d2hhz3k0vrhn.json"
|
|
123
|
-
},
|
|
124
|
-
"traj_qft54mi7nfor": {
|
|
125
|
-
"title": "Remove any type casts from cloud server",
|
|
126
|
-
"status": "completed",
|
|
127
|
-
"startedAt": "2026-01-03T13:48:58.864Z",
|
|
128
|
-
"completedAt": "2026-01-03T13:50:23.677Z",
|
|
129
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_qft54mi7nfor.json"
|
|
130
|
-
},
|
|
131
|
-
"traj_noq5zbvnrdvz": {
|
|
132
|
-
"title": "Improve trajectory viewer design",
|
|
133
|
-
"status": "completed",
|
|
134
|
-
"startedAt": "2026-01-03T13:58:14.470Z",
|
|
135
|
-
"completedAt": "2026-01-03T14:01:47.410Z",
|
|
136
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_noq5zbvnrdvz.json"
|
|
137
|
-
},
|
|
138
|
-
"traj_1rp3rges5811": {
|
|
139
|
-
"title": "Improve trajectory viewer design",
|
|
140
|
-
"status": "completed",
|
|
141
|
-
"startedAt": "2026-01-03T14:09:55.255Z",
|
|
142
|
-
"completedAt": "2026-01-03T14:10:29.755Z",
|
|
143
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_1rp3rges5811.json"
|
|
144
|
-
},
|
|
145
|
-
"traj_gjdre5voouod": {
|
|
146
|
-
"title": "Fix LogViewer ANSI stripping and Show more removal",
|
|
147
|
-
"status": "completed",
|
|
148
|
-
"startedAt": "2026-01-03T14:11:06.005Z",
|
|
149
|
-
"completedAt": "2026-01-03T14:16:21.305Z",
|
|
150
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_gjdre5voouod.json"
|
|
151
|
-
},
|
|
152
|
-
"traj_h4xijiuip3w4": {
|
|
153
|
-
"title": "Fix trajectory viewer - colors and data loading",
|
|
154
|
-
"status": "completed",
|
|
155
|
-
"startedAt": "2026-01-03T14:28:34.689Z",
|
|
156
|
-
"completedAt": "2026-01-03T14:39:58.858Z",
|
|
157
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_h4xijiuip3w4.json"
|
|
158
|
-
},
|
|
159
|
-
"traj_u9n9eqasw16k": {
|
|
160
|
-
"title": "Backend trajectory data-loading fix review",
|
|
161
|
-
"status": "completed",
|
|
162
|
-
"startedAt": "2026-01-03T14:40:11.376Z",
|
|
163
|
-
"completedAt": "2026-01-03T14:41:50.001Z",
|
|
164
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_u9n9eqasw16k.json"
|
|
165
|
-
},
|
|
166
|
-
"traj_4aa0bb77s4nh": {
|
|
167
|
-
"title": "Record backend review findings",
|
|
168
|
-
"status": "completed",
|
|
169
|
-
"startedAt": "2026-01-03T14:42:29.295Z",
|
|
170
|
-
"completedAt": "2026-01-03T14:42:42.369Z",
|
|
171
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_4aa0bb77s4nh.json"
|
|
172
|
-
},
|
|
173
|
-
"traj_ntbs6ppopf46": {
|
|
174
|
-
"title": "Re-review backend fixes",
|
|
175
|
-
"status": "completed",
|
|
176
|
-
"startedAt": "2026-01-03T14:42:57.213Z",
|
|
177
|
-
"completedAt": "2026-01-03T14:43:14.756Z",
|
|
178
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_ntbs6ppopf46.json"
|
|
179
|
-
},
|
|
180
|
-
"traj_2dao7ddgnta0": {
|
|
181
|
-
"title": "Replace console.log with structured logger in agent-registry.ts and cloud-sync.ts",
|
|
182
|
-
"status": "completed",
|
|
183
|
-
"startedAt": "2026-01-03T14:48:09.986Z",
|
|
184
|
-
"completedAt": "2026-01-03T14:56:16.425Z",
|
|
185
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_2dao7ddgnta0.json"
|
|
186
|
-
},
|
|
187
|
-
"traj_wkp2fgzdyinb": {
|
|
188
|
-
"title": "Fix continuity parser to handle markdown content",
|
|
189
|
-
"status": "completed",
|
|
190
|
-
"startedAt": "2026-01-03T15:03:22.148Z",
|
|
191
|
-
"completedAt": "2026-01-03T15:09:03.169Z",
|
|
192
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_wkp2fgzdyinb.json"
|
|
193
|
-
},
|
|
194
|
-
"traj_3t0440mjeunc": {
|
|
195
|
-
"title": "Wire up TrajectoryViewer component in dashboard",
|
|
196
|
-
"status": "abandoned",
|
|
197
|
-
"startedAt": "2026-01-03T15:24:03.823Z",
|
|
198
|
-
"completedAt": "2026-01-03T15:25:25.534Z",
|
|
199
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_3t0440mjeunc.json"
|
|
200
|
-
},
|
|
201
|
-
"traj_1dviorhnkcb5": {
|
|
202
|
-
"title": "Use uuid() instead of Math.random() for message IDs",
|
|
203
|
-
"status": "completed",
|
|
204
|
-
"startedAt": "2026-01-03T15:25:32.815Z",
|
|
205
|
-
"completedAt": "2026-01-03T15:25:42.319Z",
|
|
206
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_1dviorhnkcb5.json"
|
|
207
|
-
},
|
|
208
|
-
"traj_qb3twvvywfwi": {
|
|
209
|
-
"title": "Test coverage for Vault and billing modules",
|
|
210
|
-
"status": "completed",
|
|
211
|
-
"startedAt": "2026-01-03T15:26:26.404Z",
|
|
212
|
-
"completedAt": "2026-01-03T15:37:00.890Z",
|
|
213
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_qb3twvvywfwi.json"
|
|
214
|
-
},
|
|
215
|
-
"traj_5vr4e9erb1fs": {
|
|
216
|
-
"title": "Investigate P0 spawn bug agent-relay-453",
|
|
217
|
-
"status": "completed",
|
|
218
|
-
"startedAt": "2026-01-03T15:46:41.489Z",
|
|
219
|
-
"completedAt": "2026-01-03T15:46:53.995Z",
|
|
220
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_5vr4e9erb1fs.json"
|
|
221
|
-
},
|
|
222
|
-
"traj_hpungyhoj6v5": {
|
|
223
|
-
"title": "Fix tmux-wrapper.ts spawn CLI optional",
|
|
224
|
-
"status": "completed",
|
|
225
|
-
"startedAt": "2026-01-03T15:47:17.137Z",
|
|
226
|
-
"completedAt": "2026-01-03T15:50:12.155Z",
|
|
227
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_hpungyhoj6v5.json"
|
|
228
|
-
},
|
|
229
|
-
"traj_prdza7a5cxp5": {
|
|
230
|
-
"title": "Fix notification filtering to use dynamic user",
|
|
231
|
-
"status": "completed",
|
|
232
|
-
"startedAt": "2026-01-03T15:51:54.280Z",
|
|
233
|
-
"completedAt": "2026-01-03T15:55:06.279Z",
|
|
234
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_prdza7a5cxp5.json"
|
|
235
|
-
},
|
|
236
|
-
"traj_cvtqhlwcq9s0": {
|
|
237
|
-
"title": "Fix trajectory viewer navigation - add back to list",
|
|
238
|
-
"status": "completed",
|
|
239
|
-
"startedAt": "2026-01-03T16:37:49.153Z",
|
|
240
|
-
"completedAt": "2026-01-03T18:43:48.687Z",
|
|
241
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_cvtqhlwcq9s0.json"
|
|
242
|
-
},
|
|
243
|
-
"traj_st8j35b0hrlc": {
|
|
244
|
-
"title": "Fix cloud provisioning for GitHub cloning and agent credentials",
|
|
245
|
-
"status": "completed",
|
|
246
|
-
"startedAt": "2026-01-03T19:04:57.338Z",
|
|
247
|
-
"completedAt": "2026-01-03T19:09:05.597Z",
|
|
248
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_st8j35b0hrlc.json"
|
|
249
|
-
},
|
|
250
|
-
"traj_yvdadtvdgnz3": {
|
|
251
|
-
"title": "Full cloud e2e flow review",
|
|
252
|
-
"status": "completed",
|
|
253
|
-
"startedAt": "2026-01-03T19:17:32.797Z",
|
|
254
|
-
"completedAt": "2026-01-03T19:22:22.762Z",
|
|
255
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_yvdadtvdgnz3.json"
|
|
256
|
-
},
|
|
257
|
-
"traj_1k5if5snst2e": {
|
|
258
|
-
"title": "Fix 404 errors on auth endpoints",
|
|
259
|
-
"status": "completed",
|
|
260
|
-
"startedAt": "2026-01-03T19:55:20.964Z",
|
|
261
|
-
"completedAt": "2026-01-03T21:14:38.934Z",
|
|
262
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_1k5if5snst2e.json"
|
|
263
|
-
},
|
|
264
|
-
"traj_cxofprm2m2en": {
|
|
265
|
-
"title": "Fix Nango popup blocked by browser - use constructor pattern",
|
|
266
|
-
"status": "completed",
|
|
267
|
-
"startedAt": "2026-01-03T21:18:15.384Z",
|
|
268
|
-
"completedAt": "2026-01-03T21:18:33.901Z",
|
|
269
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_cxofprm2m2en.json"
|
|
270
|
-
},
|
|
271
|
-
"traj_ajs7zqfux4wc": {
|
|
272
|
-
"title": "Fix Nango popup blocked - match my-senior-dev pattern exactly",
|
|
273
|
-
"status": "completed",
|
|
274
|
-
"startedAt": "2026-01-03T21:22:52.243Z",
|
|
275
|
-
"completedAt": "2026-01-03T21:23:07.802Z",
|
|
276
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_ajs7zqfux4wc.json"
|
|
277
|
-
},
|
|
278
|
-
"traj_7ludwvz45veh": {
|
|
279
|
-
"title": "Provider CLI auth flow for cloud workspaces",
|
|
280
|
-
"status": "completed",
|
|
281
|
-
"startedAt": "2026-01-04T00:05:43.304Z",
|
|
282
|
-
"completedAt": "2026-01-05T21:10:34.744Z",
|
|
283
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_7ludwvz45veh.json"
|
|
284
|
-
},
|
|
285
|
-
"traj_t1yy8m7hbuxp": {
|
|
286
|
-
"title": "Implement GitHub repo permission API via Nango for dashboard access",
|
|
287
|
-
"status": "completed",
|
|
288
|
-
"startedAt": "2026-01-05T21:10:44.264Z",
|
|
289
|
-
"completedAt": "2026-01-05T21:13:52.530Z",
|
|
290
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_t1yy8m7hbuxp.json"
|
|
291
|
-
},
|
|
292
|
-
"traj_g0fisy9h51mf": {
|
|
293
|
-
"title": "Lead agent coordination - GitHub repo access feature",
|
|
294
|
-
"status": "completed",
|
|
295
|
-
"startedAt": "2026-01-05T21:18:03.796Z",
|
|
296
|
-
"completedAt": "2026-01-05T21:29:51.191Z",
|
|
297
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_g0fisy9h51mf.json"
|
|
298
|
-
},
|
|
299
|
-
"traj_22bhyulruouw": {
|
|
300
|
-
"title": "Lead agent coordination - responsive nav fix and team assignments",
|
|
301
|
-
"status": "completed",
|
|
302
|
-
"startedAt": "2026-01-05T19:45:50.807Z",
|
|
303
|
-
"completedAt": "2026-01-05T20:10:25.523Z",
|
|
304
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_22bhyulruouw.json"
|
|
305
|
-
},
|
|
306
|
-
"traj_hhxte7w4gjjx": {
|
|
307
|
-
"title": "test",
|
|
308
|
-
"status": "abandoned",
|
|
309
|
-
"startedAt": "2026-01-05T20:14:01.563Z",
|
|
310
|
-
"completedAt": "2026-01-05T20:14:01.617Z",
|
|
311
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_hhxte7w4gjjx.json"
|
|
312
|
-
},
|
|
313
|
-
"traj_fhx9irlckht6": {
|
|
314
|
-
"title": "Spec and plan: Auto workspace access + Human-to-human messaging",
|
|
315
|
-
"status": "completed",
|
|
316
|
-
"startedAt": "2026-01-05T23:10:52.953Z",
|
|
317
|
-
"completedAt": "2026-01-05T23:15:32.933Z",
|
|
318
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_fhx9irlckht6.json"
|
|
319
|
-
},
|
|
320
|
-
"traj_avqeghu6pz5a": {
|
|
321
|
-
"title": "Fix gh CLI authentication in workspace containers",
|
|
322
|
-
"status": "completed",
|
|
323
|
-
"startedAt": "2026-01-05T23:14:00.755Z",
|
|
324
|
-
"completedAt": "2026-01-05T23:44:34.432Z",
|
|
325
|
-
"path": "/workspace/relay/.trajectories/completed/2026-01/traj_avqeghu6pz5a.json"
|
|
326
|
-
},
|
|
327
|
-
"traj_hfmki2jr9d4r": {
|
|
328
|
-
"title": "Implement auto workspace access + mobile UI fixes",
|
|
329
|
-
"status": "completed",
|
|
330
|
-
"startedAt": "2026-01-05T23:45:03.470Z",
|
|
331
|
-
"completedAt": "2026-01-06T00:03:49.311Z",
|
|
332
|
-
"path": "/workspace/relay/.trajectories/completed/2026-01/traj_hfmki2jr9d4r.json"
|
|
333
|
-
},
|
|
334
|
-
"traj_5ammh5qtvklq": {
|
|
335
|
-
"title": "Evaluate Fly.io Sprites and implement workspace resilience",
|
|
336
|
-
"status": "completed",
|
|
337
|
-
"startedAt": "2026-01-06T06:24:17.361Z",
|
|
338
|
-
"completedAt": "2026-01-06T06:25:03.223Z",
|
|
339
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_5ammh5qtvklq.json"
|
|
340
|
-
},
|
|
341
|
-
"traj_ui9b4tqxoa7j": {
|
|
342
|
-
"title": "Fix agent token fetch with improved error handling",
|
|
343
|
-
"status": "completed",
|
|
344
|
-
"startedAt": "2026-01-06T08:24:36.222Z",
|
|
345
|
-
"completedAt": "2026-01-06T08:25:20.777Z",
|
|
346
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_ui9b4tqxoa7j.json"
|
|
347
|
-
},
|
|
348
|
-
"traj_xy9vifpqet80": {
|
|
349
|
-
"title": "Extract BaseWrapper from PtyWrapper and TmuxWrapper",
|
|
350
|
-
"status": "completed",
|
|
351
|
-
"startedAt": "2026-01-06T12:27:13.004Z",
|
|
352
|
-
"completedAt": "2026-01-06T12:58:24.003Z",
|
|
353
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_xy9vifpqet80.json"
|
|
354
|
-
},
|
|
355
|
-
"traj_78ffm31jn3uk": {
|
|
356
|
-
"title": "Fix agent token fetch and seamless gh CLI",
|
|
357
|
-
"status": "completed",
|
|
358
|
-
"startedAt": "2026-01-06T16:24:13.901Z",
|
|
359
|
-
"completedAt": "2026-01-06T16:24:50.235Z",
|
|
360
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_78ffm31jn3uk.json"
|
|
361
|
-
},
|
|
362
|
-
"traj_v9dkdoxylyid": {
|
|
363
|
-
"title": "Implement first-class user messaging with channels and DMs",
|
|
364
|
-
"status": "completed",
|
|
365
|
-
"startedAt": "2026-01-06T17:11:57.504Z",
|
|
366
|
-
"completedAt": "2026-01-06T17:12:56.919Z",
|
|
367
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_v9dkdoxylyid.json"
|
|
368
|
-
},
|
|
369
|
-
"traj_ub8csuv3lcv4": {
|
|
370
|
-
"title": "Fix WebSocket disconnections for workspace instances",
|
|
371
|
-
"status": "completed",
|
|
372
|
-
"startedAt": "2026-01-06T18:13:23.603Z",
|
|
373
|
-
"completedAt": "2026-01-06T18:16:51.462Z",
|
|
374
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_ub8csuv3lcv4.json"
|
|
375
|
-
},
|
|
376
|
-
"traj_fqduidx3xbtp": {
|
|
377
|
-
"title": "Implement dynamic repo management for workspaces",
|
|
378
|
-
"status": "completed",
|
|
379
|
-
"startedAt": "2026-01-07T05:44:47.138Z",
|
|
380
|
-
"completedAt": "2026-01-07T06:07:35.433Z",
|
|
381
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_fqduidx3xbtp.json"
|
|
382
|
-
},
|
|
383
|
-
"traj_multi_server_arch": {
|
|
384
|
-
"title": "Multi-server architecture document",
|
|
385
|
-
"status": "completed",
|
|
386
|
-
"startedAt": "2026-01-07T06:00:00.000Z",
|
|
387
|
-
"completedAt": "2026-01-07T06:30:00.000Z",
|
|
388
|
-
"path": "/home/user/relay/.trajectories/completed/2026-01/traj_multi_server_arch.md"
|
|
389
|
-
},
|
|
390
|
-
"traj_6mieijqyvaag": {
|
|
391
|
-
"title": "Fix xterm interactive terminal for provider auth setup",
|
|
392
|
-
"status": "completed",
|
|
393
|
-
"startedAt": "2026-01-07T08:27:00.428Z",
|
|
394
|
-
"completedAt": "2026-01-07T08:28:17.323Z",
|
|
395
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_6mieijqyvaag.json"
|
|
396
|
-
},
|
|
397
|
-
"traj_0zacdjl1g4ht": {
|
|
398
|
-
"title": "Interactive terminal for provider auth setup",
|
|
399
|
-
"status": "completed",
|
|
400
|
-
"startedAt": "2026-01-07T10:06:42.869Z",
|
|
401
|
-
"completedAt": "2026-01-07T10:07:24.422Z",
|
|
402
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_0zacdjl1g4ht.json"
|
|
403
|
-
},
|
|
404
|
-
"traj_lq450ly148uw": {
|
|
405
|
-
"title": "Dashboard UI fixes, billing improvements, and settings alignment",
|
|
406
|
-
"status": "completed",
|
|
407
|
-
"startedAt": "2026-01-07T10:07:46.226Z",
|
|
408
|
-
"completedAt": "2026-01-07T10:07:58.979Z",
|
|
409
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_lq450ly148uw.json"
|
|
410
|
-
},
|
|
411
|
-
"traj_uc29tlso8i9s": {
|
|
412
|
-
"title": "Production-ready SSH tunneling for Codex OAuth with security hardening",
|
|
413
|
-
"status": "completed",
|
|
414
|
-
"startedAt": "2026-01-07T10:08:04.299Z",
|
|
415
|
-
"completedAt": "2026-01-07T10:09:10.870Z",
|
|
416
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_uc29tlso8i9s.json"
|
|
417
|
-
},
|
|
418
|
-
"traj_dcsp9s8y01ra": {
|
|
419
|
-
"title": "Dashboard UI fixes, billing improvements, and settings alignment",
|
|
420
|
-
"status": "completed",
|
|
421
|
-
"startedAt": "2026-01-07T10:09:36.428Z",
|
|
422
|
-
"completedAt": "2026-01-07T10:09:38.308Z",
|
|
423
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_dcsp9s8y01ra.json"
|
|
424
|
-
},
|
|
425
|
-
"traj_y7aiwijyfmmv": {
|
|
426
|
-
"title": "Fix CLI hanging - add auth check endpoint",
|
|
427
|
-
"status": "completed",
|
|
428
|
-
"startedAt": "2026-01-07T10:19:49.851Z",
|
|
429
|
-
"completedAt": "2026-01-07T10:19:49.966Z",
|
|
430
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_y7aiwijyfmmv.json"
|
|
431
|
-
},
|
|
432
|
-
"traj_psd9ob0j2ru3": {
|
|
433
|
-
"title": "Clarify codex rule file location and spawn behavior",
|
|
434
|
-
"status": "completed",
|
|
435
|
-
"startedAt": "2026-01-07T12:37:16.374Z",
|
|
436
|
-
"completedAt": "2026-01-07T12:40:48.197Z",
|
|
437
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_psd9ob0j2ru3.json"
|
|
438
|
-
},
|
|
439
|
-
"traj_33iuy72sezbk": {
|
|
440
|
-
"title": "Ensure Codex config applies without OPENAI_TOKEN",
|
|
441
|
-
"status": "completed",
|
|
442
|
-
"startedAt": "2026-01-07T12:53:31.624Z",
|
|
443
|
-
"completedAt": "2026-01-07T12:53:45.247Z",
|
|
444
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_33iuy72sezbk.json"
|
|
445
|
-
},
|
|
446
|
-
"traj_94gnp3k30goq": {
|
|
447
|
-
"title": "Fix intra-workspace messaging delivery and sidebar/notification visibility",
|
|
448
|
-
"status": "completed",
|
|
449
|
-
"startedAt": "2026-01-07T14:03:47.655Z",
|
|
450
|
-
"completedAt": "2026-01-07T14:11:00.042Z",
|
|
451
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_94gnp3k30goq.json"
|
|
452
|
-
},
|
|
453
|
-
"traj_03zupyv1s7b9": {
|
|
454
|
-
"title": "Fix intra-workspace messaging delivery and sidebar/notification visibility",
|
|
455
|
-
"status": "completed",
|
|
456
|
-
"startedAt": "2026-01-07T14:15:50.956Z",
|
|
457
|
-
"completedAt": "2026-01-07T14:16:39.455Z",
|
|
458
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_03zupyv1s7b9.json"
|
|
459
|
-
},
|
|
460
|
-
"traj_hf81ey93uz6t": {
|
|
461
|
-
"title": "Add sidebar section break between agents and human users",
|
|
462
|
-
"status": "completed",
|
|
463
|
-
"startedAt": "2026-01-07T14:18:40.736Z",
|
|
464
|
-
"completedAt": "2026-01-07T14:19:04.139Z",
|
|
465
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_hf81ey93uz6t.json"
|
|
466
|
-
},
|
|
467
|
-
"traj_c9izbh2snpzf": {
|
|
468
|
-
"title": "Fix sshd startup for Codex tunnel",
|
|
469
|
-
"status": "completed",
|
|
470
|
-
"startedAt": "2026-01-07T16:17:28.232Z",
|
|
471
|
-
"completedAt": "2026-01-07T16:17:39.267Z",
|
|
472
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_c9izbh2snpzf.json"
|
|
473
|
-
},
|
|
474
|
-
"traj_ax8uungxz2qh": {
|
|
475
|
-
"title": "Fix DM participant toggle (removal not working)",
|
|
476
|
-
"status": "completed",
|
|
477
|
-
"startedAt": "2026-01-07T19:10:39.600Z",
|
|
478
|
-
"completedAt": "2026-01-07T19:26:00.289Z",
|
|
479
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_ax8uungxz2qh.json"
|
|
480
|
-
},
|
|
481
|
-
"traj_1g7yx6qtg4ai": {
|
|
482
|
-
"title": "Inline DM conversation with agent invites",
|
|
483
|
-
"status": "completed",
|
|
484
|
-
"startedAt": "2026-01-07T19:32:42.245Z",
|
|
485
|
-
"completedAt": "2026-01-07T19:32:52.650Z",
|
|
486
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_1g7yx6qtg4ai.json"
|
|
487
|
-
},
|
|
488
|
-
"traj_yvfkwnkdiso2": {
|
|
489
|
-
"title": "DM invite button sticky + command palette",
|
|
490
|
-
"status": "completed",
|
|
491
|
-
"startedAt": "2026-01-07T19:46:11.952Z",
|
|
492
|
-
"completedAt": "2026-01-07T19:46:25.825Z",
|
|
493
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_yvfkwnkdiso2.json"
|
|
494
|
-
},
|
|
495
|
-
"traj_lgtodco7dp1n": {
|
|
496
|
-
"title": "DM routing/flow cleanup",
|
|
497
|
-
"status": "completed",
|
|
498
|
-
"startedAt": "2026-01-07T21:41:28.024Z",
|
|
499
|
-
"completedAt": "2026-01-07T21:41:49.080Z",
|
|
500
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_lgtodco7dp1n.json"
|
|
501
|
-
},
|
|
502
|
-
"traj_rsavt0jipi3c": {
|
|
503
|
-
"title": "Power agent session - ready for tasks",
|
|
504
|
-
"status": "completed",
|
|
505
|
-
"startedAt": "2026-01-08T07:54:35.678Z",
|
|
506
|
-
"completedAt": "2026-01-08T09:01:29.981Z",
|
|
507
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_rsavt0jipi3c.json"
|
|
508
|
-
},
|
|
509
|
-
"traj_oszg9flv74pk": {
|
|
510
|
-
"title": "Fix cloud link authentication flow",
|
|
511
|
-
"status": "completed",
|
|
512
|
-
"startedAt": "2026-01-08T09:01:35.826Z",
|
|
513
|
-
"completedAt": "2026-01-08T09:01:57.389Z",
|
|
514
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_oszg9flv74pk.json"
|
|
515
|
-
},
|
|
516
|
-
"traj_xjqvmep5ed3h": {
|
|
517
|
-
"title": "Fix update-workspaces GitHub Action job",
|
|
518
|
-
"status": "completed",
|
|
519
|
-
"startedAt": "2026-01-08T09:02:08.758Z",
|
|
520
|
-
"completedAt": "2026-01-08T09:02:24.262Z",
|
|
521
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_xjqvmep5ed3h.json"
|
|
522
|
-
},
|
|
523
|
-
"traj_y7n6hfbf7dmg": {
|
|
524
|
-
"title": "Add useSearchParams/Suspense rule to react-dashboard",
|
|
525
|
-
"status": "completed",
|
|
526
|
-
"startedAt": "2026-01-08T09:02:29.285Z",
|
|
527
|
-
"completedAt": "2026-01-08T09:02:38.286Z",
|
|
528
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_y7n6hfbf7dmg.json"
|
|
529
|
-
},
|
|
530
|
-
"traj_q8rga0395hq5": {
|
|
531
|
-
"title": "Test trajectory",
|
|
532
|
-
"status": "completed",
|
|
533
|
-
"startedAt": "2026-01-09T21:54:01.480Z",
|
|
534
|
-
"completedAt": "2026-01-09T21:54:39.396Z",
|
|
535
|
-
"path": ".trajectories/completed/2026-01/traj_q8rga0395hq5.json"
|
|
536
|
-
},
|
|
537
|
-
"traj_pulomd3y8cvj": {
|
|
538
|
-
"title": "Refactor trajectory configuration to centralized location",
|
|
539
|
-
"status": "completed",
|
|
540
|
-
"startedAt": "2026-01-09T22:23:26.438Z",
|
|
541
|
-
"completedAt": "2026-01-09T22:24:32.439Z",
|
|
542
|
-
"path": "/workspace/relay/.trajectories/completed/2026-01/traj_pulomd3y8cvj.json"
|
|
543
|
-
},
|
|
544
|
-
"traj_3yx9dy148mge": {
|
|
545
|
-
"title": "Investigate agent-relay codex-auth tunnel failure",
|
|
546
|
-
"status": "active",
|
|
547
|
-
"startedAt": "2026-01-10T04:02:25.981Z",
|
|
548
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/active/traj_3yx9dy148mge.json"
|
|
549
|
-
},
|
|
550
|
-
"traj_a0tqx8biw9c4": {
|
|
551
|
-
"title": "Tighten trajectory viewer loading state",
|
|
552
|
-
"status": "completed",
|
|
553
|
-
"startedAt": "2026-01-11T11:13:18.562Z",
|
|
554
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_a0tqx8biw9c4.json",
|
|
555
|
-
"completedAt": "2026-01-11T11:42:34.201Z"
|
|
556
|
-
},
|
|
557
|
-
"traj_he75f24d1xfm": {
|
|
558
|
-
"title": "Implement cloud message storage for Algolia challenge",
|
|
559
|
-
"status": "completed",
|
|
560
|
-
"startedAt": "2026-01-08T23:57:42.804Z",
|
|
561
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_he75f24d1xfm.json",
|
|
562
|
-
"completedAt": "2026-01-08T23:58:17.292Z"
|
|
563
|
-
},
|
|
564
|
-
"traj_erglv2f8t9eh": {
|
|
565
|
-
"title": "TrajectoryViewer loading state fix",
|
|
566
|
-
"status": "completed",
|
|
567
|
-
"startedAt": "2026-01-11T11:46:56.195Z",
|
|
568
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_erglv2f8t9eh.json",
|
|
569
|
-
"completedAt": "2026-01-11T11:47:05.481Z"
|
|
570
|
-
},
|
|
571
|
-
"traj_4qwd4zmhfwp4": {
|
|
572
|
-
"title": "gh-relay 401 retry + delivery tracker refactor",
|
|
573
|
-
"status": "completed",
|
|
574
|
-
"startedAt": "2026-01-11T10:59:19.370Z",
|
|
575
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_4qwd4zmhfwp4.json",
|
|
576
|
-
"completedAt": "2026-01-11T10:59:52.187Z"
|
|
577
|
-
},
|
|
578
|
-
"traj_6unwwmgyj5sq": {
|
|
579
|
-
"title": "Lead agent session retrospective - workspace persistence and git auth fixes",
|
|
580
|
-
"status": "completed",
|
|
581
|
-
"startedAt": "2026-01-09T21:22:00Z",
|
|
582
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_6unwwmgyj5sq.json",
|
|
583
|
-
"completedAt": "2026-01-09T21:50:00Z"
|
|
584
|
-
},
|
|
585
|
-
"traj_x721m1j9rzup": {
|
|
586
|
-
"title": "Phase 1-3 socket baseline architecture and performance optimizations",
|
|
587
|
-
"status": "completed",
|
|
588
|
-
"startedAt": "2026-01-10T03:55:14.837Z",
|
|
589
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_x721m1j9rzup.json",
|
|
590
|
-
"completedAt": "2026-01-10T03:55:52.216Z"
|
|
591
|
-
},
|
|
592
|
-
"traj_tmux_orchestrator_analysis": {
|
|
593
|
-
"title": "Tmux-Orchestrator competitive analysis",
|
|
594
|
-
"status": "completed",
|
|
595
|
-
"startedAt": "2026-01-04T09:00:00.000Z",
|
|
596
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_tmux_orchestrator_analysis.json",
|
|
597
|
-
"completedAt": "2026-01-04T09:30:00.000Z"
|
|
598
|
-
},
|
|
599
|
-
"traj_cpn70dw066nt": {
|
|
600
|
-
"title": "Mobile responsive fixes + SIGINT interrupt fix",
|
|
601
|
-
"status": "completed",
|
|
602
|
-
"startedAt": "2026-01-11T11:48:02.037Z",
|
|
603
|
-
"path": "/Users/khaliqgant/Projects/agent-workforce/relay/.trajectories/completed/2026-01/traj_cpn70dw066nt.json",
|
|
604
|
-
"completedAt": "2026-01-11T11:49:01.558Z"
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
}
|