@shao__meng: Three LLM Interaction Paradigms: 1. Web Chatbot 2. Standalone AI App 3. Organization-embedded AI (Claude Tag, Glean Agents) Claude Tag's Core Shift · From 'One AI per Person' to 'One AI per Channel': Team-shared…
Summary
This article introduces the evolution of three LLM interaction paradigms: from web chatbots to standalone AI apps, and then to organization-embedded AI (such as Claude Tag and Glean Agents). It focuses on Claude Tag's shift from 'one AI per person' to 'one AI per channel', as well as the four pillars of Glean's production-grade independent agents.
View Cached Full Text
Cached at: 07/03/26, 12:36 PM
Three LLM Interaction Paradigms:
- Web Chatbot
- Standalone AI Application
- Organization-Embedded AI (Claude Tag, Glean Agents)
Core Changes with Claude Tag · From “one AI per person” to “one AI per channel”: the team shares the same agent instance, with continuous context and handoff capability · From “passive response” to “continuous engagement”: it remembers discussions, follows up on dormant threads, and remains present in the channel long-term
Why Channel-Level Is Not Enough Organizational knowledge is scattered across Jira, Confluence, GitHub, and Slack history. Reading only one channel means the Agent misses most of the context. The real challenge is building a cross-system organizational context layer with permissions and real-time updates.
The Four Pillars of Production-Grade Standalone Agents (Glean)
- Identity The Agent has its own identity, permissions, and tool access. Different functions can configure different Agents, and all operations are auditable.
- Memory Learns from enterprise runbooks and SOPs, and corrects and reinforces knowledge from each interaction, accumulating institutional knowledge.
- Proactivity Does not wait for prompts — actively monitors, flags, follows up, and executes.
- Accountability Every tool call and decision is visible, explainable, and includes a “kill switch” capability for immediate shutdown.
Practical Example: OnCall Assistant After an alert triggers, the Agent simultaneously reads PagerDuty, Jira, Confluence, GitHub, and Slack, parallel-investigates multiple root causes, drafts fixes, and assigns owners. By the time the engineer opens their computer, the investigation is already complete.
Similar Articles
This article systematically reviews AI Agent architecture and engineering practices, covering control flow, context engineering, tool design, memory, multi-agent organization, evaluation, tracing, and security. It is based on the OpenClaw implementation and emphasizes the critical role of Harness (testing and validation infrastructure) for system stability.
This article systematically reviews AI Agent architecture and engineering practices, covering control flow, context engineering, tool design, memory, multi-agent organization, evaluation, tracing, and security. It is based on the OpenClaw implementation and emphasizes the critical role of Harness (testing and validation infrastructure) for system stability.
@FeitengLi: Built a ReAct agent system by hand: Doing agent systems with LLMs. While walking this evening, I was thinking about how to train an LLM's agentic capabilities, data preparation, model training, constructing RL training with agent trajectory actions, and also about Claude's progress over the past year…
The author shares their experience building a ReAct agent system and introduces the GLM-5 technical report released by Zhipu AI, which achieves breakthroughs in agentic, reasoning, and coding capabilities.
@0xMorlex: Andrej Karpathy explained the 5 shifts that turned LLMs from chatbots into agentic systems: 00:00 - Memory turns chat i…
Andrej Karpathy outlines five key shifts—memory, multimodality, reasoning, search, and tools—that transform LLMs from simple chatbots into full agentic systems, providing a 40-minute roadmap for next-generation AI workflows.
@Yeuoly1: I'm actually curious about what everyone defines as 'an Agent' or 'Agent colleague.' It sounds pretty appealing, but LLMs are fundamentally stateless. What exactly is this entity called 'Agent colleague'? Is it an Agent-Loop with a bunch of m…
Discusses the definition of AI Agent and 'Agent colleague,' pointing out that LLMs are inherently stateless and questioning the concrete form of the Agent entity.
@cellinlab: https://x.com/cellinlab/status/2064144608242679822
This article introduces the concept of Loop Engineering — instead of directly writing prompts for AI agents, it designs a system (loop) that recursively lets the agent iterate on tasks until completion. The article provides a detailed comparison of how Claude Code and Codex implement five building blocks: automations, worktrees, skills, sub-agents, etc. It suggests this could be the future trend of collaborating with coding agents, but also warns about token costs and AI slop issues.