APP_NAME (constants.ts)

room · integration, app-constants, integration-id

Defines app name "Quoroom" and ID for integration constants.

export const APP_NAME = 'Quoroom'
export const APP_ID = 'ai.quoroom.room'

export const DEFAULTS = {
  EXECUTOR: 'claude_code',
  TRIGGER_TYPE: 'cron',
  OBSERVATION_SOURCE: 'claude',
  ENTITY_TYPE: 'fact',
  WINDOW_WIDTH: 480,
  WINDOW_HEIGHT: 600,
  WINDOW_WIDTH_LARGE: 960,
  WINDOW_HEIGHT_LARGE: 1200,
  PROGRESS_THROTTLE_MS: 2000
} as const

export const TRIGGER_TYPES = {
  CRON: 'cron',
  ONCE: 'once',
  MANUAL: 'manual',
  WEBHOOK: 'webhook'
} as const

export const TASK_STATUSES = {
  ACTIVE: 'active',
  PAUSED: 'paused',
  COMPLETED: 'completed'
} as const

export const SETTINGS = {
  NOTIFICATIONS_ENABLED: 'notifications_enabled',
  LARGE_WINDOW_ENABLED: 'large_window_enabled'
} as const

export const ROOM_STATUSES = {
  ACTIVE: 'active',
  PAUSED: 'paused',
  STOPPED: 'stopped'
} 

... (truncated -- full source via MCP)

See the full source, get the GitHub permalink, and search 40K more like it.

Get a free API key