Files
zerobyte/app/server/modules/agents/constants.ts
Nico e65a135676 feat(agents): create agent registry and service (#849)
* feat(agents): create agent registry and service

* fix: mark agent offline only if the session was removed properly

* refactor: centralize agent backup lifecycle state

* refactor: simplify session management

* refactor: move effect / async boundary in one place

* chore: regen migration

* refactor: improve error handling

* chore: pr feedback
2026-05-05 19:34:10 +02:00

7 lines
271 B
TypeScript

import type { AgentCapabilities, AgentKind } from "../../db/schema";
export const LOCAL_AGENT_ID = "local";
export const LOCAL_AGENT_NAME = "Local Agent";
export const LOCAL_AGENT_KIND: AgentKind = "local";
export const LOCAL_AGENT_CAPABILITIES: AgentCapabilities = {};