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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
ingestlayer — the intelligence layer for your event pipeline
benmann · 2026-06-23 · via 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 } });