
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
linforge-adapter-prisma
Advanced tools
Prisma adapter for Linforge — production-ready Store implementations backed by Prisma ORM
Prisma adapter for Linforge — production-ready Store implementations backed by Prisma ORM.
npm install linforge-adapter-prisma
# peer dependencies
npm install linforge @prisma/client
Copy the models from prisma/schema.prisma into your project's Prisma schema, then run:
npx prisma db push # or prisma migrate dev
import { linforgeMiddleware } from 'linforge/server';
import { createPrismaStores } from 'linforge-adapter-prisma';
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient();
app.use(linforgeMiddleware({
stateSchema: MyState,
nodes: [planner, tools],
stores: createPrismaStores(prisma),
}));
// Only use GraphStore + RunStore, skip step recording and prompt management
const stores = createPrismaStores(prisma, {
stepPersister: false,
promptStore: false,
});
| Export | Description |
|---|---|
createPrismaStores(prisma, options?) | Factory — creates all 4 stores in one call |
PrismaGraphStore | GraphStore implementation |
PrismaRunStore | RunStore implementation |
PrismaStepPersister | StepPersister implementation |
PrismaPromptStore | PromptStore implementation |
PrismaClientLike | Minimal PrismaClient type interface |
The adapter uses JSON.stringify / JSON.parse for JSON fields, compatible with:
FAQs
Prisma adapter for Linforge — production-ready Store implementations backed by Prisma ORM
The npm package linforge-adapter-prisma receives a total of 2 weekly downloads. As such, linforge-adapter-prisma popularity was classified as not popular.
We found that linforge-adapter-prisma demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.