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

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
V
Visual Studio Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
I
InfoQ
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
B
Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
量子位
Hugging Face - Blog
Hugging Face - 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 应用商店
GitHub - Infinite-Labs-AI/infinite-os: Self-hosted, local...
RiverXR · 2026-06-17 · via Hacker News: Show HN

Your growth data, on your own machine — ask it anything in plain English.

Infinite OS is a self-hosted, local-first growth-analytics runtime. It connects your data sources — Google Analytics 4, PostHog, Stripe, Meta, Shopify, and read-only X public post metrics — into a Postgres database on your own machine, keeps it synced, and lets you ask questions like "how many page views in the last 7 days?" or "which channels drove the most traffic?" and get real answers from governed, source-accurate metrics.

🌐 Site: infinite.fast   ·   𝕏 Project: @InfiniteOS_   ·   Maker: @RiverKhan

It is not a broad agent runtime, skill platform, or generic SQL tool. For natural-language questions it forwards your prompt to your own Claude or Codex account using your own credentials; it executes no tools or shell commands. Your data never leaves your machine unless you send it somewhere.

How it works

Everything runs locally as one small stack:

  • Postgres — your synced growth data, sync state, jobs, schedules, and queryable views (a rebuildable cache; the source of truth stays with the providers).
  • app daemon — a local HTTP API the CLI talks to.
  • worker — owns the scheduler and runs syncs as background jobs.
  • CLI (infinite) — the operator shell + the chat interface.
  • encrypted connector credentials — provider keys/tokens are encrypted at rest with your GROWTH_OS_ENCRYPTION_KEY.

You connect a source once, sync it, then ask questions. Answers come from a typed metric layer with authority/provenance rules — not free-form SQL — so a number is either source-accurate or honestly reported as unavailable.

Example questions

Once a source is connected and synced, just ask — in plain English:

  • "How many page views did I get in the last 7 days?"
  • "What were my top pages this week?"
  • "Which channels drove the most traffic last month?"
  • "How many new users this week vs last week?"
  • "What's my engagement rate over the last 30 days?"
  • "How much revenue did I make in the last 30 days?" (Stripe)
  • "Compare this week's traffic to the previous week."

Infinite figures out the right metric, runs it against your synced data, and answers with the numbers + a short read — citing the source and flagging anything it can't verify (it won't guess).

Quickstart

Install with one command (macOS / Linux). It checks you have git, Node ≥ 20, and pnpm (it won't install or change them for you), puts Infinite at ~/.infinite/app, drops an infinite command on your PATH, and runs setup:

curl -fsSL https://raw.githubusercontent.com/Infinite-Labs-AI/infinite-os/main/scripts/install.sh | bash

Then:

infinite setup     # connect a data source + configure the model, and start the local stack
infinite           # ask a question
infinite "how many page views in the last 7 days"

From source

git clone https://github.com/Infinite-Labs-AI/infinite-os.git infinite
cd infinite
./infinite setup
./infinite

setup installs/builds the workspace if needed, configures model auth, and starts the bundled Docker stack.

Commands

Command What it does
infinite Start an interactive session (ask questions in natural language)
infinite "<question>" Ask one question and print the answer
infinite setup Connect a data source, configure the model, start the stack
infinite setup status Show what's ready and what's blocked
infinite connect <provider> Connect/reconnect a source (ga4, posthog, stripe, x, …)
infinite sources List connected sources
infinite sync [provider] [window] Sync data (windows: incremental, 30_days, 3_months, all_time, …)
infinite metrics / explain <metric> List metrics / explain a metric's authority & provenance
infinite version Print the version and commit
infinite start / stop / status / logs [service] Manage the local Docker stack
infinite update Pull the latest code on this branch and restart
infinite help Full command list

Connectors

Connectable: Google Analytics 4 · PostHog · Stripe · Meta · Shopify · X (read-only public post metrics). Deeper attribution and content analysis are on the roadmap.

Install the tracking tag on your site

GA4 and PostHog only start collecting data once their tracking tag is on your website. After infinite setup connects an analytics source, install the tag into your own site's repo with our published npm package, infinite-tag — it uses only your public keys, auto-detects your framework, and writes idempotent, fully reversible changes:

# run inside your website's code repo
npx infinite-tag@latest install

infinite setup prints a ready-to-paste npx infinite-tag install … command with your Measurement ID / PostHog key and workspace id already filled in (and saves your public keys to ~/.infinite/artifacts/, so a bare npx infinite-tag install discovers them automatically). See packages/instrument/README.md for all flags and the supported frameworks (Next.js, Vite + React, static HTML).

Configuration & data safety

infinite setup writes your config and secrets into a gitignored .growth-os/ directory; connector credentials are encrypted at rest. Your data stays on your machine — nothing is sent anywhere unless you do it. See SECURITY.md for the trust model and the full variable list.

Develop

pnpm install
pnpm typecheck
pnpm test

See docs/local-and-docker-quickstart.md for the Docker path, CONTRIBUTING.md to contribute, and SECURITY.md to report a vulnerability.

License

MIT © Ultima AI, Inc.