بنقرة واحدة
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: