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

推荐订阅源

U
Unit 42
罗磊的独立博客
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
A
About on SuperTechFans
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
IT之家
IT之家
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
T
Tailwind CSS Blog
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - alias8818/enoch-agentic-research-system: Agentic...
aliasocracy · 2026-05-03 · via Hacker News - Newest: "AI"

Enoch — Agentic Research Control Plane

Enoch is an agentic research control plane: it queues ideas, gates dispatch, supervises local AI runs, preserves evidence, and packages AI-generated research artifacts with provenance instead of pretending autonomous work is just a script.

The problem

Long-running autonomous AI work fails in ways ordinary scripts do not:

  • child processes continue after an agent session appears idle;
  • GPU workers can still be active when queue state says no work is running;
  • queues become stale or disagree across sources;
  • evidence scatters across machines and run folders;
  • generated reports overstate results when claim boundaries aren't preserved.

Enoch treats those as control-plane problems, not model problems. It uses process tracking, CPU/GPU quiet-window telemetry, idempotent APIs, stale-state reconciliation, a live dashboard, evidence bundles, and claim ledgers to make autonomous work observable and auditable.

Agentic AI systems need control planes. A model can propose and execute work, but a separate system should decide what is queued, what is safe to dispatch, whether work is actually done, and what evidence supports the final artifact.

How it works

LLM research scout
  -> structured idea cards
  -> Notion scoring / weight matrix
  -> queue candidate
  -> VM control plane
  -> worker preflight and dispatch safety checks
  -> GB10 worker wake gate
  -> agent run with process + telemetry supervision
  -> evidence sync
  -> AI-generated research artifact
  -> corpus quality gates

The repository contains the execution/control-plane layer and supporting docs. Historical notes describe earlier migration experiments, but this is not a workflow-export repository and does not ship workflow-tool configurations.

Main components

  • Control plane API — queue state, project state, paper review state, pause/maintenance controls, and dispatch decisions; built with FastAPI and LangGraph-era graph boundaries.
  • Wake gate — proves a run is actually done, not just agent-session-closed: process-tree tracking and CPU/GPU quiet-window telemetry sustained over a configurable window.
  • Worker preflight — authenticated health checks against the worker before dispatching new work, so dispatch fails early rather than silently.
  • Single-lane safety — prevents overlapping GPU-heavy work on constrained local hardware; the control plane holds the lock, not the dispatch script.
  • Evidence sync — copies run notes, metrics, result summaries, evidence bundles, and claim ledgers from worker projects into the control plane before artifact generation begins.
  • Artifact writer — generates publication-style Markdown reports from evidence context while preserving uncertainty and provenance; does not free-float against raw model output.
  • Quality gates — scans generated reports for placeholder citations, missing provenance, and missing evidence artifacts before they enter the corpus.

Generated research artifacts

The reports produced by Enoch runs are AI-generated research artifacts, not human-authored or peer-reviewed papers. They are built from run notes, evidence bundles, claim ledgers, and reproducibility traces.

The maintainer releases the corpus for inspection and critique but does not claim personal authorship of the generated papers, arguments, or prose.

See docs/release/authorship-and-provenance.md for the full framing and recommended citation language.

Runtime and upstream tooling

Enoch is the project-specific control plane and release package. It runs agent work through Codex/OMX automation, including oh-my-codex orchestration for local agent execution. OMX is part of the operating substrate; generated research artifacts are produced by Enoch runs and the artifact writer, not by OMX as an owning publisher.

Idea intake

Ideas are sourced from an upstream LLM-assisted scouting process that reviews technical signals such as AI news, public research papers, systems discussions, and local hardware/runtime opportunities. Candidate ideas are framed as structured experiment cards, scored in a Notion weight matrix, and handed to Enoch as queue candidates.

Notion is best understood as an intake and prioritization surface. Runtime authority begins in the Enoch control plane.

See docs/idea-intake-workflow.md.

Getting started

For a local developer smoke test, start with docs/quickstart.md.

For a full deployment (control VM, worker machine, systemd service, dashboard/API smoke tests, optional Pushover alerts, dispatch checks, and paper-writer settings), see docs/deployment-guide.md.

For individual config fields, start from config.example.json and see docs/configuration-reference.md. Required values:

  • inbound API bearer token
  • completion callback URL/token
  • project root and dispatch script path
  • worker URL/token
  • optional notification and paper-writer provider settings

Never commit live config files or credentials.

Development

uv run pytest -q

Documentation

Using Enoch:

Release context:

Security

Before publishing or deploying changes, run secret scans and tests. See SECURITY.md.

License

Apache License 2.0. See LICENSE.