ワンクリックで
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: