AI Agents & Orchestration

Agentic AI Systems

Last updated 2026-08-01

What's new

2026-08-01
  • Hyper Agent (a no-code platform for creating AI agents) lets you build digital employees to solve business or personal problems, accessible via platforms like Slack or Telegram.
  • You can create reusable AI agents, like a brand guidelines generator, that can be accessed and used by your entire team.
  • Hyper Agent shows the AI's reasoning process, making it easy to understand and interact with.
  • The platform guides you through setting up persistent agents that can be called upon whenever needed.
2026-07-28
  • Google launched Gemini 3.6 Flash, a cheaper AI model (a computer program that mimics human intelligence) for routine tasks, reducing costs by 17% for repeated work.
  • This new model is part of a portfolio, including Gemini 3.5 Flash Light for high-volume, low-cost tasks, and Gemini 3.5 Flash Cyber, a restricted model for government and trusted partners.
  • The models are designed for specific jobs, like processing documents or running familiar tasks, with the more expensive models reserved for complex, open-ended work.
  • Despite the cost savings and efficiency improvements, some users were disappointed as they were expecting the release of Gemini 3.5 Pro, a more advanced model.
2026-07-25
  • You can now use a smart AI tool (Local AI) that runs completely free, offline, and privately on your own computer, with no data leaving your device.
  • Local AI uses "open weights" (free, downloadable AI models) that you can own and use without paying for access or worrying about data privacy.
  • The free AI models have improved significantly, with some like GLM 5.2 (a large, capable AI model) performing close to top paid models on many tasks.
  • Using Local AI gives you control and privacy, as you're not renting a service from a company that can change or restrict access, and your data stays on your machine.
2026-07-13
  • Claude Code (a tool for building AI-powered automations) lets you work with local files and online services like Gmail, Slack, or a CRM (customer relationship management system), making it more powerful than Claude Chat (a simple AI chatbot).
  • Claude Code uses the same AI models (like Opus, Sonnet, or Haiku) as Claude Chat, but adds extra features for working with files and online services.
  • Claude Code is like an AI harness (a tool that helps you use AI models), which sits between the AI model (the engine) and you (the driver), helping you build automations and agents (AI systems that can do tasks for you).
  • The instructor, Nate, uses Claude Code to build and manage multiple businesses, showing how one person can do the work of a team with AI.
2026-07-10
  • Hermes Agent (a powerful AI tool that can act like a full-time employee) works best with the Opus model (a specific AI model that's very reliable but expensive), but ChatGPT (a popular AI chat service) and GLM 5.2 (a cheaper AI model) are also options.
  • To avoid downtime, run at least two Hermes agents simultaneously, using different AI models or accounts, so they can monitor and fix each other if one fails.
  • You can create new Hermes agents (called "profiles") either by asking an existing agent to set one up for you or by using the Hermes dashboard.
  • If you're running a serious business, consider investing in the Opus model for Hermes Agent, as it's the most reliable for completing tasks.
2026-07-04
  • A new tool called Fable (an AI assistant) can turn YouTube videos into a connected "second brain" by linking ideas and tools mentioned in the videos, making it easier to understand how they relate.
  • Fable can create simple, beginner-friendly resources from complex data, like turning messy YouTube transcripts into an easy-to-navigate HTML page with clickable ideas and connections.
  • By feeding Fable data from meetings and other sources, it can generate insights like visual stories about business progress, pulling stats and even choosing relevant images to illustrate the journey.
  • The more data you give Fable, the smarter it becomes, helping with tasks like writing emails or scripting posts by understanding your business and personal context.

Key points

What it is

  • Agentic AI systems (goal-directed AI that plans and acts independently) are autonomous problem-solvers, unlike regular AI tools that only follow direct orders.
  • They perceive (gather data), plan, use tools, remember, and act to achieve goals, varying their approach as needed.
  • These systems are non-deterministic, meaning they can change their methods to reach the desired outcome.
  • They shift AI development focus from coding to designing tasks and managing agents.

How to use it

  • Start with clear instructions, explaining the desired outcome and involved tools.
  • Give the agent access to tools, preferably command-line interface (CLI) programs.
  • Teach the agent by showing it how to perform tasks.
  • Begin with simple automations, then gradually add skills and shared memory for complex systems.

Watch out for

  • Avoid building agents through custom code or complex workflows; use plugins instead.
  • Ensure consistency in prompts to build trust and avoid hallucinations.
  • Prevent context bloat by structuring information hierarchically.
  • Match the right intelligence level to each task and use sub-agents for parallel work.

Tools named

  • Claude Code (an AI tool for automating tasks), CLI tools (command-line interface programs)

Lesson 1: What is Agentic AI Systems and why it matters

Agentic AI Systems are a shift from simple AI tools to autonomous problem-solvers. A regular AI chat is like a cook following one order—it only does exactly what you tell it. An agentic system (goal-directed AI that plans and acts independently) is more like an operator managing the whole job. You give it an outcome, not a step-by-step flow, and it figures out the steps itself.

The system works through several components. First, it perceives (gathers data from applications). Then it uses planning, tools, memory, and goal-directed autonomy to act. For example, traditional automation is deterministic (same input, same output every time), like a vending machine. Agentic workflows are non-deterministic—like a slot machine, they can vary their approach to achieve the goal.

This matters for AI development because it changes what you build and how you build it. Half of companies using generative AI will deploy agentic systems within a few years. The key skill shifts from coding to designing what agents should do, where they should be proactive, and how they manage tasks. If you are good at managing people, you will become a good manager of agents—except agents work 24/7. Companies like Google are standardizing how agents talk to tools and each other. You still need to set up automations, but with agentic systems, you just say, "Here's the outcome I want," and the system handles the rest.

Sources

Lesson 2: How to use Agentic AI Systems: step-by-step

To use an agentic AI system (an AI that works autonomously toward a goal) with Claude, follow three steps. First, write clear instructions. You must explain exactly what outcome you want and what tools are involved. As one expert says, "If you can't explain clearly what you want, then how could you expect a human or an AI agent to actually build that?" Second, give the agent access to tools — Claude Code works best with CLI tools (command-line interface programs) rather than MCPs (Model Context Protocols). Third, teach your agent by showing it how you want tasks done.

A concrete example: instead of saying "automate my research," you would tell Claude Code, "Find the 10 YC companies working on AI agents from spring 2025 and list them." The agent then runs searches, reads results, and returns the list — you don't need to code each step. This is the core difference from old workflows: "With Agentic, you just say, 'Here's the outcome I want,' and it just does it."

Begin with automation fundamentals — learn how workflows function before building agents. Many beginners skip this and struggle. Start simple: set up a client, define one task, and let Claude Code execute it. From there, you can add multiple skills and shared memory to create more complex systems. The key is communicating your plan clearly, not knowing how to code.

Sources

Lesson 3: Best practices and pitfalls

Agentic AI Systems: Pitfalls, Mistakes, and Best Practices

A common mistake is building agents (AI systems that act autonomously) through custom code or complex workflows, which are difficult to put together. Instead, treat an agent as a skill you can build in about ten minutes using plugins. Another pitfall is inconsistency—the same prompt can give three different answers, creating zero trust. Context bloat also occurs when long sessions drift, causing the agent to forget instructions and hallucinate. To avoid this, build the information that the agent reads rather than building the agent itself. Create a clear information hierarchy (structured knowledge layers) so any AI you point at it can do the task.

Best practices include matching the right intelligence to the right task. Running multiple agents in parallel saves money because you use simpler models for simpler jobs. For Claude specifically, give your agent three things: clear instructions, access to tools, and a way to teach it. Use planning mode before starting complex tasks. Also, leverage sub-agents (smaller specialized agents) for parallel work instead of one agent doing everything sequentially. When you need to step away, ensure you have delegation confidence—know what the agent will do in your absence. Finally, combine your skills, commands, and rules into a composable system so they work together instead of living separately. The goal is to become dangerous with one coding tool, finding the highest-leverage actions you can take.

Sources