
Cli Default
- 1 installs
- 14 repo stars
- Updated July 28, 2026
- constructive-io/agentic-db
Run typed CRUD, unified search, and context and config commands over the 91 generated agentic-db tables from the command line.
About
A CLI tool (agentic-db) that wraps a generated ORM to give typed per-table CRUD, unified search, and context/config commands over 91 generated database tables. A developer uses it to query and manage the agentic-db data model from the terminal.
- agentic-db CLI wraps a generated ORM with per-table CRUD subcommands
- Top-level context, config, auth, search, and ask commands for 91 generated tables
Cli Default by the numbers
- 1 all-time installs (skills.sh)
- Ranked #765 of 911 Databases skills by installs in the Skillselion catalog
- Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/constructive-io/agentic-db --skill cli-defaultAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 14 |
| Last updated | July 28, 2026 |
| Repository | constructive-io/agentic-db ↗ |
What it does
Run typed CRUD, unified search, and context and config commands over the 91 generated agentic-db tables from the command line.
Files
skill
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Skill records via agentic-db CLI
Usage
agentic-db skill list
agentic-db skill get --id <value>
agentic-db skill create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --slugTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --contentTrgmSimilarity <value> --procedureTrgmSimilarity <value> --filePathTrgmSimilarity <value> --contentHashTrgmSimilarity <value> --categoryTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --intentTriggerVectorDistance <value> --searchScore <value> [--slug <value>] [--description <value>] [--content <value>] [--procedure <value>] [--interface <value>] [--requirements <value>] [--prerequisites <value>] [--alwaysLoad <value>] [--filePath <value>] [--contentHash <value>] [--category <value>] [--isActive <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--intentTrigger <value>]
agentic-db skill update --id <value> [--entityId <value>] [--name <value>] [--slug <value>] [--description <value>] [--content <value>] [--procedure <value>] [--interface <value>] [--requirements <value>] [--prerequisites <value>] [--alwaysLoad <value>] [--filePath <value>] [--contentHash <value>] [--category <value>] [--isActive <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--intentTrigger <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--slugTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--contentTrgmSimilarity <value>] [--procedureTrgmSimilarity <value>] [--filePathTrgmSimilarity <value>] [--contentHashTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--abstractTrgmSimilarity <value>] [--overviewTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--intentTriggerVectorDistance <value>] [--searchScore <value>]
agentic-db skill delete --id <value>Examples
List all skill records
agentic-db skill listCreate a skill
agentic-db skill create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --slugTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --contentTrgmSimilarity <value> --procedureTrgmSimilarity <value> --filePathTrgmSimilarity <value> --contentHashTrgmSimilarity <value> --categoryTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --intentTriggerVectorDistance <value> --searchScore <value> [--slug <value>] [--description <value>] [--content <value>] [--procedure <value>] [--interface <value>] [--requirements <value>] [--prerequisites <value>] [--alwaysLoad <value>] [--filePath <value>] [--contentHash <value>] [--category <value>] [--isActive <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--intentTrigger <value>]Get a skill by id
agentic-db skill get --id <value>activityLog
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ActivityLog records via agentic-db CLI
Usage
agentic-db activity-log list
agentic-db activity-log get --id <value>
agentic-db activity-log create --entityId <value> --actorType <value> --action <value> --targetType <value> --targetId <value> --actorTypeTrgmSimilarity <value> --actionTrgmSimilarity <value> --targetTypeTrgmSimilarity <value> --searchScore <value> [--actorId <value>] [--metadata <value>]
agentic-db activity-log update --id <value> [--entityId <value>] [--actorType <value>] [--actorId <value>] [--action <value>] [--targetType <value>] [--targetId <value>] [--metadata <value>] [--actorTypeTrgmSimilarity <value>] [--actionTrgmSimilarity <value>] [--targetTypeTrgmSimilarity <value>] [--searchScore <value>]
agentic-db activity-log delete --id <value>Examples
List all activityLog records
agentic-db activity-log listCreate a activityLog
agentic-db activity-log create --entityId <value> --actorType <value> --action <value> --targetType <value> --targetId <value> --actorTypeTrgmSimilarity <value> --actionTrgmSimilarity <value> --targetTypeTrgmSimilarity <value> --searchScore <value> [--actorId <value>] [--metadata <value>]Get a activityLog by id
agentic-db activity-log get --id <value>agentPrompt
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for AgentPrompt records via agentic-db CLI
Usage
agentic-db agent-prompt list
agentic-db agent-prompt get --id <value>
agentic-db agent-prompt create --agentId <value> --promptId <value> --entityId <value>
agentic-db agent-prompt update --id <value> [--agentId <value>] [--promptId <value>] [--entityId <value>]
agentic-db agent-prompt delete --id <value>Examples
List all agentPrompt records
agentic-db agent-prompt listCreate a agentPrompt
agentic-db agent-prompt create --agentId <value> --promptId <value> --entityId <value>Get a agentPrompt by id
agentic-db agent-prompt get --id <value>agentRule
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for AgentRule records via agentic-db CLI
Usage
agentic-db agent-rule list
agentic-db agent-rule get --id <value>
agentic-db agent-rule create --agentId <value> --ruleId <value> --entityId <value>
agentic-db agent-rule update --id <value> [--agentId <value>] [--ruleId <value>] [--entityId <value>]
agentic-db agent-rule delete --id <value>Examples
List all agentRule records
agentic-db agent-rule listCreate a agentRule
agentic-db agent-rule create --agentId <value> --ruleId <value> --entityId <value>Get a agentRule by id
agentic-db agent-rule get --id <value>agentSkill
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for AgentSkill records via agentic-db CLI
Usage
agentic-db agent-skill list
agentic-db agent-skill get --id <value>
agentic-db agent-skill create --agentId <value> --skillId <value> --entityId <value>
agentic-db agent-skill update --id <value> [--agentId <value>] [--skillId <value>] [--entityId <value>]
agentic-db agent-skill delete --id <value>Examples
List all agentSkill records
agentic-db agent-skill listCreate a agentSkill
agentic-db agent-skill create --agentId <value> --skillId <value> --entityId <value>Get a agentSkill by id
agentic-db agent-skill get --id <value>agentSpawn
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for AgentSpawn records via agentic-db CLI
Usage
agentic-db agent-spawn list
agentic-db agent-spawn get --id <value>
agentic-db agent-spawn create --entityId <value> --parentAgentId <value> --task <value> --agentId <value> --taskTrgmSimilarity <value> --statusTrgmSimilarity <value> --searchScore <value> [--childAgentId <value>] [--sessionId <value>] [--status <value>] [--result <value>] [--maxIterations <value>] [--startedAt <value>] [--completedAt <value>]
agentic-db agent-spawn update --id <value> [--entityId <value>] [--parentAgentId <value>] [--childAgentId <value>] [--sessionId <value>] [--task <value>] [--status <value>] [--result <value>] [--maxIterations <value>] [--startedAt <value>] [--completedAt <value>] [--agentId <value>] [--taskTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--searchScore <value>]
agentic-db agent-spawn delete --id <value>Examples
List all agentSpawn records
agentic-db agent-spawn listCreate a agentSpawn
agentic-db agent-spawn create --entityId <value> --parentAgentId <value> --task <value> --agentId <value> --taskTrgmSimilarity <value> --statusTrgmSimilarity <value> --searchScore <value> [--childAgentId <value>] [--sessionId <value>] [--status <value>] [--result <value>] [--maxIterations <value>] [--startedAt <value>] [--completedAt <value>]Get a agentSpawn by id
agentic-db agent-spawn get --id <value>agentTool
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for AgentTool records via agentic-db CLI
Usage
agentic-db agent-tool list
agentic-db agent-tool get --id <value>
agentic-db agent-tool create --agentId <value> --toolId <value> --entityId <value>
agentic-db agent-tool update --id <value> [--agentId <value>] [--toolId <value>] [--entityId <value>]
agentic-db agent-tool delete --id <value>Examples
List all agentTool records
agentic-db agent-tool listCreate a agentTool
agentic-db agent-tool create --agentId <value> --toolId <value> --entityId <value>Get a agentTool by id
agentic-db agent-tool get --id <value>agent
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Agent records via agentic-db CLI
Usage
agentic-db agent list
agentic-db agent get --id <value>
agentic-db agent create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --roleTrgmSimilarity <value> --statusTrgmSimilarity <value> --personaTrgmSimilarity <value> --backstoryTrgmSimilarity <value> --communicationStyleTrgmSimilarity <value> --systemPromptTrgmSimilarity <value> --preferredModelTrgmSimilarity <value> --moodTrgmSimilarity <value> --focusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--role <value>] [--capabilities <value>] [--config <value>] [--status <value>] [--persona <value>] [--backstory <value>] [--communicationStyle <value>] [--systemPrompt <value>] [--preferredModel <value>] [--fallbackModels <value>] [--temperature <value>] [--mood <value>] [--focus <value>] [--lastActiveAt <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db agent update --id <value> [--entityId <value>] [--name <value>] [--role <value>] [--capabilities <value>] [--config <value>] [--status <value>] [--persona <value>] [--backstory <value>] [--communicationStyle <value>] [--systemPrompt <value>] [--preferredModel <value>] [--fallbackModels <value>] [--temperature <value>] [--mood <value>] [--focus <value>] [--lastActiveAt <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--roleTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--personaTrgmSimilarity <value>] [--backstoryTrgmSimilarity <value>] [--communicationStyleTrgmSimilarity <value>] [--systemPromptTrgmSimilarity <value>] [--preferredModelTrgmSimilarity <value>] [--moodTrgmSimilarity <value>] [--focusTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db agent delete --id <value>Examples
List all agent records
agentic-db agent listCreate a agent
agentic-db agent create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --roleTrgmSimilarity <value> --statusTrgmSimilarity <value> --personaTrgmSimilarity <value> --backstoryTrgmSimilarity <value> --communicationStyleTrgmSimilarity <value> --systemPromptTrgmSimilarity <value> --preferredModelTrgmSimilarity <value> --moodTrgmSimilarity <value> --focusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--role <value>] [--capabilities <value>] [--config <value>] [--status <value>] [--persona <value>] [--backstory <value>] [--communicationStyle <value>] [--systemPrompt <value>] [--preferredModel <value>] [--fallbackModels <value>] [--temperature <value>] [--mood <value>] [--focus <value>] [--lastActiveAt <value>] [--embeddingText <value>] [--embedding <value>]Get a agent by id
agentic-db agent get --id <value>attachment
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Attachment records via agentic-db CLI
Usage
agentic-db attachment list
agentic-db attachment get --id <value>
agentic-db attachment create --entityId <value> --url <value> --urlTrgmSimilarity <value> --filenameTrgmSimilarity <value> --mimeTypeTrgmSimilarity <value> --attachableTypeTrgmSimilarity <value> --searchScore <value> [--filename <value>] [--mimeType <value>] [--sizeBytes <value>] [--attachableType <value>] [--attachableId <value>]
agentic-db attachment update --id <value> [--entityId <value>] [--url <value>] [--filename <value>] [--mimeType <value>] [--sizeBytes <value>] [--attachableType <value>] [--attachableId <value>] [--urlTrgmSimilarity <value>] [--filenameTrgmSimilarity <value>] [--mimeTypeTrgmSimilarity <value>] [--attachableTypeTrgmSimilarity <value>] [--searchScore <value>]
agentic-db attachment delete --id <value>Examples
List all attachment records
agentic-db attachment listCreate a attachment
agentic-db attachment create --entityId <value> --url <value> --urlTrgmSimilarity <value> --filenameTrgmSimilarity <value> --mimeTypeTrgmSimilarity <value> --attachableTypeTrgmSimilarity <value> --searchScore <value> [--filename <value>] [--mimeType <value>] [--sizeBytes <value>] [--attachableType <value>] [--attachableId <value>]Get a attachment by id
agentic-db attachment get --id <value>Authentication
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
Manage authentication tokens for agentic-db
Usage
agentic-db auth set-token <token>
agentic-db auth status
agentic-db auth logoutExamples
Authenticate with a token
agentic-db auth set-token eyJhbGciOiJIUzI1NiIs...Check auth status
agentic-db auth statusbillingSubscription
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for BillingSubscription records via agentic-db CLI
Usage
agentic-db billing-subscription list
agentic-db billing-subscription get --id <value>
agentic-db billing-subscription create --entityId <value> --name <value> --nameTrgmSimilarity <value> --currencyTrgmSimilarity <value> --frequencyTrgmSimilarity <value> --providerTrgmSimilarity <value> --statusTrgmSimilarity <value> --notesTrgmSimilarity <value> --searchScore <value> [--amount <value>] [--currency <value>] [--frequency <value>] [--provider <value>] [--nextBillingDate <value>] [--cancellationDate <value>] [--status <value>] [--tags <value>] [--notes <value>]
agentic-db billing-subscription update --id <value> [--entityId <value>] [--name <value>] [--amount <value>] [--currency <value>] [--frequency <value>] [--provider <value>] [--nextBillingDate <value>] [--cancellationDate <value>] [--status <value>] [--tags <value>] [--notes <value>] [--nameTrgmSimilarity <value>] [--currencyTrgmSimilarity <value>] [--frequencyTrgmSimilarity <value>] [--providerTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--notesTrgmSimilarity <value>] [--searchScore <value>]
agentic-db billing-subscription delete --id <value>Examples
List all billingSubscription records
agentic-db billing-subscription listCreate a billingSubscription
agentic-db billing-subscription create --entityId <value> --name <value> --nameTrgmSimilarity <value> --currencyTrgmSimilarity <value> --frequencyTrgmSimilarity <value> --providerTrgmSimilarity <value> --statusTrgmSimilarity <value> --notesTrgmSimilarity <value> --searchScore <value> [--amount <value>] [--currency <value>] [--frequency <value>] [--provider <value>] [--nextBillingDate <value>] [--cancellationDate <value>] [--status <value>] [--tags <value>] [--notes <value>]Get a billingSubscription by id
agentic-db billing-subscription get --id <value>blueprint
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Blueprint records via agentic-db CLI
Usage
agentic-db blueprint list
agentic-db blueprint get --id <value>
agentic-db blueprint create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --triggerConditionsTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--steps <value>] [--triggerConditions <value>] [--conversationId <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db blueprint update --id <value> [--entityId <value>] [--title <value>] [--steps <value>] [--triggerConditions <value>] [--conversationId <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--triggerConditionsTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db blueprint delete --id <value>Examples
List all blueprint records
agentic-db blueprint listCreate a blueprint
agentic-db blueprint create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --triggerConditionsTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--steps <value>] [--triggerConditions <value>] [--conversationId <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a blueprint by id
agentic-db blueprint get --id <value>calendarAccount
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for CalendarAccount records via agentic-db CLI
Usage
agentic-db calendar-account list
agentic-db calendar-account get --id <value>
agentic-db calendar-account create --entityId <value> --email <value> --emailTrgmSimilarity <value> --providerTrgmSimilarity <value> --syncTokenTrgmSimilarity <value> --searchScore <value> [--provider <value>] [--syncToken <value>] [--lastSyncedAt <value>]
agentic-db calendar-account update --id <value> [--entityId <value>] [--email <value>] [--provider <value>] [--syncToken <value>] [--lastSyncedAt <value>] [--emailTrgmSimilarity <value>] [--providerTrgmSimilarity <value>] [--syncTokenTrgmSimilarity <value>] [--searchScore <value>]
agentic-db calendar-account delete --id <value>Examples
List all calendarAccount records
agentic-db calendar-account listCreate a calendarAccount
agentic-db calendar-account create --entityId <value> --email <value> --emailTrgmSimilarity <value> --providerTrgmSimilarity <value> --syncTokenTrgmSimilarity <value> --searchScore <value> [--provider <value>] [--syncToken <value>] [--lastSyncedAt <value>]Get a calendarAccount by id
agentic-db calendar-account get --id <value>calendarEventContact
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for CalendarEventContact records via agentic-db CLI
Usage
agentic-db calendar-event-contact list
agentic-db calendar-event-contact get --id <value>
agentic-db calendar-event-contact create --calendarEventId <value> --contactId <value> --entityId <value>
agentic-db calendar-event-contact update --id <value> [--calendarEventId <value>] [--contactId <value>] [--entityId <value>]
agentic-db calendar-event-contact delete --id <value>Examples
List all calendarEventContact records
agentic-db calendar-event-contact listCreate a calendarEventContact
agentic-db calendar-event-contact create --calendarEventId <value> --contactId <value> --entityId <value>Get a calendarEventContact by id
agentic-db calendar-event-contact get --id <value>calendarEvent
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for CalendarEvent records via agentic-db CLI
Usage
agentic-db calendar-event list
agentic-db calendar-event get --id <value>
agentic-db calendar-event create --entityId <value> --title <value> --startAt <value> --embeddingTextBm25Score <value> --remoteIdTrgmSimilarity <value> --titleTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --locationTrgmSimilarity <value> --recurrenceRuleTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--calendarAccountId <value>] [--remoteId <value>] [--description <value>] [--endAt <value>] [--allDay <value>] [--location <value>] [--recurrenceRule <value>] [--status <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db calendar-event update --id <value> [--entityId <value>] [--calendarAccountId <value>] [--remoteId <value>] [--title <value>] [--description <value>] [--startAt <value>] [--endAt <value>] [--allDay <value>] [--location <value>] [--recurrenceRule <value>] [--status <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--remoteIdTrgmSimilarity <value>] [--titleTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--locationTrgmSimilarity <value>] [--recurrenceRuleTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db calendar-event delete --id <value>Examples
List all calendarEvent records
agentic-db calendar-event listCreate a calendarEvent
agentic-db calendar-event create --entityId <value> --title <value> --startAt <value> --embeddingTextBm25Score <value> --remoteIdTrgmSimilarity <value> --titleTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --locationTrgmSimilarity <value> --recurrenceRuleTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--calendarAccountId <value>] [--remoteId <value>] [--description <value>] [--endAt <value>] [--allDay <value>] [--location <value>] [--recurrenceRule <value>] [--status <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a calendarEvent by id
agentic-db calendar-event get --id <value>chatMessage
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ChatMessage records via agentic-db CLI
Usage
agentic-db chat-message list
agentic-db chat-message get --id <value>
agentic-db chat-message create --entityId <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --roleTrgmSimilarity <value> --contentTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--chatId <value>] [--threadId <value>] [--role <value>] [--content <value>] [--toolCalls <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db chat-message update --id <value> [--entityId <value>] [--chatId <value>] [--threadId <value>] [--role <value>] [--content <value>] [--toolCalls <value>] [--embeddingText <value>] [--embedding <value>] [--contentBm25Score <value>] [--embeddingTextBm25Score <value>] [--roleTrgmSimilarity <value>] [--contentTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db chat-message delete --id <value>Examples
List all chatMessage records
agentic-db chat-message listCreate a chatMessage
agentic-db chat-message create --entityId <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --roleTrgmSimilarity <value> --contentTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--chatId <value>] [--threadId <value>] [--role <value>] [--content <value>] [--toolCalls <value>] [--embeddingText <value>] [--embedding <value>]Get a chatMessage by id
agentic-db chat-message get --id <value>chat
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Chat records via agentic-db CLI
Usage
agentic-db chat list
agentic-db chat get --id <value>
agentic-db chat create --entityId <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--startedAt <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db chat update --id <value> [--entityId <value>] [--title <value>] [--startedAt <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db chat delete --id <value>Examples
List all chat records
agentic-db chat listCreate a chat
agentic-db chat create --entityId <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--startedAt <value>] [--embeddingText <value>] [--embedding <value>]Get a chat by id
agentic-db chat get --id <value>chunk
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Chunk records via agentic-db CLI
Usage
agentic-db chunk list
agentic-db chunk get --id <value>
agentic-db chunk create --entityId <value> --content <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--fileId <value>] [--repositoryId <value>] [--startLine <value>] [--endLine <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db chunk update --id <value> [--entityId <value>] [--fileId <value>] [--repositoryId <value>] [--content <value>] [--startLine <value>] [--endLine <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--contentTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db chunk delete --id <value>Examples
List all chunk records
agentic-db chunk listCreate a chunk
agentic-db chunk create --entityId <value> --content <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--fileId <value>] [--repositoryId <value>] [--startLine <value>] [--endLine <value>] [--embeddingText <value>] [--embedding <value>]Get a chunk by id
agentic-db chunk get --id <value>companyEvent
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for CompanyEvent records via agentic-db CLI
Usage
agentic-db company-event list
agentic-db company-event get --id <value>
agentic-db company-event create --companyId <value> --eventId <value> --entityId <value>
agentic-db company-event update --id <value> [--companyId <value>] [--eventId <value>] [--entityId <value>]
agentic-db company-event delete --id <value>Examples
List all companyEvent records
agentic-db company-event listCreate a companyEvent
agentic-db company-event create --companyId <value> --eventId <value> --entityId <value>Get a companyEvent by id
agentic-db company-event get --id <value>companyImage
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for CompanyImage records via agentic-db CLI
Usage
agentic-db company-image list
agentic-db company-image get --id <value>
agentic-db company-image create --companyId <value> --imageId <value> --entityId <value>
agentic-db company-image update --id <value> [--companyId <value>] [--imageId <value>] [--entityId <value>]
agentic-db company-image delete --id <value>Examples
List all companyImage records
agentic-db company-image listCreate a companyImage
agentic-db company-image create --companyId <value> --imageId <value> --entityId <value>Get a companyImage by id
agentic-db company-image get --id <value>companyLink
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for CompanyLink records via agentic-db CLI
Usage
agentic-db company-link list
agentic-db company-link get --id <value>
agentic-db company-link create --entityId <value> --url <value> --companyId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]
agentic-db company-link update --id <value> [--entityId <value>] [--title <value>] [--url <value>] [--embedding <value>] [--companyId <value>] [--titleTrgmSimilarity <value>] [--urlTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db company-link delete --id <value>Examples
List all companyLink records
agentic-db company-link listCreate a companyLink
agentic-db company-link create --entityId <value> --url <value> --companyId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]Get a companyLink by id
agentic-db company-link get --id <value>company
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Company records via agentic-db CLI
Usage
agentic-db company list
agentic-db company get --id <value>
agentic-db company create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --domainTrgmSimilarity <value> --industryTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--domain <value>] [--industry <value>] [--description <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]
agentic-db company update --id <value> [--entityId <value>] [--name <value>] [--domain <value>] [--industry <value>] [--description <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>] [--searchTsvRank <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--domainTrgmSimilarity <value>] [--industryTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db company delete --id <value>Examples
List all company records
agentic-db company listCreate a company
agentic-db company create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --domainTrgmSimilarity <value> --industryTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--domain <value>] [--industry <value>] [--description <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]Get a company by id
agentic-db company get --id <value>Config Variables
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
Manage per-context key-value configuration variables for agentic-db
Usage
agentic-db config get <key>
agentic-db config set <key> <value>
agentic-db config list
agentic-db config delete <key>Examples
Store and retrieve a config variable
agentic-db config set orgId abc-123
agentic-db config get orgIdList all config variables
agentic-db config listcontactCompany
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ContactCompany records via agentic-db CLI
Usage
agentic-db contact-company list
agentic-db contact-company get --id <value>
agentic-db contact-company create --contactId <value> --companyId <value> --entityId <value>
agentic-db contact-company update --id <value> [--contactId <value>] [--companyId <value>] [--entityId <value>]
agentic-db contact-company delete --id <value>Examples
List all contactCompany records
agentic-db contact-company listCreate a contactCompany
agentic-db contact-company create --contactId <value> --companyId <value> --entityId <value>Get a contactCompany by id
agentic-db contact-company get --id <value>contactEvent
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ContactEvent records via agentic-db CLI
Usage
agentic-db contact-event list
agentic-db contact-event get --id <value>
agentic-db contact-event create --contactId <value> --eventId <value> --entityId <value>
agentic-db contact-event update --id <value> [--contactId <value>] [--eventId <value>] [--entityId <value>]
agentic-db contact-event delete --id <value>Examples
List all contactEvent records
agentic-db contact-event listCreate a contactEvent
agentic-db contact-event create --contactId <value> --eventId <value> --entityId <value>Get a contactEvent by id
agentic-db contact-event get --id <value>contactImage
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ContactImage records via agentic-db CLI
Usage
agentic-db contact-image list
agentic-db contact-image get --id <value>
agentic-db contact-image create --contactId <value> --imageId <value> --entityId <value>
agentic-db contact-image update --id <value> [--contactId <value>] [--imageId <value>] [--entityId <value>]
agentic-db contact-image delete --id <value>Examples
List all contactImage records
agentic-db contact-image listCreate a contactImage
agentic-db contact-image create --contactId <value> --imageId <value> --entityId <value>Get a contactImage by id
agentic-db contact-image get --id <value>contactLink
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ContactLink records via agentic-db CLI
Usage
agentic-db contact-link list
agentic-db contact-link get --id <value>
agentic-db contact-link create --entityId <value> --url <value> --contactId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]
agentic-db contact-link update --id <value> [--entityId <value>] [--title <value>] [--url <value>] [--embedding <value>] [--contactId <value>] [--titleTrgmSimilarity <value>] [--urlTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db contact-link delete --id <value>Examples
List all contactLink records
agentic-db contact-link listCreate a contactLink
agentic-db contact-link create --entityId <value> --url <value> --contactId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]Get a contactLink by id
agentic-db contact-link get --id <value>contact
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Contact records via agentic-db CLI
Usage
agentic-db contact list
agentic-db contact get --id <value>
agentic-db contact create --entityId <value> --firstName <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --firstNameTrgmSimilarity <value> --lastNameTrgmSimilarity <value> --emailTrgmSimilarity <value> --phoneTrgmSimilarity <value> --headlineTrgmSimilarity <value> --bioTrgmSimilarity <value> --locationTrgmSimilarity <value> --relationshipTypeTrgmSimilarity <value> --howWeMetTrgmSimilarity <value> --twitterHandleTrgmSimilarity <value> --linkedinUrlTrgmSimilarity <value> --githubUsernameTrgmSimilarity <value> --instagramHandleTrgmSimilarity <value> --websiteTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--lastName <value>] [--email <value>] [--phone <value>] [--headline <value>] [--bio <value>] [--location <value>] [--birthday <value>] [--relationshipType <value>] [--howWeMet <value>] [--twitterHandle <value>] [--linkedinUrl <value>] [--githubUsername <value>] [--instagramHandle <value>] [--website <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]
agentic-db contact update --id <value> [--entityId <value>] [--firstName <value>] [--lastName <value>] [--email <value>] [--phone <value>] [--headline <value>] [--bio <value>] [--location <value>] [--birthday <value>] [--relationshipType <value>] [--howWeMet <value>] [--twitterHandle <value>] [--linkedinUrl <value>] [--githubUsername <value>] [--instagramHandle <value>] [--website <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>] [--searchTsvRank <value>] [--embeddingTextBm25Score <value>] [--firstNameTrgmSimilarity <value>] [--lastNameTrgmSimilarity <value>] [--emailTrgmSimilarity <value>] [--phoneTrgmSimilarity <value>] [--headlineTrgmSimilarity <value>] [--bioTrgmSimilarity <value>] [--locationTrgmSimilarity <value>] [--relationshipTypeTrgmSimilarity <value>] [--howWeMetTrgmSimilarity <value>] [--twitterHandleTrgmSimilarity <value>] [--linkedinUrlTrgmSimilarity <value>] [--githubUsernameTrgmSimilarity <value>] [--instagramHandleTrgmSimilarity <value>] [--websiteTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db contact delete --id <value>Examples
List all contact records
agentic-db contact listCreate a contact
agentic-db contact create --entityId <value> --firstName <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --firstNameTrgmSimilarity <value> --lastNameTrgmSimilarity <value> --emailTrgmSimilarity <value> --phoneTrgmSimilarity <value> --headlineTrgmSimilarity <value> --bioTrgmSimilarity <value> --locationTrgmSimilarity <value> --relationshipTypeTrgmSimilarity <value> --howWeMetTrgmSimilarity <value> --twitterHandleTrgmSimilarity <value> --linkedinUrlTrgmSimilarity <value> --githubUsernameTrgmSimilarity <value> --instagramHandleTrgmSimilarity <value> --websiteTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--lastName <value>] [--email <value>] [--phone <value>] [--headline <value>] [--bio <value>] [--location <value>] [--birthday <value>] [--relationshipType <value>] [--howWeMet <value>] [--twitterHandle <value>] [--linkedinUrl <value>] [--githubUsername <value>] [--instagramHandle <value>] [--website <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]Get a contact by id
agentic-db contact get --id <value>contextRelation
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ContextRelation records via agentic-db CLI
Usage
agentic-db context-relation list
agentic-db context-relation get --id <value>
agentic-db context-relation create --entityId <value> --fromType <value> --fromId <value> --toType <value> --toId <value> --fromTypeTrgmSimilarity <value> --toTypeTrgmSimilarity <value> --relationKindTrgmSimilarity <value> --reasonTrgmSimilarity <value> --searchScore <value> [--relationKind <value>] [--reason <value>] [--strength <value>]
agentic-db context-relation update --id <value> [--entityId <value>] [--fromType <value>] [--fromId <value>] [--toType <value>] [--toId <value>] [--relationKind <value>] [--reason <value>] [--strength <value>] [--fromTypeTrgmSimilarity <value>] [--toTypeTrgmSimilarity <value>] [--relationKindTrgmSimilarity <value>] [--reasonTrgmSimilarity <value>] [--searchScore <value>]
agentic-db context-relation delete --id <value>Examples
List all contextRelation records
agentic-db context-relation listCreate a contextRelation
agentic-db context-relation create --entityId <value> --fromType <value> --fromId <value> --toType <value> --toId <value> --fromTypeTrgmSimilarity <value> --toTypeTrgmSimilarity <value> --relationKindTrgmSimilarity <value> --reasonTrgmSimilarity <value> --searchScore <value> [--relationKind <value>] [--reason <value>] [--strength <value>]Get a contextRelation by id
agentic-db context-relation get --id <value>Context Management
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
Manage API endpoint contexts for agentic-db
Usage
agentic-db context create <name> --endpoint <url>
agentic-db context list
agentic-db context use <name>
agentic-db context current
agentic-db context delete <name>Examples
Create and activate a context
agentic-db context create production --endpoint https://api.example.com/graphql
agentic-db context use productionList all contexts
agentic-db context listdealContact
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for DealContact records via agentic-db CLI
Usage
agentic-db deal-contact list
agentic-db deal-contact get --id <value>
agentic-db deal-contact create --dealId <value> --contactId <value> --entityId <value>
agentic-db deal-contact update --id <value> [--dealId <value>] [--contactId <value>] [--entityId <value>]
agentic-db deal-contact delete --id <value>Examples
List all dealContact records
agentic-db deal-contact listCreate a dealContact
agentic-db deal-contact create --dealId <value> --contactId <value> --entityId <value>Get a dealContact by id
agentic-db deal-contact get --id <value>deal
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Deal records via agentic-db CLI
Usage
agentic-db deal list
agentic-db deal get --id <value>
agentic-db deal create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --stageTrgmSimilarity <value> --currencyTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--stage <value>] [--value <value>] [--currency <value>] [--expectedCloseDate <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db deal update --id <value> [--entityId <value>] [--name <value>] [--stage <value>] [--value <value>] [--currency <value>] [--expectedCloseDate <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--stageTrgmSimilarity <value>] [--currencyTrgmSimilarity <value>] [--notesTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db deal delete --id <value>Examples
List all deal records
agentic-db deal listCreate a deal
agentic-db deal create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --stageTrgmSimilarity <value> --currencyTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--stage <value>] [--value <value>] [--currency <value>] [--expectedCloseDate <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a deal by id
agentic-db deal get --id <value>document
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Document records via agentic-db CLI
Usage
agentic-db document list
agentic-db document get --id <value>
agentic-db document create --entityId <value> --title <value> --searchTsvRank <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --contentTrgmSimilarity <value> --sourceTypeTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--url <value>] [--content <value>] [--sourceType <value>] [--isRead <value>] [--savedAt <value>] [--parentDocumentId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>]
agentic-db document update --id <value> [--entityId <value>] [--title <value>] [--url <value>] [--content <value>] [--sourceType <value>] [--isRead <value>] [--savedAt <value>] [--parentDocumentId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--searchTsvRank <value>] [--contentBm25Score <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--urlTrgmSimilarity <value>] [--contentTrgmSimilarity <value>] [--sourceTypeTrgmSimilarity <value>] [--abstractTrgmSimilarity <value>] [--overviewTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db document delete --id <value>Examples
List all document records
agentic-db document listCreate a document
agentic-db document create --entityId <value> --title <value> --searchTsvRank <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --contentTrgmSimilarity <value> --sourceTypeTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--url <value>] [--content <value>] [--sourceType <value>] [--isRead <value>] [--savedAt <value>] [--parentDocumentId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>]Get a document by id
agentic-db document get --id <value>emailAccount
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for EmailAccount records via agentic-db CLI
Usage
agentic-db email-account list
agentic-db email-account get --id <value>
agentic-db email-account create --entityId <value> --email <value> --emailTrgmSimilarity <value> --providerTrgmSimilarity <value> --searchScore <value> [--provider <value>] [--syncState <value>]
agentic-db email-account update --id <value> [--entityId <value>] [--email <value>] [--provider <value>] [--syncState <value>] [--emailTrgmSimilarity <value>] [--providerTrgmSimilarity <value>] [--searchScore <value>]
agentic-db email-account delete --id <value>Examples
List all emailAccount records
agentic-db email-account listCreate a emailAccount
agentic-db email-account create --entityId <value> --email <value> --emailTrgmSimilarity <value> --providerTrgmSimilarity <value> --searchScore <value> [--provider <value>] [--syncState <value>]Get a emailAccount by id
agentic-db email-account get --id <value>eventImage
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for EventImage records via agentic-db CLI
Usage
agentic-db event-image list
agentic-db event-image get --id <value>
agentic-db event-image create --eventId <value> --imageId <value> --entityId <value>
agentic-db event-image update --id <value> [--eventId <value>] [--imageId <value>] [--entityId <value>]
agentic-db event-image delete --id <value>Examples
List all eventImage records
agentic-db event-image listCreate a eventImage
agentic-db event-image create --eventId <value> --imageId <value> --entityId <value>Get a eventImage by id
agentic-db event-image get --id <value>eventLink
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for EventLink records via agentic-db CLI
Usage
agentic-db event-link list
agentic-db event-link get --id <value>
agentic-db event-link create --entityId <value> --url <value> --eventId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]
agentic-db event-link update --id <value> [--entityId <value>] [--title <value>] [--url <value>] [--embedding <value>] [--eventId <value>] [--titleTrgmSimilarity <value>] [--urlTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db event-link delete --id <value>Examples
List all eventLink records
agentic-db event-link listCreate a eventLink
agentic-db event-link create --entityId <value> --url <value> --eventId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]Get a eventLink by id
agentic-db event-link get --id <value>eventVenue
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for EventVenue records via agentic-db CLI
Usage
agentic-db event-venue list
agentic-db event-venue get --id <value>
agentic-db event-venue create --eventId <value> --venueId <value> --entityId <value>
agentic-db event-venue update --id <value> [--eventId <value>] [--venueId <value>] [--entityId <value>]
agentic-db event-venue delete --id <value>Examples
List all eventVenue records
agentic-db event-venue listCreate a eventVenue
agentic-db event-venue create --eventId <value> --venueId <value> --entityId <value>Get a eventVenue by id
agentic-db event-venue get --id <value>event
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Event records via agentic-db CLI
Usage
agentic-db event list
agentic-db event get --id <value>
agentic-db event create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --eventTypeTrgmSimilarity <value> --locationTrgmSimilarity <value> --cityTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--eventType <value>] [--location <value>] [--city <value>] [--startedAt <value>] [--endedAt <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]
agentic-db event update --id <value> [--entityId <value>] [--name <value>] [--eventType <value>] [--location <value>] [--city <value>] [--startedAt <value>] [--endedAt <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>] [--searchTsvRank <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--eventTypeTrgmSimilarity <value>] [--locationTrgmSimilarity <value>] [--cityTrgmSimilarity <value>] [--notesTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db event delete --id <value>Examples
List all event records
agentic-db event listCreate a event
agentic-db event create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --eventTypeTrgmSimilarity <value> --locationTrgmSimilarity <value> --cityTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--eventType <value>] [--location <value>] [--city <value>] [--startedAt <value>] [--endedAt <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]Get a event by id
agentic-db event get --id <value>executionLog
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ExecutionLog records via agentic-db CLI
Usage
agentic-db execution-log list
agentic-db execution-log get --id <value>
agentic-db execution-log create --entityId <value> --stepNameTrgmSimilarity <value> --inputTrgmSimilarity <value> --outputTrgmSimilarity <value> --searchScore <value> [--sessionId <value>] [--stepName <value>] [--input <value>] [--output <value>] [--toolCalls <value>] [--durationMs <value>]
agentic-db execution-log update --id <value> [--entityId <value>] [--sessionId <value>] [--stepName <value>] [--input <value>] [--output <value>] [--toolCalls <value>] [--durationMs <value>] [--stepNameTrgmSimilarity <value>] [--inputTrgmSimilarity <value>] [--outputTrgmSimilarity <value>] [--searchScore <value>]
agentic-db execution-log delete --id <value>Examples
List all executionLog records
agentic-db execution-log listCreate a executionLog
agentic-db execution-log create --entityId <value> --stepNameTrgmSimilarity <value> --inputTrgmSimilarity <value> --outputTrgmSimilarity <value> --searchScore <value> [--sessionId <value>] [--stepName <value>] [--input <value>] [--output <value>] [--toolCalls <value>] [--durationMs <value>]Get a executionLog by id
agentic-db execution-log get --id <value>expenseContact
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ExpenseContact records via agentic-db CLI
Usage
agentic-db expense-contact list
agentic-db expense-contact get --id <value>
agentic-db expense-contact create --expenseId <value> --contactId <value> --entityId <value>
agentic-db expense-contact update --id <value> [--expenseId <value>] [--contactId <value>] [--entityId <value>]
agentic-db expense-contact delete --id <value>Examples
List all expenseContact records
agentic-db expense-contact listCreate a expenseContact
agentic-db expense-contact create --expenseId <value> --contactId <value> --entityId <value>Get a expenseContact by id
agentic-db expense-contact get --id <value>expense
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Expense records via agentic-db CLI
Usage
agentic-db expense list
agentic-db expense get --id <value>
agentic-db expense create --entityId <value> --currencyTrgmSimilarity <value> --categoryTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --merchantTrgmSimilarity <value> --receiptUrlTrgmSimilarity <value> --searchScore <value> [--amount <value>] [--currency <value>] [--date <value>] [--category <value>] [--description <value>] [--merchant <value>] [--receiptUrl <value>] [--isRecurring <value>] [--tags <value>]
agentic-db expense update --id <value> [--entityId <value>] [--amount <value>] [--currency <value>] [--date <value>] [--category <value>] [--description <value>] [--merchant <value>] [--receiptUrl <value>] [--isRecurring <value>] [--tags <value>] [--currencyTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--merchantTrgmSimilarity <value>] [--receiptUrlTrgmSimilarity <value>] [--searchScore <value>]
agentic-db expense delete --id <value>Examples
List all expense records
agentic-db expense listCreate a expense
agentic-db expense create --entityId <value> --currencyTrgmSimilarity <value> --categoryTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --merchantTrgmSimilarity <value> --receiptUrlTrgmSimilarity <value> --searchScore <value> [--amount <value>] [--currency <value>] [--date <value>] [--category <value>] [--description <value>] [--merchant <value>] [--receiptUrl <value>] [--isRecurring <value>] [--tags <value>]Get a expense by id
agentic-db expense get --id <value>feedback
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Feedback records via agentic-db CLI
Usage
agentic-db feedback list
agentic-db feedback get --id <value>
agentic-db feedback create --entityId <value> --targetType <value> --targetId <value> --targetTypeTrgmSimilarity <value> --commentTrgmSimilarity <value> --sourceTrgmSimilarity <value> --searchScore <value> [--rating <value>] [--comment <value>] [--source <value>]
agentic-db feedback update --id <value> [--entityId <value>] [--targetType <value>] [--targetId <value>] [--rating <value>] [--comment <value>] [--source <value>] [--targetTypeTrgmSimilarity <value>] [--commentTrgmSimilarity <value>] [--sourceTrgmSimilarity <value>] [--searchScore <value>]
agentic-db feedback delete --id <value>Examples
List all feedback records
agentic-db feedback listCreate a feedback
agentic-db feedback create --entityId <value> --targetType <value> --targetId <value> --targetTypeTrgmSimilarity <value> --commentTrgmSimilarity <value> --sourceTrgmSimilarity <value> --searchScore <value> [--rating <value>] [--comment <value>] [--source <value>]Get a feedback by id
agentic-db feedback get --id <value>file
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for File records via agentic-db CLI
Usage
agentic-db file list
agentic-db file get --id <value>
agentic-db file create --entityId <value> --path <value> --pathTrgmSimilarity <value> --languageTrgmSimilarity <value> --hashTrgmSimilarity <value> --searchScore <value> [--repositoryId <value>] [--language <value>] [--hash <value>]
agentic-db file update --id <value> [--entityId <value>] [--repositoryId <value>] [--path <value>] [--language <value>] [--hash <value>] [--pathTrgmSimilarity <value>] [--languageTrgmSimilarity <value>] [--hashTrgmSimilarity <value>] [--searchScore <value>]
agentic-db file delete --id <value>Examples
List all file records
agentic-db file listCreate a file
agentic-db file create --entityId <value> --path <value> --pathTrgmSimilarity <value> --languageTrgmSimilarity <value> --hashTrgmSimilarity <value> --searchScore <value> [--repositoryId <value>] [--language <value>] [--hash <value>]Get a file by id
agentic-db file get --id <value>goalHabit
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for GoalHabit records via agentic-db CLI
Usage
agentic-db goal-habit list
agentic-db goal-habit get --id <value>
agentic-db goal-habit create --goalId <value> --habitId <value> --entityId <value>
agentic-db goal-habit update --id <value> [--goalId <value>] [--habitId <value>] [--entityId <value>]
agentic-db goal-habit delete --id <value>Examples
List all goalHabit records
agentic-db goal-habit listCreate a goalHabit
agentic-db goal-habit create --goalId <value> --habitId <value> --entityId <value>Get a goalHabit by id
agentic-db goal-habit get --id <value>goalProject
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for GoalProject records via agentic-db CLI
Usage
agentic-db goal-project list
agentic-db goal-project get --id <value>
agentic-db goal-project create --goalId <value> --projectId <value> --entityId <value>
agentic-db goal-project update --id <value> [--goalId <value>] [--projectId <value>] [--entityId <value>]
agentic-db goal-project delete --id <value>Examples
List all goalProject records
agentic-db goal-project listCreate a goalProject
agentic-db goal-project create --goalId <value> --projectId <value> --entityId <value>Get a goalProject by id
agentic-db goal-project get --id <value>goal
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Goal records via agentic-db CLI
Usage
agentic-db goal list
agentic-db goal get --id <value>
agentic-db goal create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --statusTrgmSimilarity <value> --categoryTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--targetDate <value>] [--status <value>] [--category <value>] [--progressPct <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db goal update --id <value> [--entityId <value>] [--title <value>] [--description <value>] [--targetDate <value>] [--status <value>] [--category <value>] [--progressPct <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db goal delete --id <value>Examples
List all goal records
agentic-db goal listCreate a goal
agentic-db goal create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --statusTrgmSimilarity <value> --categoryTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--targetDate <value>] [--status <value>] [--category <value>] [--progressPct <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a goal by id
agentic-db goal get --id <value>habitLog
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for HabitLog records via agentic-db CLI
Usage
agentic-db habit-log list
agentic-db habit-log get --id <value>
agentic-db habit-log create --entityId <value> --habitId <value> --completedAt <value> --activityTypeTrgmSimilarity <value> --distanceUnitTrgmSimilarity <value> --weightUnitTrgmSimilarity <value> --notesTrgmSimilarity <value> --searchScore <value> [--activityType <value>] [--durationMinutes <value>] [--distance <value>] [--distanceUnit <value>] [--reps <value>] [--sets <value>] [--weightAmount <value>] [--weightUnit <value>] [--calories <value>] [--data <value>] [--notes <value>] [--tags <value>]
agentic-db habit-log update --id <value> [--entityId <value>] [--habitId <value>] [--completedAt <value>] [--activityType <value>] [--durationMinutes <value>] [--distance <value>] [--distanceUnit <value>] [--reps <value>] [--sets <value>] [--weightAmount <value>] [--weightUnit <value>] [--calories <value>] [--data <value>] [--notes <value>] [--tags <value>] [--activityTypeTrgmSimilarity <value>] [--distanceUnitTrgmSimilarity <value>] [--weightUnitTrgmSimilarity <value>] [--notesTrgmSimilarity <value>] [--searchScore <value>]
agentic-db habit-log delete --id <value>Examples
List all habitLog records
agentic-db habit-log listCreate a habitLog
agentic-db habit-log create --entityId <value> --habitId <value> --completedAt <value> --activityTypeTrgmSimilarity <value> --distanceUnitTrgmSimilarity <value> --weightUnitTrgmSimilarity <value> --notesTrgmSimilarity <value> --searchScore <value> [--activityType <value>] [--durationMinutes <value>] [--distance <value>] [--distanceUnit <value>] [--reps <value>] [--sets <value>] [--weightAmount <value>] [--weightUnit <value>] [--calories <value>] [--data <value>] [--notes <value>] [--tags <value>]Get a habitLog by id
agentic-db habit-log get --id <value>habit
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Habit records via agentic-db CLI
Usage
agentic-db habit list
agentic-db habit get --id <value>
agentic-db habit create --entityId <value> --name <value> --nameTrgmSimilarity <value> --frequencyTrgmSimilarity <value> --categoryTrgmSimilarity <value> --searchScore <value> [--frequency <value>] [--targetCount <value>] [--currentStreak <value>] [--bestStreak <value>] [--category <value>] [--tags <value>]
agentic-db habit update --id <value> [--entityId <value>] [--name <value>] [--frequency <value>] [--targetCount <value>] [--currentStreak <value>] [--bestStreak <value>] [--category <value>] [--tags <value>] [--nameTrgmSimilarity <value>] [--frequencyTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--searchScore <value>]
agentic-db habit delete --id <value>Examples
List all habit records
agentic-db habit listCreate a habit
agentic-db habit create --entityId <value> --name <value> --nameTrgmSimilarity <value> --frequencyTrgmSimilarity <value> --categoryTrgmSimilarity <value> --searchScore <value> [--frequency <value>] [--targetCount <value>] [--currentStreak <value>] [--bestStreak <value>] [--category <value>] [--tags <value>]Get a habit by id
agentic-db habit get --id <value>idea
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Idea records via agentic-db CLI
Usage
agentic-db idea list
agentic-db idea get --id <value>
agentic-db idea create --entityId <value> --content <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --sourceTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--source <value>] [--status <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db idea update --id <value> [--entityId <value>] [--content <value>] [--source <value>] [--status <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--contentTrgmSimilarity <value>] [--sourceTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db idea delete --id <value>Examples
List all idea records
agentic-db idea listCreate a idea
agentic-db idea create --entityId <value> --content <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --sourceTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--source <value>] [--status <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a idea by id
agentic-db idea get --id <value>image
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Image records via agentic-db CLI
Usage
agentic-db image list
agentic-db image get --id <value>
agentic-db image create --entityId <value> --url <value> --urlTrgmSimilarity <value> --altTextTrgmSimilarity <value> --captionTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--meta <value>] [--altText <value>] [--caption <value>] [--embedding <value>]
agentic-db image update --id <value> [--entityId <value>] [--url <value>] [--meta <value>] [--altText <value>] [--caption <value>] [--embedding <value>] [--urlTrgmSimilarity <value>] [--altTextTrgmSimilarity <value>] [--captionTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db image delete --id <value>Examples
List all image records
agentic-db image listCreate a image
agentic-db image create --entityId <value> --url <value> --urlTrgmSimilarity <value> --altTextTrgmSimilarity <value> --captionTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--meta <value>] [--altText <value>] [--caption <value>] [--embedding <value>]Get a image by id
agentic-db image get --id <value>integration
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Integration records via agentic-db CLI
Usage
agentic-db integration list
agentic-db integration get --id <value>
agentic-db integration create --entityId <value> --name <value> --provider <value> --nameTrgmSimilarity <value> --providerTrgmSimilarity <value> --typeTrgmSimilarity <value> --credentialsRefTrgmSimilarity <value> --statusTrgmSimilarity <value> --searchScore <value> [--type <value>] [--credentialsRef <value>] [--config <value>] [--status <value>] [--lastSyncedAt <value>]
agentic-db integration update --id <value> [--entityId <value>] [--name <value>] [--provider <value>] [--type <value>] [--credentialsRef <value>] [--config <value>] [--status <value>] [--lastSyncedAt <value>] [--nameTrgmSimilarity <value>] [--providerTrgmSimilarity <value>] [--typeTrgmSimilarity <value>] [--credentialsRefTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--searchScore <value>]
agentic-db integration delete --id <value>Examples
List all integration records
agentic-db integration listCreate a integration
agentic-db integration create --entityId <value> --name <value> --provider <value> --nameTrgmSimilarity <value> --providerTrgmSimilarity <value> --typeTrgmSimilarity <value> --credentialsRefTrgmSimilarity <value> --statusTrgmSimilarity <value> --searchScore <value> [--type <value>] [--credentialsRef <value>] [--config <value>] [--status <value>] [--lastSyncedAt <value>]Get a integration by id
agentic-db integration get --id <value>interaction
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Interaction records via agentic-db CLI
Usage
agentic-db interaction list
agentic-db interaction get --id <value>
agentic-db interaction create --entityId <value> --contactId <value> --type <value> --occurredAt <value> --embeddingTextBm25Score <value> --typeTrgmSimilarity <value> --summaryTrgmSimilarity <value> --sentimentTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--summary <value>] [--sentiment <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db interaction update --id <value> [--entityId <value>] [--contactId <value>] [--type <value>] [--occurredAt <value>] [--summary <value>] [--sentiment <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--typeTrgmSimilarity <value>] [--summaryTrgmSimilarity <value>] [--sentimentTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db interaction delete --id <value>Examples
List all interaction records
agentic-db interaction listCreate a interaction
agentic-db interaction create --entityId <value> --contactId <value> --type <value> --occurredAt <value> --embeddingTextBm25Score <value> --typeTrgmSimilarity <value> --summaryTrgmSimilarity <value> --sentimentTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--summary <value>] [--sentiment <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a interaction by id
agentic-db interaction get --id <value>listItem
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ListItem records via agentic-db CLI
Usage
agentic-db list-item list
agentic-db list-item get --id <value>
agentic-db list-item create --entityId <value> --listId <value> --contentTrgmSimilarity <value> --refTypeTrgmSimilarity <value> --searchScore <value> [--content <value>] [--position <value>] [--isChecked <value>] [--refId <value>] [--refType <value>]
agentic-db list-item update --id <value> [--entityId <value>] [--listId <value>] [--content <value>] [--position <value>] [--isChecked <value>] [--refId <value>] [--refType <value>] [--contentTrgmSimilarity <value>] [--refTypeTrgmSimilarity <value>] [--searchScore <value>]
agentic-db list-item delete --id <value>Examples
List all listItem records
agentic-db list-item listCreate a listItem
agentic-db list-item create --entityId <value> --listId <value> --contentTrgmSimilarity <value> --refTypeTrgmSimilarity <value> --searchScore <value> [--content <value>] [--position <value>] [--isChecked <value>] [--refId <value>] [--refType <value>]Get a listItem by id
agentic-db list-item get --id <value>list
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for List records via agentic-db CLI
Usage
agentic-db list list
agentic-db list get --id <value>
agentic-db list create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --typeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--type <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db list update --id <value> [--entityId <value>] [--name <value>] [--description <value>] [--type <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--typeTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db list delete --id <value>Examples
List all list records
agentic-db list listCreate a list
agentic-db list create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --typeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--type <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a list by id
agentic-db list get --id <value>memory
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Memory records via agentic-db CLI
Usage
agentic-db memory list
agentic-db memory get --id <value>
agentic-db memory create --entityId <value> --content <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --memoryTypeTrgmSimilarity <value> --memoryCategoryTrgmSimilarity <value> --sourceTrgmSimilarity <value> --relatedEntityTypeTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--memoryType <value>] [--memoryCategory <value>] [--agentId <value>] [--importance <value>] [--verified <value>] [--source <value>] [--relatedEntityType <value>] [--relatedEntityId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db memory update --id <value> [--entityId <value>] [--content <value>] [--memoryType <value>] [--memoryCategory <value>] [--agentId <value>] [--importance <value>] [--verified <value>] [--source <value>] [--relatedEntityType <value>] [--relatedEntityId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--contentTrgmSimilarity <value>] [--memoryTypeTrgmSimilarity <value>] [--memoryCategoryTrgmSimilarity <value>] [--sourceTrgmSimilarity <value>] [--relatedEntityTypeTrgmSimilarity <value>] [--abstractTrgmSimilarity <value>] [--overviewTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db memory delete --id <value>Examples
List all memory records
agentic-db memory listCreate a memory
agentic-db memory create --entityId <value> --content <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --memoryTypeTrgmSimilarity <value> --memoryCategoryTrgmSimilarity <value> --sourceTrgmSimilarity <value> --relatedEntityTypeTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--memoryType <value>] [--memoryCategory <value>] [--agentId <value>] [--importance <value>] [--verified <value>] [--source <value>] [--relatedEntityType <value>] [--relatedEntityId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a memory by id
agentic-db memory get --id <value>message
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Message records via agentic-db CLI
Usage
agentic-db message list
agentic-db message get --id <value>
agentic-db message create --entityId <value> --bodyTextBm25Score <value> --embeddingTextBm25Score <value> --threadIdTrgmSimilarity <value> --remoteIdTrgmSimilarity <value> --fromAddressTrgmSimilarity <value> --subjectTrgmSimilarity <value> --bodyTextTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--emailAccountId <value>] [--threadId <value>] [--remoteId <value>] [--fromAddress <value>] [--toAddresses <value>] [--subject <value>] [--bodyText <value>] [--receivedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db message update --id <value> [--entityId <value>] [--emailAccountId <value>] [--threadId <value>] [--remoteId <value>] [--fromAddress <value>] [--toAddresses <value>] [--subject <value>] [--bodyText <value>] [--receivedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--bodyTextBm25Score <value>] [--embeddingTextBm25Score <value>] [--threadIdTrgmSimilarity <value>] [--remoteIdTrgmSimilarity <value>] [--fromAddressTrgmSimilarity <value>] [--subjectTrgmSimilarity <value>] [--bodyTextTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db message delete --id <value>Examples
List all message records
agentic-db message listCreate a message
agentic-db message create --entityId <value> --bodyTextBm25Score <value> --embeddingTextBm25Score <value> --threadIdTrgmSimilarity <value> --remoteIdTrgmSimilarity <value> --fromAddressTrgmSimilarity <value> --subjectTrgmSimilarity <value> --bodyTextTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--emailAccountId <value>] [--threadId <value>] [--remoteId <value>] [--fromAddress <value>] [--toAddresses <value>] [--subject <value>] [--bodyText <value>] [--receivedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a message by id
agentic-db message get --id <value>milestone
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Milestone records via agentic-db CLI
Usage
agentic-db milestone list
agentic-db milestone get --id <value>
agentic-db milestone create --entityId <value> --name <value> --nameTrgmSimilarity <value> --statusTrgmSimilarity <value> --searchScore <value> [--projectId <value>] [--dueDate <value>] [--status <value>]
agentic-db milestone update --id <value> [--entityId <value>] [--projectId <value>] [--name <value>] [--dueDate <value>] [--status <value>] [--nameTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--searchScore <value>]
agentic-db milestone delete --id <value>Examples
List all milestone records
agentic-db milestone listCreate a milestone
agentic-db milestone create --entityId <value> --name <value> --nameTrgmSimilarity <value> --statusTrgmSimilarity <value> --searchScore <value> [--projectId <value>] [--dueDate <value>] [--status <value>]Get a milestone by id
agentic-db milestone get --id <value>note
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Note records via agentic-db CLI
Usage
agentic-db note list
agentic-db note get --id <value>
agentic-db note create --entityId <value> --content <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --notableTypeTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--notableType <value>] [--notableId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db note update --id <value> [--entityId <value>] [--content <value>] [--notableType <value>] [--notableId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--contentBm25Score <value>] [--embeddingTextBm25Score <value>] [--contentTrgmSimilarity <value>] [--notableTypeTrgmSimilarity <value>] [--abstractTrgmSimilarity <value>] [--overviewTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db note delete --id <value>Examples
List all note records
agentic-db note listCreate a note
agentic-db note create --entityId <value> --content <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --contentTrgmSimilarity <value> --notableTypeTrgmSimilarity <value> --abstractTrgmSimilarity <value> --overviewTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--notableType <value>] [--notableId <value>] [--abstract <value>] [--overview <value>] [--activeCount <value>] [--lastAccessedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a note by id
agentic-db note get --id <value>notification
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Notification records via agentic-db CLI
Usage
agentic-db notification list
agentic-db notification get --id <value>
agentic-db notification create --entityId <value> --titleTrgmSimilarity <value> --bodyTrgmSimilarity <value> --typeTrgmSimilarity <value> --priorityTrgmSimilarity <value> --actionUrlTrgmSimilarity <value> --sourceEntityTypeTrgmSimilarity <value> --searchScore <value> [--title <value>] [--body <value>] [--type <value>] [--priority <value>] [--readAt <value>] [--actionUrl <value>] [--sourceEntityId <value>] [--sourceEntityType <value>]
agentic-db notification update --id <value> [--entityId <value>] [--title <value>] [--body <value>] [--type <value>] [--priority <value>] [--readAt <value>] [--actionUrl <value>] [--sourceEntityId <value>] [--sourceEntityType <value>] [--titleTrgmSimilarity <value>] [--bodyTrgmSimilarity <value>] [--typeTrgmSimilarity <value>] [--priorityTrgmSimilarity <value>] [--actionUrlTrgmSimilarity <value>] [--sourceEntityTypeTrgmSimilarity <value>] [--searchScore <value>]
agentic-db notification delete --id <value>Examples
List all notification records
agentic-db notification listCreate a notification
agentic-db notification create --entityId <value> --titleTrgmSimilarity <value> --bodyTrgmSimilarity <value> --typeTrgmSimilarity <value> --priorityTrgmSimilarity <value> --actionUrlTrgmSimilarity <value> --sourceEntityTypeTrgmSimilarity <value> --searchScore <value> [--title <value>] [--body <value>] [--type <value>] [--priority <value>] [--readAt <value>] [--actionUrl <value>] [--sourceEntityId <value>] [--sourceEntityType <value>]Get a notification by id
agentic-db notification get --id <value>process
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Process records via agentic-db CLI
Usage
agentic-db process list
agentic-db process get --id <value>
agentic-db process create --entityId <value> --commandTrgmSimilarity <value> --statusTrgmSimilarity <value> --logsPathTrgmSimilarity <value> --searchScore <value> [--pid <value>] [--agentId <value>] [--command <value>] [--startedAt <value>] [--endedAt <value>] [--status <value>] [--exitCode <value>] [--logsPath <value>]
agentic-db process update --id <value> [--entityId <value>] [--pid <value>] [--agentId <value>] [--command <value>] [--startedAt <value>] [--endedAt <value>] [--status <value>] [--exitCode <value>] [--logsPath <value>] [--commandTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--logsPathTrgmSimilarity <value>] [--searchScore <value>]
agentic-db process delete --id <value>Examples
List all process records
agentic-db process listCreate a process
agentic-db process create --entityId <value> --commandTrgmSimilarity <value> --statusTrgmSimilarity <value> --logsPathTrgmSimilarity <value> --searchScore <value> [--pid <value>] [--agentId <value>] [--command <value>] [--startedAt <value>] [--endedAt <value>] [--status <value>] [--exitCode <value>] [--logsPath <value>]Get a process by id
agentic-db process get --id <value>projectContact
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ProjectContact records via agentic-db CLI
Usage
agentic-db project-contact list
agentic-db project-contact get --id <value>
agentic-db project-contact create --projectId <value> --contactId <value> --entityId <value>
agentic-db project-contact update --id <value> [--projectId <value>] [--contactId <value>] [--entityId <value>]
agentic-db project-contact delete --id <value>Examples
List all projectContact records
agentic-db project-contact listCreate a projectContact
agentic-db project-contact create --projectId <value> --contactId <value> --entityId <value>Get a projectContact by id
agentic-db project-contact get --id <value>project
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Project records via agentic-db CLI
Usage
agentic-db project list
agentic-db project get --id <value>
agentic-db project create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--status <value>] [--startDate <value>] [--dueDate <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>]
agentic-db project update --id <value> [--entityId <value>] [--name <value>] [--description <value>] [--status <value>] [--startDate <value>] [--dueDate <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--searchTsvRank <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db project delete --id <value>Examples
List all project records
agentic-db project listCreate a project
agentic-db project create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--status <value>] [--startDate <value>] [--dueDate <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>]Get a project by id
agentic-db project get --id <value>prompt
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Prompt records via agentic-db CLI
Usage
agentic-db prompt list
agentic-db prompt get --id <value>
agentic-db prompt create --entityId <value> --name <value> --content <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --contentTrgmSimilarity <value> --typeTrgmSimilarity <value> --modelTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--type <value>] [--model <value>] [--version <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db prompt update --id <value> [--entityId <value>] [--name <value>] [--content <value>] [--type <value>] [--model <value>] [--version <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--contentBm25Score <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--contentTrgmSimilarity <value>] [--typeTrgmSimilarity <value>] [--modelTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db prompt delete --id <value>Examples
List all prompt records
agentic-db prompt listCreate a prompt
agentic-db prompt create --entityId <value> --name <value> --content <value> --contentBm25Score <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --contentTrgmSimilarity <value> --typeTrgmSimilarity <value> --modelTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--type <value>] [--model <value>] [--version <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a prompt by id
agentic-db prompt get --id <value>recipe
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Recipe records via agentic-db CLI
Usage
agentic-db recipe list
agentic-db recipe get --id <value>
agentic-db recipe create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --cuisineTrgmSimilarity <value> --difficultyTrgmSimilarity <value> --sourceUrlTrgmSimilarity <value> --imageUrlTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--cuisine <value>] [--prepTimeMinutes <value>] [--cookTimeMinutes <value>] [--servings <value>] [--difficulty <value>] [--ingredients <value>] [--instructions <value>] [--sourceUrl <value>] [--imageUrl <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db recipe update --id <value> [--entityId <value>] [--name <value>] [--description <value>] [--cuisine <value>] [--prepTimeMinutes <value>] [--cookTimeMinutes <value>] [--servings <value>] [--difficulty <value>] [--ingredients <value>] [--instructions <value>] [--sourceUrl <value>] [--imageUrl <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--cuisineTrgmSimilarity <value>] [--difficultyTrgmSimilarity <value>] [--sourceUrlTrgmSimilarity <value>] [--imageUrlTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db recipe delete --id <value>Examples
List all recipe records
agentic-db recipe listCreate a recipe
agentic-db recipe create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --cuisineTrgmSimilarity <value> --difficultyTrgmSimilarity <value> --sourceUrlTrgmSimilarity <value> --imageUrlTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--cuisine <value>] [--prepTimeMinutes <value>] [--cookTimeMinutes <value>] [--servings <value>] [--difficulty <value>] [--ingredients <value>] [--instructions <value>] [--sourceUrl <value>] [--imageUrl <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a recipe by id
agentic-db recipe get --id <value>reminder
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Reminder records via agentic-db CLI
Usage
agentic-db reminder list
agentic-db reminder get --id <value>
agentic-db reminder create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --recurrenceTrgmSimilarity <value> --statusTrgmSimilarity <value> --relatedEntityTypeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--dueAt <value>] [--completedAt <value>] [--recurrence <value>] [--status <value>] [--relatedEntityId <value>] [--relatedEntityType <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db reminder update --id <value> [--entityId <value>] [--title <value>] [--dueAt <value>] [--completedAt <value>] [--recurrence <value>] [--status <value>] [--relatedEntityId <value>] [--relatedEntityType <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--recurrenceTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--relatedEntityTypeTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db reminder delete --id <value>Examples
List all reminder records
agentic-db reminder listCreate a reminder
agentic-db reminder create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --recurrenceTrgmSimilarity <value> --statusTrgmSimilarity <value> --relatedEntityTypeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--dueAt <value>] [--completedAt <value>] [--recurrence <value>] [--status <value>] [--relatedEntityId <value>] [--relatedEntityType <value>] [--embeddingText <value>] [--embedding <value>]Get a reminder by id
agentic-db reminder get --id <value>repository
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Repository records via agentic-db CLI
Usage
agentic-db repository list
agentic-db repository get --id <value>
agentic-db repository create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --urlTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --defaultBranchTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--url <value>] [--description <value>] [--defaultBranch <value>] [--lastSyncedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db repository update --id <value> [--entityId <value>] [--name <value>] [--url <value>] [--description <value>] [--defaultBranch <value>] [--lastSyncedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--urlTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--defaultBranchTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db repository delete --id <value>Examples
List all repository records
agentic-db repository listCreate a repository
agentic-db repository create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --urlTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --defaultBranchTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--url <value>] [--description <value>] [--defaultBranch <value>] [--lastSyncedAt <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a repository by id
agentic-db repository get --id <value>rule
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Rule records via agentic-db CLI
Usage
agentic-db rule list
agentic-db rule get --id <value>
agentic-db rule create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --contentTrgmSimilarity <value> --kindTrgmSimilarity <value> --severityTrgmSimilarity <value> --slugTrgmSimilarity <value> --verificationTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --triggerConceptVectorDistance <value> --searchScore <value> [--content <value>] [--kind <value>] [--severity <value>] [--isActive <value>] [--slug <value>] [--verification <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--triggerConcept <value>]
agentic-db rule update --id <value> [--entityId <value>] [--title <value>] [--content <value>] [--kind <value>] [--severity <value>] [--isActive <value>] [--slug <value>] [--verification <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--triggerConcept <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--contentTrgmSimilarity <value>] [--kindTrgmSimilarity <value>] [--severityTrgmSimilarity <value>] [--slugTrgmSimilarity <value>] [--verificationTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--triggerConceptVectorDistance <value>] [--searchScore <value>]
agentic-db rule delete --id <value>Examples
List all rule records
agentic-db rule listCreate a rule
agentic-db rule create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --contentTrgmSimilarity <value> --kindTrgmSimilarity <value> --severityTrgmSimilarity <value> --slugTrgmSimilarity <value> --verificationTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --triggerConceptVectorDistance <value> --searchScore <value> [--content <value>] [--kind <value>] [--severity <value>] [--isActive <value>] [--slug <value>] [--verification <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--triggerConcept <value>]Get a rule by id
agentic-db rule get --id <value>scheduledJob
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for ScheduledJob records via agentic-db CLI
Usage
agentic-db scheduled-job list
agentic-db scheduled-job get --id <value>
agentic-db scheduled-job create --entityId <value> --name <value> --scheduleType <value> --command <value> --nameTrgmSimilarity <value> --scheduleTypeTrgmSimilarity <value> --scheduleExprTrgmSimilarity <value> --commandTrgmSimilarity <value> --messageTrgmSimilarity <value> --searchScore <value> [--scheduleExpr <value>] [--runAt <value>] [--message <value>] [--agentId <value>] [--sessionId <value>] [--isActive <value>] [--deleteAfterRun <value>] [--lastRunAt <value>] [--nextRunAt <value>] [--runCount <value>] [--lastResult <value>]
agentic-db scheduled-job update --id <value> [--entityId <value>] [--name <value>] [--scheduleType <value>] [--scheduleExpr <value>] [--runAt <value>] [--command <value>] [--message <value>] [--agentId <value>] [--sessionId <value>] [--isActive <value>] [--deleteAfterRun <value>] [--lastRunAt <value>] [--nextRunAt <value>] [--runCount <value>] [--lastResult <value>] [--nameTrgmSimilarity <value>] [--scheduleTypeTrgmSimilarity <value>] [--scheduleExprTrgmSimilarity <value>] [--commandTrgmSimilarity <value>] [--messageTrgmSimilarity <value>] [--searchScore <value>]
agentic-db scheduled-job delete --id <value>Examples
List all scheduledJob records
agentic-db scheduled-job listCreate a scheduledJob
agentic-db scheduled-job create --entityId <value> --name <value> --scheduleType <value> --command <value> --nameTrgmSimilarity <value> --scheduleTypeTrgmSimilarity <value> --scheduleExprTrgmSimilarity <value> --commandTrgmSimilarity <value> --messageTrgmSimilarity <value> --searchScore <value> [--scheduleExpr <value>] [--runAt <value>] [--message <value>] [--agentId <value>] [--sessionId <value>] [--isActive <value>] [--deleteAfterRun <value>] [--lastRunAt <value>] [--nextRunAt <value>] [--runCount <value>] [--lastResult <value>]Get a scheduledJob by id
agentic-db scheduled-job get --id <value>sessionArchive
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for SessionArchive records via agentic-db CLI
Usage
agentic-db session-archive list
agentic-db session-archive get --id <value>
agentic-db session-archive create --entityId <value> --sessionId <value> --archiveIndex <value> --summary <value> --embeddingTextBm25Score <value> --summaryTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--messageRangeStart <value>] [--messageRangeEnd <value>] [--rawMessages <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db session-archive update --id <value> [--entityId <value>] [--sessionId <value>] [--archiveIndex <value>] [--summary <value>] [--messageRangeStart <value>] [--messageRangeEnd <value>] [--rawMessages <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--summaryTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db session-archive delete --id <value>Examples
List all sessionArchive records
agentic-db session-archive listCreate a sessionArchive
agentic-db session-archive create --entityId <value> --sessionId <value> --archiveIndex <value> --summary <value> --embeddingTextBm25Score <value> --summaryTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--messageRangeStart <value>] [--messageRangeEnd <value>] [--rawMessages <value>] [--embeddingText <value>] [--embedding <value>]Get a sessionArchive by id
agentic-db session-archive get --id <value>session
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Session records via agentic-db CLI
Usage
agentic-db session list
agentic-db session get --id <value>
agentic-db session create --entityId <value> --uagentTrgmSimilarity <value> --fingerprintModeTrgmSimilarity <value> --csrfSecretTrgmSimilarity <value> --searchScore <value> [--title <value>] [--agentId <value>] [--startedAt <value>] [--endedAt <value>] [--status <value>] [--contextSummary <value>] [--sessionSummary <value>] [--archivedMessages <value>] [--compressionCount <value>] [--archivedAt <value>] [--extractedMemoryIds <value>] [--contextsUsed <value>] [--skillsUsed <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db session update --id <value> [--entityId <value>] [--title <value>] [--agentId <value>] [--startedAt <value>] [--endedAt <value>] [--status <value>] [--contextSummary <value>] [--sessionSummary <value>] [--archivedMessages <value>] [--compressionCount <value>] [--archivedAt <value>] [--extractedMemoryIds <value>] [--contextsUsed <value>] [--skillsUsed <value>] [--embeddingText <value>] [--embedding <value>] [--uagentTrgmSimilarity <value>] [--fingerprintModeTrgmSimilarity <value>] [--csrfSecretTrgmSimilarity <value>] [--searchScore <value>]
agentic-db session delete --id <value>Examples
List all session records
agentic-db session listCreate a session
agentic-db session create --entityId <value> --uagentTrgmSimilarity <value> --fingerprintModeTrgmSimilarity <value> --csrfSecretTrgmSimilarity <value> --searchScore <value> [--title <value>] [--agentId <value>] [--startedAt <value>] [--endedAt <value>] [--status <value>] [--contextSummary <value>] [--sessionSummary <value>] [--archivedMessages <value>] [--compressionCount <value>] [--archivedAt <value>] [--extractedMemoryIds <value>] [--contextsUsed <value>] [--skillsUsed <value>] [--embeddingText <value>] [--embedding <value>]Get a session by id
agentic-db session get --id <value>skillExecution
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for SkillExecution records via agentic-db CLI
Usage
agentic-db skill-execution list
agentic-db skill-execution get --id <value>
agentic-db skill-execution create --entityId <value> --skillId <value> --statusTrgmSimilarity <value> --errorTrgmSimilarity <value> --searchScore <value> [--agentId <value>] [--sessionId <value>] [--status <value>] [--startedAt <value>] [--completedAt <value>] [--durationMs <value>] [--input <value>] [--output <value>] [--error <value>]
agentic-db skill-execution update --id <value> [--entityId <value>] [--skillId <value>] [--agentId <value>] [--sessionId <value>] [--status <value>] [--startedAt <value>] [--completedAt <value>] [--durationMs <value>] [--input <value>] [--output <value>] [--error <value>] [--statusTrgmSimilarity <value>] [--errorTrgmSimilarity <value>] [--searchScore <value>]
agentic-db skill-execution delete --id <value>Examples
List all skillExecution records
agentic-db skill-execution listCreate a skillExecution
agentic-db skill-execution create --entityId <value> --skillId <value> --statusTrgmSimilarity <value> --errorTrgmSimilarity <value> --searchScore <value> [--agentId <value>] [--sessionId <value>] [--status <value>] [--startedAt <value>] [--completedAt <value>] [--durationMs <value>] [--input <value>] [--output <value>] [--error <value>]Get a skillExecution by id
agentic-db skill-execution get --id <value>tag
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Tag records via agentic-db CLI
Usage
agentic-db tag list
agentic-db tag get --id <value>
agentic-db tag create --entityId <value> --name <value> --nameTrgmSimilarity <value> --colorTrgmSimilarity <value> --categoryTrgmSimilarity <value> --searchScore <value> [--color <value>] [--category <value>] [--usageCount <value>]
agentic-db tag update --id <value> [--entityId <value>] [--name <value>] [--color <value>] [--category <value>] [--usageCount <value>] [--nameTrgmSimilarity <value>] [--colorTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--searchScore <value>]
agentic-db tag delete --id <value>Examples
List all tag records
agentic-db tag listCreate a tag
agentic-db tag create --entityId <value> --name <value> --nameTrgmSimilarity <value> --colorTrgmSimilarity <value> --categoryTrgmSimilarity <value> --searchScore <value> [--color <value>] [--category <value>] [--usageCount <value>]Get a tag by id
agentic-db tag get --id <value>taskContact
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for TaskContact records via agentic-db CLI
Usage
agentic-db task-contact list
agentic-db task-contact get --id <value>
agentic-db task-contact create --taskId <value> --contactId <value> --entityId <value>
agentic-db task-contact update --id <value> [--taskId <value>] [--contactId <value>] [--entityId <value>]
agentic-db task-contact delete --id <value>Examples
List all taskContact records
agentic-db task-contact listCreate a taskContact
agentic-db task-contact create --taskId <value> --contactId <value> --entityId <value>Get a taskContact by id
agentic-db task-contact get --id <value>task
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Task records via agentic-db CLI
Usage
agentic-db task list
agentic-db task get --id <value>
agentic-db task create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --statusTrgmSimilarity <value> --taskTypeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--status <value>] [--priority <value>] [--projectId <value>] [--taskType <value>] [--assignedAgentId <value>] [--parentTaskId <value>] [--dueDate <value>] [--completedAt <value>] [--conversationId <value>] [--dependencies <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db task update --id <value> [--entityId <value>] [--title <value>] [--description <value>] [--status <value>] [--priority <value>] [--projectId <value>] [--taskType <value>] [--assignedAgentId <value>] [--parentTaskId <value>] [--dueDate <value>] [--completedAt <value>] [--conversationId <value>] [--dependencies <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--taskTypeTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db task delete --id <value>Examples
List all task records
agentic-db task listCreate a task
agentic-db task create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --statusTrgmSimilarity <value> --taskTypeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--status <value>] [--priority <value>] [--projectId <value>] [--taskType <value>] [--assignedAgentId <value>] [--parentTaskId <value>] [--dueDate <value>] [--completedAt <value>] [--conversationId <value>] [--dependencies <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a task by id
agentic-db task get --id <value>template
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Template records via agentic-db CLI
Usage
agentic-db template list
agentic-db template get --id <value>
agentic-db template create --entityId <value> --name <value> --content <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --typeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--type <value>] [--variables <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db template update --id <value> [--entityId <value>] [--name <value>] [--description <value>] [--type <value>] [--content <value>] [--variables <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--typeTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db template delete --id <value>Examples
List all template records
agentic-db template listCreate a template
agentic-db template create --entityId <value> --name <value> --content <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --typeTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--type <value>] [--variables <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a template by id
agentic-db template get --id <value>thread
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Thread records via agentic-db CLI
Usage
agentic-db thread list
agentic-db thread get --id <value>
agentic-db thread create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --summaryTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--summary <value>] [--status <value>] [--parentThreadId <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db thread update --id <value> [--entityId <value>] [--title <value>] [--summary <value>] [--status <value>] [--parentThreadId <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--titleTrgmSimilarity <value>] [--summaryTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db thread delete --id <value>Examples
List all thread records
agentic-db thread listCreate a thread
agentic-db thread create --entityId <value> --title <value> --embeddingTextBm25Score <value> --titleTrgmSimilarity <value> --summaryTrgmSimilarity <value> --statusTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--summary <value>] [--status <value>] [--parentThreadId <value>] [--embeddingText <value>] [--embedding <value>]Get a thread by id
agentic-db thread get --id <value>tool
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Tool records via agentic-db CLI
Usage
agentic-db tool list
agentic-db tool get --id <value>
agentic-db tool create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --typeTrgmSimilarity <value> --endpointTrgmSimilarity <value> --authMethodTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--type <value>] [--inputSchema <value>] [--outputSchema <value>] [--endpoint <value>] [--authMethod <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db tool update --id <value> [--entityId <value>] [--name <value>] [--description <value>] [--type <value>] [--inputSchema <value>] [--outputSchema <value>] [--endpoint <value>] [--authMethod <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--typeTrgmSimilarity <value>] [--endpointTrgmSimilarity <value>] [--authMethodTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db tool delete --id <value>Examples
List all tool records
agentic-db tool listCreate a tool
agentic-db tool create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --typeTrgmSimilarity <value> --endpointTrgmSimilarity <value> --authMethodTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--description <value>] [--type <value>] [--inputSchema <value>] [--outputSchema <value>] [--endpoint <value>] [--authMethod <value>] [--isActive <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a tool by id
agentic-db tool get --id <value>trip
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Trip records via agentic-db CLI
Usage
agentic-db trip list
agentic-db trip get --id <value>
agentic-db trip create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --destinationTrgmSimilarity <value> --statusTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--destination <value>] [--startDate <value>] [--endDate <value>] [--status <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]
agentic-db trip update --id <value> [--entityId <value>] [--name <value>] [--destination <value>] [--startDate <value>] [--endDate <value>] [--status <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--destinationTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--notesTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db trip delete --id <value>Examples
List all trip records
agentic-db trip listCreate a trip
agentic-db trip create --entityId <value> --name <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --destinationTrgmSimilarity <value> --statusTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--destination <value>] [--startDate <value>] [--endDate <value>] [--status <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>]Get a trip by id
agentic-db trip get --id <value>userSetting
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for UserSetting records via agentic-db CLI
Usage
agentic-db user-setting list
agentic-db user-setting get --id <value>
agentic-db user-setting create --entityId <value> --key <value> --keyTrgmSimilarity <value> --categoryTrgmSimilarity <value> --searchScore <value> [--value <value>] [--category <value>]
agentic-db user-setting update --id <value> [--entityId <value>] [--key <value>] [--value <value>] [--category <value>] [--keyTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--searchScore <value>]
agentic-db user-setting delete --id <value>Examples
List all userSetting records
agentic-db user-setting listCreate a userSetting
agentic-db user-setting create --entityId <value> --key <value> --keyTrgmSimilarity <value> --categoryTrgmSimilarity <value> --searchScore <value> [--value <value>] [--category <value>]Get a userSetting by id
agentic-db user-setting get --id <value>venueImage
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for VenueImage records via agentic-db CLI
Usage
agentic-db venue-image list
agentic-db venue-image get --id <value>
agentic-db venue-image create --venueId <value> --imageId <value> --entityId <value>
agentic-db venue-image update --id <value> [--venueId <value>] [--imageId <value>] [--entityId <value>]
agentic-db venue-image delete --id <value>Examples
List all venueImage records
agentic-db venue-image listCreate a venueImage
agentic-db venue-image create --venueId <value> --imageId <value> --entityId <value>Get a venueImage by id
agentic-db venue-image get --id <value>venueLink
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for VenueLink records via agentic-db CLI
Usage
agentic-db venue-link list
agentic-db venue-link get --id <value>
agentic-db venue-link create --entityId <value> --url <value> --venueId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]
agentic-db venue-link update --id <value> [--entityId <value>] [--title <value>] [--url <value>] [--embedding <value>] [--venueId <value>] [--titleTrgmSimilarity <value>] [--urlTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db venue-link delete --id <value>Examples
List all venueLink records
agentic-db venue-link listCreate a venueLink
agentic-db venue-link create --entityId <value> --url <value> --venueId <value> --titleTrgmSimilarity <value> --urlTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--title <value>] [--embedding <value>]Get a venueLink by id
agentic-db venue-link get --id <value>venue
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Venue records via agentic-db CLI
Usage
agentic-db venue list
agentic-db venue get --id <value>
agentic-db venue create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --addressTrgmSimilarity <value> --neighborhoodTrgmSimilarity <value> --cityTrgmSimilarity <value> --categoryTrgmSimilarity <value> --statusTrgmSimilarity <value> --googlePlaceIdTrgmSimilarity <value> --priceLevelTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--address <value>] [--neighborhood <value>] [--city <value>] [--category <value>] [--status <value>] [--googlePlaceId <value>] [--rating <value>] [--priceLevel <value>] [--isFavorite <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]
agentic-db venue update --id <value> [--entityId <value>] [--name <value>] [--address <value>] [--neighborhood <value>] [--city <value>] [--category <value>] [--status <value>] [--googlePlaceId <value>] [--rating <value>] [--priceLevel <value>] [--isFavorite <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>] [--searchTsvRank <value>] [--embeddingTextBm25Score <value>] [--nameTrgmSimilarity <value>] [--addressTrgmSimilarity <value>] [--neighborhoodTrgmSimilarity <value>] [--cityTrgmSimilarity <value>] [--categoryTrgmSimilarity <value>] [--statusTrgmSimilarity <value>] [--googlePlaceIdTrgmSimilarity <value>] [--priceLevelTrgmSimilarity <value>] [--notesTrgmSimilarity <value>] [--embeddingTextTrgmSimilarity <value>] [--embeddingVectorDistance <value>] [--searchScore <value>]
agentic-db venue delete --id <value>Examples
List all venue records
agentic-db venue listCreate a venue
agentic-db venue create --entityId <value> --name <value> --searchTsvRank <value> --embeddingTextBm25Score <value> --nameTrgmSimilarity <value> --addressTrgmSimilarity <value> --neighborhoodTrgmSimilarity <value> --cityTrgmSimilarity <value> --categoryTrgmSimilarity <value> --statusTrgmSimilarity <value> --googlePlaceIdTrgmSimilarity <value> --priceLevelTrgmSimilarity <value> --notesTrgmSimilarity <value> --embeddingTextTrgmSimilarity <value> --embeddingVectorDistance <value> --searchScore <value> [--address <value>] [--neighborhood <value>] [--city <value>] [--category <value>] [--status <value>] [--googlePlaceId <value>] [--rating <value>] [--priceLevel <value>] [--isFavorite <value>] [--notes <value>] [--tags <value>] [--embeddingText <value>] [--embedding <value>] [--searchTsv <value>] [--mainImageId <value>]Get a venue by id
agentic-db venue get --id <value>webhook
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Webhook records via agentic-db CLI
Usage
agentic-db webhook list
agentic-db webhook get --id <value>
agentic-db webhook create --entityId <value> --url <value> --eventType <value> --urlTrgmSimilarity <value> --eventTypeTrgmSimilarity <value> --secretTrgmSimilarity <value> --searchScore <value> [--integrationId <value>] [--secret <value>] [--isActive <value>]
agentic-db webhook update --id <value> [--entityId <value>] [--integrationId <value>] [--url <value>] [--eventType <value>] [--secret <value>] [--isActive <value>] [--urlTrgmSimilarity <value>] [--eventTypeTrgmSimilarity <value>] [--secretTrgmSimilarity <value>] [--searchScore <value>]
agentic-db webhook delete --id <value>Examples
List all webhook records
agentic-db webhook listCreate a webhook
agentic-db webhook create --entityId <value> --url <value> --eventType <value> --urlTrgmSimilarity <value> --eventTypeTrgmSimilarity <value> --secretTrgmSimilarity <value> --searchScore <value> [--integrationId <value>] [--secret <value>] [--isActive <value>]Get a webhook by id
agentic-db webhook get --id <value>workflowRun
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for WorkflowRun records via agentic-db CLI
Usage
agentic-db workflow-run list
agentic-db workflow-run get --id <value>
agentic-db workflow-run create --entityId <value> --workflowId <value> --statusTrgmSimilarity <value> --errorTrgmSimilarity <value> --searchScore <value> [--status <value>] [--startedAt <value>] [--completedAt <value>] [--input <value>] [--output <value>] [--error <value>]
agentic-db workflow-run update --id <value> [--entityId <value>] [--workflowId <value>] [--status <value>] [--startedAt <value>] [--completedAt <value>] [--input <value>] [--output <value>] [--error <value>] [--statusTrgmSimilarity <value>] [--errorTrgmSimilarity <value>] [--searchScore <value>]
agentic-db workflow-run delete --id <value>Examples
List all workflowRun records
agentic-db workflow-run listCreate a workflowRun
agentic-db workflow-run create --entityId <value> --workflowId <value> --statusTrgmSimilarity <value> --errorTrgmSimilarity <value> --searchScore <value> [--status <value>] [--startedAt <value>] [--completedAt <value>] [--input <value>] [--output <value>] [--error <value>]Get a workflowRun by id
agentic-db workflow-run get --id <value>workflowStep
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for WorkflowStep records via agentic-db CLI
Usage
agentic-db workflow-step list
agentic-db workflow-step get --id <value>
agentic-db workflow-step create --entityId <value> --workflowId <value> --stepOrder <value> --actionType <value> --actionTypeTrgmSimilarity <value> --searchScore <value> [--actionConfig <value>] [--onSuccessStep <value>] [--onFailureStep <value>] [--timeoutMs <value>]
agentic-db workflow-step update --id <value> [--entityId <value>] [--workflowId <value>] [--stepOrder <value>] [--actionType <value>] [--actionConfig <value>] [--onSuccessStep <value>] [--onFailureStep <value>] [--timeoutMs <value>] [--actionTypeTrgmSimilarity <value>] [--searchScore <value>]
agentic-db workflow-step delete --id <value>Examples
List all workflowStep records
agentic-db workflow-step listCreate a workflowStep
agentic-db workflow-step create --entityId <value> --workflowId <value> --stepOrder <value> --actionType <value> --actionTypeTrgmSimilarity <value> --searchScore <value> [--actionConfig <value>] [--onSuccessStep <value>] [--onFailureStep <value>] [--timeoutMs <value>]Get a workflowStep by id
agentic-db workflow-step get --id <value>workflow
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
CRUD operations for Workflow records via agentic-db CLI
Usage
agentic-db workflow list
agentic-db workflow get --id <value>
agentic-db workflow create --entityId <value> --name <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --triggerTypeTrgmSimilarity <value> --searchScore <value> [--description <value>] [--triggerType <value>] [--triggerConfig <value>] [--isActive <value>] [--tags <value>]
agentic-db workflow update --id <value> [--entityId <value>] [--name <value>] [--description <value>] [--triggerType <value>] [--triggerConfig <value>] [--isActive <value>] [--tags <value>] [--nameTrgmSimilarity <value>] [--descriptionTrgmSimilarity <value>] [--triggerTypeTrgmSimilarity <value>] [--searchScore <value>]
agentic-db workflow delete --id <value>Examples
List all workflow records
agentic-db workflow listCreate a workflow
agentic-db workflow create --entityId <value> --name <value> --nameTrgmSimilarity <value> --descriptionTrgmSimilarity <value> --triggerTypeTrgmSimilarity <value> --searchScore <value> [--description <value>] [--triggerType <value>] [--triggerConfig <value>] [--isActive <value>] [--tags <value>]Get a workflow by id
agentic-db workflow get --id <value>