
Security News
GitHub Actions Adds cache-mode to Limit Cache Poisoning Risk
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.
@aibind/postgres
Advanced tools
PostgreSQL-backed StreamStore and ConversationStore for @aibind — works with pg, postgres.js, Neon, Supabase, and more
PostgreSQL-backed StreamStore and ConversationStore for @aibind. Works with pg (node-postgres), postgres.js, Neon, Supabase, Vercel Postgres, and any compatible client.
npm install @aibind/postgres
// pg (node-postgres) — implements PostgresClient directly
import { Pool } from "pg";
import { PostgresStreamStore, PostgresConversationStore } from "@aibind/postgres";
const pool = new Pool({ connectionString: process.env.DATABASE_URL });
const streamStore = new PostgresStreamStore(pool);
const conversationStore = new PostgresConversationStore(pool);
// Neon serverless
import { neon } from "@neondatabase/serverless";
import { wrapNeon, PostgresStreamStore } from "@aibind/postgres";
const store = new PostgresStreamStore(wrapNeon(neon(process.env.DATABASE_URL!)));
You must create these tables yourself — the store does not run migrations automatically.
CREATE TABLE aibind_stream_chunks (
id TEXT NOT NULL,
seq INTEGER NOT NULL,
data TEXT NOT NULL,
PRIMARY KEY (id, seq)
);
CREATE TABLE aibind_stream_status (
id TEXT PRIMARY KEY,
state TEXT NOT NULL DEFAULT 'active',
error TEXT,
total_chunks INTEGER NOT NULL DEFAULT 0,
expires_at BIGINT NOT NULL
);
CREATE TABLE aibind_conversations (
session_id TEXT PRIMARY KEY,
data TEXT NOT NULL,
expires_at BIGINT NOT NULL
);
Custom table names are supported via options — see the full docs.
FAQs
PostgreSQL-backed StreamStore and ConversationStore for @aibind — works with pg, postgres.js, Neon, Supabase, and more
The npm package @aibind/postgres receives a total of 1 weekly downloads. As such, @aibind/postgres popularity was classified as not popular.
We found that @aibind/postgres 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.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.