architecture

Tag

Cards List
#architecture

@wquguru: https://x.com/wquguru/status/2069641926752780384

X AI KOLs Timeline · yesterday Cached

This article comprehensively reviews the complete architectural layering of AI Agent Memory as of mid-2026, including rule files, persistent profiles, historical recall, and evidence chains. It explains the storage methods, loading timings, and governance principles of different memory layers, emphasizing the key role of memory in helping agents achieve cross-session compounding work.

0 favorites 0 likes
#architecture

@arcane_bloom: The Shift from Software Engineering to Agent Engineering: A 5-Part Breakdown 1/6 Most developers fail when building AI …

X AI KOLs Timeline · yesterday Cached

A thread explaining the 5 core mental shifts needed to transition from traditional software engineering to agent engineering, emphasizing why conventional patterns like hard-coded routes and binary tests fail with AI agents.

0 favorites 0 likes
#architecture

Most AI agents fail because people build them like chatbots

Reddit r/AI_Agents · yesterday

Many AI agent implementations fail because they treat agents like chatbots, relying on chat history for state rather than using deterministic data structures. The article advocates for separating reasoning (LLM), actions (tools), workflow progress (state machine), and external triggers (webhooks) to build reliable business agents.

0 favorites 0 likes
#architecture

Attention Is All You Need

Reddit r/ArtificialInteligence · 2d ago

A reflection on the landmark 'Attention Is All You Need' paper, highlighting how removing recurrence and relying solely on attention mechanisms revolutionized AI and led to modern LLMs like GPT and Claude.

0 favorites 0 likes
#architecture

Recently hired by an award winning SaaS. Documenting the agent runtime businesses actually need

Reddit r/AI_Agents · 3d ago

A developer documents the architecture of an AI agent runtime built for a SaaS company, focusing on safety, tool execution, state management, and separation of reasoning from execution.

0 favorites 0 likes
#architecture

Tapered Language Models

Hugging Face Daily Papers · 3d ago Cached

This paper introduces Tapered Language Models (TLMs), an architecture principle that allocates more parameters to earlier layers and fewer to later layers, consistently improving perplexity and downstream performance across multiple architectures without extra cost.

0 favorites 0 likes
#architecture

@addyosmani: https://x.com/addyosmani/status/2068394292796871019

X AI KOLs Following · 4d ago Cached

A detailed technical article explaining how modern web browsers work, focusing on Chromium's architecture including networking, parsing, rendering, and security features.

0 favorites 0 likes
#architecture

@pallavishekhar_: AI Coding Agent SWE - High-Level Architecture This shows the main pieces of an autonomous coding agent and how a GitHub…

X AI KOLs Timeline · 4d ago Cached

A detailed thread explaining the high-level architecture of the SWE AI coding agent, showing how a GitHub issue flows through ingestion, an orchestrator, model gateway, tools, code intelligence, sandbox environment, PR builder, guardrails, and observability to autonomously produce a pull request.

0 favorites 0 likes
#architecture

@xingyaow_: People have been asking why OpenHands V1 goes the opposite direction from Claude Managed Agents. I finally found the ti…

X AI KOLs Following · 6d ago Cached

Blog post by Xingyao Wang explaining why OpenHands V1 chose a different architecture from Claude Managed Agents, arguing that reliability comes from implementation details rather than topology.

0 favorites 0 likes
#architecture

Push vs Pull Memory: A Better Way to Think About AI Agent Memory

Reddit r/AI_Agents · 6d ago

An exploration of push vs pull memory models for AI agents, arguing that the pull method offers better scalability and efficiency for agent memory management.

0 favorites 0 likes
#architecture

@XAMTO_AI: Want to build a production-grade Agent Harness from scratch? Stop dreaming. If you think picking any random framework will do the job, you'll crash and burn. The truth is this is not something that a "framework choice" can handle. Behind it are 15 hardcore responsibilities you can't avoid: each must be a worker that is installable, versionable, and language-switchable...

X AI KOLs Timeline · 2026-06-18 Cached

The article argues that production agent harnesses should not be monolithic frameworks but rather a stack of independent, replaceable workers connected by a shared trigger primitive, outlining 15 core responsibilities and how the iii engine implements this approach.

0 favorites 0 likes
#architecture

Windows stack limit checking retrospective, follow-up

The Old New Thing (Raymond Chen) · 2026-06-17 Cached

Raymond Chen follows up on his previous article about stack limit checking on ARM64, addressing a detail about the unconventional use of the x15 register in stack probe functions and comparing register usage across multiple architectures.

0 favorites 0 likes
#architecture

Designing the Dream House of an 87-Year-Old Tech Visionary

Wired · 2026-06-16 Cached

WIRED profiles Stewart Brand, the 87-year-old tech visionary behind the Whole Earth Catalog, and the specially designed house he and his wife built to accommodate his aging and illness, embodying his ethos of self-sufficiency and maintenance.

0 favorites 0 likes
#architecture

What Do We Need From Our Homes Right Now?

Wired · 2026-06-16 Cached

Architectural Digest and WIRED collaborate on a special issue exploring how homes are changing due to climate, technology, and evolving needs, featuring insights on resilient design, smart home challenges, and aging in place.

0 favorites 0 likes
#architecture

@AYi_AInotes: https://x.com/AYi_AInotes/status/2066865618104586525

X AI KOLs Timeline · 2026-06-16 Cached

This is a panoramic analysis of OpenAI Codex, detailing its architecture (five entry points), three layers of extensibility (MCP, Skills, Plugins), a horizontal comparison with Claude Code, Cursor, and Devin, and seven best practices that can be directly adopted.

0 favorites 0 likes
#architecture

@XAMTO_AI: Guys, stop grinding those rote interview questions for system design! This guy created an open-source repo that's a cure for architecture anxiety — zero code needed, just hardcore architecture diagrams. Highlights: 25 real system templates covering e-commerce, feed, payments, and AI including RAG, AI Agent, AI Gateway. Even…

X AI KOLs Timeline · 2026-06-16 Cached

Introduces an open-source architecture knowledge base awesome-architecture, containing 25 real system templates (e-commerce, news feed, payments, AI directions such as RAG, Agent, etc.) and supporting tutorials, helping developers shift from coding to architectural thinking.

0 favorites 0 likes
#architecture

Variable-Width Transformers

Hugging Face Daily Papers · 2026-06-16 Cached

Proposes a nonuniform width allocation transformer (hourglass shape) that outperforms uniform baselines in language modeling, reducing FLOPs and KV cache size.

0 favorites 0 likes
#architecture

@svpino: Google keeps sharing a ton of free content! Here is one of their most complete examples: a long-running AI agent that p…

X AI KOLs Following · 2026-06-15 Cached

Google shares a free, comprehensive example of a long-running AI agent that pauses, resumes, and never loses context, simulating new employee onboarding, teaching three architectural patterns.

0 favorites 0 likes
#architecture

This paper completely changed how I think about agentic AI architecture

Reddit r/AI_Agents · 2026-06-15

The author reflects on the paper 'Self-Revising Discovery Systems for Science' which proposes a new agentic architecture using strongly-typed DAGs, schema migrations via Kan extensions, and an MDL gate to distinguish genuine discovery from simple retrieval or search.

0 favorites 0 likes
#architecture

After a year of building these for clients, I've basically settled on: an agent is just a folder of markdown files

Reddit r/AI_Agents · 2026-06-14

The author argues that an AI agent is best understood as a folder of markdown files containing business knowledge and instructions, separate from the model and harness, enabling portability between rapidly improving harnesses.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback