惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
B
Blog RSS Feed
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
D
Docker
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
H
Help Net Security
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
博客园 - Franky
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
ingestlayer — the intelligence layer for your event pipeline
benmann · 2026-06-23 · via Hacker News: Show HN
ingestlayer

Track events from anywhere, send them through elaborate data processing pipelines, and route each one to the destinations you need.

Overview00

What this is.

One process sits between everything that produces signals at your company and everything that consumes them. It accepts the event, runs whatever transformation you need on it, and fans the result out. From AI prompts, over translations to data enrichments. Pick the actions you need applied to the event on the fly and where it should go afterwards.

sdk.event

webhook.in

agent

github

[ PIPELINE ]

slack

telegram

warehouse.pg

webhook.out

sourcestransformationsdestinations

fig. 1 — the spine. Three stages per signal. The middle is a stack you compose.

Pipeline01

Three stages. Any stack.

Every signal walks the same three stages. The middle one is a stack of typed actions you compose per event family. Page views skip the stack and go straight to route. Signups get the whole kitchen.

01
ingest
Accept the signal as it arrives. Durable, typed, idempotent.

02
transform
An ordered stack of typed actions. Pick from fourteen today: enrichment that adds fields, mutation that rewrites them, control that may drop the event.

03
route
Branch on the typed result. Fan out. Retry. Dead-letter. Replay.

transform · action catalog14 / growing

enrichment

· adds new fieldsENR

enrich.entity
lookup against your identity graph

enrich.person
email → person profile

enrich.company
domain → company facts

classify
LLM labels with a typed schema

summarize
short summary of long text

translate
into a target language

ai.transform
free-form prompt over event data

http.request
call any API → merge into $http

mutation

· rewrites in placeMUT

upsert.entity
write event fields into the identity graph

redact.pii
per-destination PII matrix

transform
escape hatch · custom template

control

· may drop the eventCTL

dedupe
drop if seen recently

throttle
rate-limit per key

filter
drop unless predicate matches

Order matters. Dedupe before classify saves model calls. Redact before route enforces PII at the wire.

Sources03

Where signals come from.

Anywhere signals come from. SDK, webhook, AI agent, and GitHub are live today. Python SDK and Stripe land next.

  • sdk.eventTypeScript SDK[ready]
  • webhook.inHTTP webhook[ready]
  • agentAI agent[ready]
  • githubGitHub events[ready]
  • emailInbound email[ready]
  • sdk.pyPython SDK[soon]
  • stripeStripe events[soon]

Destinations04

Where they need to land.

Anywhere they need to land. One signal, many destinations, shaped differently for each consumer.

  • slackSlack[ready]
  • telegramTelegram[ready]
  • webhook.outHTTP webhook[ready]
  • email.outEmail[ready]
  • warehouse.pgPostgres[ready]
  • discordDiscord[ready]
  • notion.dbNotion[ready]
  • warehouse.bqBigQuery[soon]
  • linear.issueLinear issue[ready]
  • s3S3 / object[soon]

Example05

Tracking a new team invite

Events arrive from the TypeScript SDK matching team.member.invited. The pipeline enriches with the user entity matched on $event.inviter_id, enriches with person data from $event.invitee_email, enriches with the account entity matched on $entity.user.account_id, classifies along pattern (4 labels) and priority (4 labels), and redacts PII (with per-destination overrides). Routed to Slack in #cs, email to cs-leads@ingestlayer.io, and Postgres (table events.team_invite).

01source

sourcesdk.eventTypeScript SDK

02pipeline · 5 steps

  • 01ENRenrich.entityuser by $event.inviter_id

  • 02ENRenrich.person$event.invitee_email · entity → internal

  • 03ENRenrich.entityaccount by $entity.user.account_id

  • 04ENRclassifypattern (4) · priority (4) · balanced

  • 05MUTredact.pii6 types · slack overrides email + phone

03destinations · 3

  • tocs-leads@ingestlayer.io

Quickstart06

Install, init, track.

$ pnpm add @ingestlayer/sdk
$ echo "INGESTLAYER_KEY=il_…" >> .env

# in your app code:
import { init, track } from "@ingestlayer/sdk";

init({ apiKey: process.env.INGESTLAYER_KEY! });
track({ type: "user.signup", payload: { email: user.email } });