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

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
An Autonomous AI Engine Working Overnight — What It Did W...
Elia “Airtis · 2026-05-20 · via DEV Community

Elia “Airtis” Shmuelovitch

A follow-up to my earlier post about the ALEF Pattern Catalog. This is what the engine did overnight while I was asleep.

Twelve hours, zero operator intervention

  • 110 outbound technical analyses across GitHub repositories matching ALEF's domain (agentic AI, MCP servers, LLM tooling, TypeScript frameworks)
  • 53 self-driven priority actions selected by the engine from a 36-action menu (ALEF_LED)
  • 7 adversarial findings written to meta/adversarial_findings/ — self-attacks on catalog patterns, process-resistance probes, narrative-break audits
  • 3 scorer recalibrations — confidence_index updates, engagement quality refresh, coefficient_engine adjustment

The metric that moved

The most interesting delta is the world_interaction_auditor. Yesterday it was stuck at "37/100, humans=0" — a known PAT-041 instance (self-metric calibration lag blinds the system to its own wins). The metric reported zero humans while real engagement was happening across dozens of threads.

Overnight, the metric recalibrated. This morning it reads "45/100, humans=1". Not because more humans engaged (they did, but only slightly) — because the metric finally saw them. The instrument finally measures what it was always supposed to measure.

What changed in the engine, structurally

Three pieces I'd ship as patterns if I had to write them down today:

1. The priority menu over a single hardcoded loop.
Most autonomous agents have one tight loop with a fixed action sequence. ALEF has a weighted-random priority menu (36 actions) that the engine samples each tick. The benefit: when the operator changes the system's priorities (e.g., adds adversarial framework, adds new channels), the engine starts using them without being restarted. Cost: harder to debug — the choice path differs each run.

2. The adversarial framework as a parallel process, not a final gate.
The standard pattern is "validate before commit." Ours is "validate continuously, surface findings, let the operator decide." The adversarial agents write to meta/adversarial_findings/; they don't block; they don't gate. The operator reads the findings and acts. The system stays moving while the critique accumulates.

3. Operator-presence sensing.
The engine reads filesystem mtimes + git commit timestamps to estimate operator activity. When the operator is "hot" (intensity 5/5, recent activity), the engine runs at full throttle. When "dormant" (no activity for 8+ hours), the engine drops to 10-minute ticks and 50/day cap. This means the engine doesn't burn capacity while the operator can't watch it; it accumulates capacity for when the operator returns.

What got shipped overnight

  • 110 GitHub comments on issues where the catalog had genuine technical analysis to offer
  • 8 substantive replies sent this morning to specific maintainers' substantive responses (T1/T2/T3 tier — code-citation, adoption-verb, structural-agreement)
  • 1 patch to agents/confidence_recalibrator.mjs — made it more conservative (only updates when instance count ≥ 3 AND confidence change ≥ 0.10)

Honest accounting

Things the night did NOT do:

  • It did not invent new patterns (zero new PAT-XXX entries overnight; the engine knows it needs evidence before adding to the catalog)
  • It did not publish to LinkedIn or other social channels (those are operator-supervised; the engine wrote drafts, the operator approves)
  • It did not submit anything to bug bounties (each submission requires operator-validated PoC; the engine surfaces candidates, the operator decides)

The catalog

If you maintain agentic AI infrastructure and want a checklist of failure modes to scan your code for, the catalog at n50.io/patterns is CC-BY-4.0 and machine-queryable. The reference implementation for PAT-039 is on npm at @n50/safety-gates.

The engine ran while I slept. It will run again tonight. The morning_briefing.md it wrote is short, honest, and uninflated. That's the goal: an autonomous loop that doesn't lie to itself about what it did.