agent-engineering

Tag

Cards List
#agent-engineering

@LangChain: Happening today! An evening of technical talks, meeting builders, and end-of-summer vibes with @PrimeIntellect + @baset…

X AI KOLs Timeline · 2026-09-02 Cached

LangChain is hosting an evening event in San Francisco featuring technical talks on continual learning, speakers from Prime Intellect and Baseten, and networking opportunities for the AI agent engineering community.

0 favorites 0 likes
#agent-engineering

@LangChain: These days it feels like everything is “agentic”, but what does it actually mean to build an agent? In this free LangCh…

X AI KOLs Timeline · 2026-08-27 Cached

LangChain announces a free Academy course on building AI agents with Python, covering foundational concepts like react loops, MCP servers, and human-in-the-loop.

0 favorites 0 likes
#agent-engineering

@yibie: Cursor treats the development environment as a product built for agents: the anydev CLI shields agents from messy build scripts, Cloud Doctor uses MCP to self-heal environment failures — cloud agents now contribute more than half of merged PRs. 'How We Built the Cloud Age…'

X AI KOLs Timeline · 2026-08-12 Cached

Cursor's engineering blog describes how they built a development environment for cloud agents, introducing the anydev CLI and the Cloud Doctor self-healing mechanism, enabling agents to now contribute more than half of merged PRs.

0 favorites 0 likes
#agent-engineering

@hanakoxbt: your agent has thirty tools. it calls two of them. the other twenty eight are not sitting idle somewhere. they are in t…

X AI KOLs Following · 2026-08-08 Cached

Unused tools in an AI agent's toolset still consume tokens and add noise to tool selection, so agents should load only the tools required for the current task.

0 favorites 0 likes
#agent-engineering

@marfinxx: Chinese researchers achieved a major breakthrough in autonomous AI agent engineering essential for AI system architects…

X AI KOLs Timeline · 2026-08-02 Cached

Chinese researchers achieved a breakthrough in autonomous AI agent engineering with a code-as-harness paradigm that replaces text prompts with executable verification substrates, enabling deterministic multi-agent execution through six internal processes.

0 favorites 0 likes
#agent-engineering

@LangChain: New from LangChain Academy: Become a LangChain Certified Agent Engineer The first certification for the full Agent Deve…

X AI KOLs Following · 2026-07-30 Cached

LangChain Academy launches the first certification for the full Agent Development Lifecycle, offering a 50% discount for the first two months.

0 favorites 0 likes
#agent-engineering

Tool Rot Paradox: Why installing 50+ agent skills in development breaks down in production

Reddit r/AI_Agents · 2026-07-26

The article explains the 'Tool Rot Paradox' where installing many static agent skills causes context window degradation and security issues in production, and advocates for a dynamic discovery approach using a meta-skill that fetches tools on demand to keep the system prompt lean.

0 favorites 0 likes
#agent-engineering

The longer an agent runs, the less I care about the prompt

Reddit r/AI_Agents · 2026-07-24

The author reflects on how long-running AI agents encounter failures unrelated to the initial prompt, arguing that environment design (tools, docs, validation, architecture rules) matters more. They discuss concepts like harness engineering, keeping AGENTS.md small, using linters, and evaluator agents, while noting the cost trade-offs.

0 favorites 0 likes
#agent-engineering

The GitHub for Context Doesn’t Exist Yet

Reddit r/artificial · 2026-07-20 Cached

This article argues that building AI agents is easy, but providing them with sufficient business context remains the hard and unsolved infrastructure problem, proposing the need for a dedicated 'context layer' akin to GitHub for code.

0 favorites 0 likes
#agent-engineering

@yibie: Recommends this hardcore real-world test. An engineer tracked his coding agent session for a week and found that only 0.67% of tokens were spent on actual tasks—the remaining 99% all went to moving tool directories, skill descriptions, and system prompts. Work-to-overhead ratio 1:1…

X AI KOLs Timeline · 2026-07-15 Cached

An engineer tracked his coding agent's token usage over a week, finding that only 0.67% of tokens were spent on actual tasks, with 99% consumed by tool directories, skill descriptions, and system prompts. He provides optimization strategies, including shell output filtering which saved 46.9% of tokens.

