원클릭으로
orm-default
ORM client for the default API — provides typed CRUD operations for 95 tables and 3 custom operations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
ORM client for the default API — provides typed CRUD operations for 95 tables and 3 custom operations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
CLI tool (agentic-db) for the default API — provides CRUD commands for 95 tables and 3 custom operations
ORM client for the default API — typed CRUD, vector + hybrid search, and relation walking for the 91 generated tables.
CLI tool (agentic-db) for the default API — typed CRUD, unified search, and context/config commands for the 91 generated tables.
Install and deploy the agentic-db PostgreSQL module using pgpm. Use when asked to 'install agentic-db', 'deploy the database', 'set up agentic-db', 'create a workspace', or when bootstrapping a new project that depends on agentic-db.
| name | orm-default |
| description | ORM client for the default API — provides typed CRUD operations for 95 tables and 3 custom operations |
ORM client for the default API — provides typed CRUD operations for 95 tables and 3 custom operations
// Import the ORM client
import { db } from './orm';
// Available models: activityLog, agent, agentCollaborator, agentLog, agentPrompt, prompt, autonomyRecord, autonomyRecordLink, ...
db.<model>.findMany({ select: { id: true } }).execute()
db.<model>.findOne({ id: '<UUID>', select: { id: true } }).execute()
db.<model>.create({ data: { ... }, select: { id: true } }).execute()
db.<model>.update({ where: { id: '<UUID>' }, data: { ... }, select: { id: true } }).execute()
db.<model>.delete({ where: { id: '<UUID>' } }).execute()
const items = await db.activityLog.findMany({
select: { id: true }
}).execute();
See the references/ directory for detailed per-entity API documentation: