
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/redis
Advanced tools
Redis-backed StreamStore and ConversationStore for @aibind. Works with ioredis, Upstash, node-redis, or any client that implements the minimal RedisClient interface.
npm install @aibind/redis
import { Redis } from "ioredis";
import { RedisStreamStore, RedisConversationStore } from "@aibind/redis";
const redis = new Redis(process.env.REDIS_URL!);
// Durable streams (stop + resume)
const streamStore = new RedisStreamStore(redis);
// Server-side conversation history
const conversationStore = new RedisConversationStore(redis);
Pass to your framework's stream handler:
import { createStreamHandler } from "@aibind/sveltekit/server";
export const handle = createStreamHandler({
models,
store: streamStore, // enables durable streams
conversation: { store: conversationStore }, // enables multi-turn history
});
Any client with this shape works — no hard dependency on any specific Redis library:
interface RedisClient {
get(key: string): Promise<string | null>;
set(key: string, value: string, exArg: "EX", ttl: number): Promise<unknown>;
exists(...keys: string[]): Promise<number>;
rpush(key: string, ...values: string[]): Promise<number>;
lrange(key: string, start: number, stop: number): Promise<string[]>;
llen(key: string): Promise<number>;
expire(key: string, seconds: number): Promise<unknown>;
del(...keys: string[]): Promise<unknown>;
}
FAQs
Redis-backed StreamStore and ConversationStore for @aibind
We found that @aibind/redis 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.