0 favorites 0 likes
#agent-engineering

@chasen_liao: https://x.com/chasen_liao/status/2077219202608545835

X AI KOLs Timeline · 2026-07-15 Cached

This article explores the trend of upgrading prompt engineering to Agent engineering, emphasizing structured context management of AI agents through methods like AGENTS.md, and shares a minimal closed-loop workflow methodology.

0 favorites 0 likes
#agent-engineering

@yibie: Recommended: A multi-agent system design guide by LangChain CEO Harrison Chase. The core argument is extremely simple but rarely made clear: multi-agent systems can be divided into "reading" and "writing" — reading is easy to parallelize, writing is prone to conflicts. That's why Anthropic's res…

X AI KOLs Timeline · 2026-07-11 Cached

Recommending Harrison Chase's blog post on multi-agent system design. The key insight is that multi-agent systems split into 'reading' and 'writing' tasks; reading is easy to parallelize while writing leads to conflicts. It also summarizes suitable and unsuitable scenarios and engineering prerequisites.

0 favorites 0 likes
#agent-engineering

@MaxForAI: The proposer of Harness Engineering, former OpenAI engineer Ryan Lopopolo @_lopopolo announced he is joining Google Cloud as Chief Agent Engineer. Ryan Lopopolo is an OpenAI Agent…

X AI KOLs Timeline · 2026-07-09 Cached

Former OpenAI engineer Ryan Lopopolo joins Google Cloud as Chief Agent Engineer, bringing OpenAI's Agent engineering methodology to the cloud platform.

0 favorites 0 likes
#agent-engineering

@pauliusztin_: Microsoft just open-sourced one of the most interesting agent engineering projects I've seen this year... → https://git…

X AI KOLs Timeline · 2026-06-28 Cached

Microsoft open-sourced SkillOpt, a framework that treats agent skill documents as trainable artifacts, optimizing them through iterative feedback loops without modifying model weights. It is available as a Python library with support for self-evolving agent skills.

0 favorites 0 likes
#agent-engineering

@zhanghaili0610: Just wrapped my talk at GIAC 2026 Shenzhen on Agent Engineering with @LangChain . The real work isn't prompt engineerin…

X AI KOLs Following · 2026-06-26 Cached

作者分享了在GIAC 2026深圳会议上关于Agent Engineering的演讲,强调构建可靠、有状态的代理的重要性。

0 favorites 0 likes
#agent-engineering

@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 · 2026-06-23 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
#agent-engineering

Most attempts to reverse-engineer Fable 5 are missing the point

Reddit r/artificial · 2026-06-16

The article criticizes attempts to reverse-engineer Fable 5 by copying surface behaviors, instead introducing Hephaestus Stormbreaker—a robustness control layer for coding agents that enforces scope locking, evidence loops, regression tests, and gate checks to prevent agent drift and early quitting.

0 favorites 0 likes
#agent-engineering

The boring bits of agent engineering

Reddit r/AI_Agents · 2026-06-08

The author discusses the unglamorous but critical aspects of engineering reliable AI agents in production, including monitoring mid-flight runs, resuming failed runs, and providing UI status, and asks the community about common pain points and off-the-shelf solutions.

0 favorites 0 likes
#agent-engineering

PandaProbe Cloud

Product Hunt · 2026-06-08

PandaProbe Cloud offers a fully managed agent engineering service, as announced on Product Hunt.

0 favorites 0 likes
#agent-engineering

@vintcessun: Tonight I came across a learning roadmap project that redefined where to start learning Agent. I used to think Agent was just a pile of tools and frameworks, but its core is the "observe-think-execute" loop and the harness engineering's organization of permissions, state, and backtracking. It breaks down learning into building a minimal Agent loop from scratch all the way to deploying a real Agent, with 8 stages, each with clear deliverables and recommended resources — not just links but an actionable todo list. This systematic approach made me realize my previous learning was too fragmented.

X AI KOLs Timeline · 2026-06-04 Cached

An open-source learning roadmap project called Agent-Learning-Hub, which breaks down AI Agent learning into 8 stages from building a minimal Agent loop to production deployment, providing executable todo lists and recommended resources, maintained by members of the Datawhale community.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback