<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Orchestrator on Micha Kops&#39; Tech Notes</title>
    <link>https://www.hascode.com/tags/orchestrator/</link>
    <description>Recent content in Orchestrator on Micha Kops&#39; Tech Notes</description>
    <generator>Hugo</generator>
    <language>en</language>
    <copyright>Copyright © 2010 - 2025 Micha Kops. #e9d956c0c0154a221ad83c925346a8fa0e72f866</copyright>
    <lastBuildDate>Thu, 02 Jul 2026 00:00:00 +0200</lastBuildDate>
    <atom:link href="https://www.hascode.com/tags/orchestrator/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Orchestrator Agent with Parallel Sub-Agents in Kiro CLI</title>
      <link>https://www.hascode.com/orchestrator-agent-with-parallel-sub-agents-in-kiro-cli/</link>
      <pubDate>Thu, 02 Jul 2026 00:00:00 +0200</pubDate>
      <guid>https://www.hascode.com/orchestrator-agent-with-parallel-sub-agents-in-kiro-cli/</guid>
      <description>&lt;div id=&#34;preamble&#34;&gt;
&lt;div class=&#34;sectionbody&#34;&gt;
&lt;div class=&#34;imageblock&#34;&gt;
&lt;div class=&#34;content&#34;&gt;
&lt;img src=&#34;kiro-cli-orchestration-cover.png&#34; alt=&#34;kiro cli orchestration cover&#34;/&gt;
&lt;/div&gt;
&lt;div class=&#34;title&#34;&gt;Figure 1. kiro orchestrator agents&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;sect1&#34;&gt;
&lt;h2 id=&#34;_overview&#34;&gt;Overview&lt;/h2&gt;
&lt;div class=&#34;sectionbody&#34;&gt;
&lt;div class=&#34;paragraph&#34;&gt;
&lt;p&gt;Kiro CLI allows us to configure an orchestrator agent that executes specialized sub-agents in parallel.
Each sub-agent has its own tools, permissions, and MCP servers – the parent’s trust settings are &lt;strong&gt;not&lt;/strong&gt; inherited.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;sect1&#34;&gt;
&lt;h2 id=&#34;_architecture&#34;&gt;Architecture&lt;/h2&gt;
&lt;div class=&#34;sectionbody&#34;&gt;
&lt;div class=&#34;imageblock&#34;&gt;
&lt;div class=&#34;content&#34;&gt;
&lt;img src=&#34;kiro-orchestrator-agents.svg&#34; alt=&#34;kiro orchestrator agents&#34;/&gt;
&lt;/div&gt;
&lt;div class=&#34;title&#34;&gt;Figure 2. Agents flow&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;sect1&#34;&gt;
&lt;h2 id=&#34;_step_1_define_specialized_agents&#34;&gt;Step 1: Define Specialized Agents&lt;/h2&gt;
&lt;div class=&#34;sectionbody&#34;&gt;
&lt;div class=&#34;paragraph&#34;&gt;
&lt;p&gt;We give each sub-agent its own JSON configuration under &lt;code&gt;.kiro/agents/&lt;/code&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&#34;listingblock&#34;&gt;
&lt;div class=&#34;title&#34;&gt;&lt;code&gt;.kiro/agents/code-agent.json&lt;/code&gt;&lt;/div&gt;
&lt;div class=&#34;content&#34;&gt;
&lt;pre class=&#34;highlight&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;{
  &amp;#34;name&amp;#34;: &amp;#34;code-agent&amp;#34;,
  &amp;#34;description&amp;#34;: &amp;#34;Implements features and writes code&amp;#34;,
  &amp;#34;prompt&amp;#34;: &amp;#34;You are an experienced Kotlin/Java developer. Write clean, tested code.&amp;#34;,
  &amp;#34;tools&amp;#34;: [&amp;#34;read&amp;#34;, &amp;#34;write&amp;#34;, &amp;#34;shell&amp;#34;, &amp;#34;code&amp;#34;, &amp;#34;grep&amp;#34;],
  &amp;#34;allowedTools&amp;#34;: [&amp;#34;read&amp;#34;, &amp;#34;code&amp;#34;, &amp;#34;grep&amp;#34;],
  &amp;#34;toolsSettings&amp;#34;: {
    &amp;#34;write&amp;#34;: {
      &amp;#34;allowedPaths&amp;#34;: [&amp;#34;./src/**&amp;#34;, &amp;#34;./tests/**&amp;#34;],
      &amp;#34;deniedPaths&amp;#34;: [&amp;#34;./.env&amp;#34;, &amp;#34;./secrets/**&amp;#34;]
    },
    &amp;#34;shell&amp;#34;: {
      &amp;#34;allowedCommands&amp;#34;: [&amp;#34;mvn test&amp;#34;, &amp;#34;mvn compile&amp;#34;],
      &amp;#34;autoAllowReadonly&amp;#34;: true
    }
  }
}&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>Kiro Snippets</title>
      <link>https://www.hascode.com/kiro-snippets/</link>
      <pubDate>Sat, 02 May 2026 00:00:00 +0200</pubDate>
      <guid>https://www.hascode.com/kiro-snippets/</guid>
      <description>&lt;div id=&#34;preamble&#34;&gt;
&lt;div class=&#34;sectionbody&#34;&gt;
&lt;div class=&#34;imageblock&#34;&gt;
&lt;div class=&#34;content&#34;&gt;
&lt;img src=&#34;kiro-snippets.png&#34; alt=&#34;Kiro Snippets&#34; width=&#34;50%&#34;/&gt;
&lt;/div&gt;
&lt;div class=&#34;title&#34;&gt;Figure 1. Kiro Snippets&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;sect1&#34;&gt;
&lt;h2 id=&#34;_integrate_into_intellij_using_acp&#34;&gt;Integrate into IntelliJ using ACP&lt;/h2&gt;
&lt;div class=&#34;sectionbody&#34;&gt;
&lt;div class=&#34;paragraph&#34;&gt;
&lt;div class=&#34;title&#34;&gt;Kiro in IntelliJ AI Chat using ACP&lt;/div&gt;
&lt;p&gt;&lt;span class=&#34;image&#34;&gt;&lt;img src=&#34;kiro-intellij-acp.png&#34; alt=&#34;Kiro in IntelliJ AI Chat over ACP&#34; width=&#34;50%&#34;/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&#34;paragraph&#34;&gt;
&lt;p&gt;We just need to add the following config as &lt;code&gt;~/.jetbrains/acp.json&lt;/code&gt;, restart &lt;em&gt;IntelliJ&lt;/em&gt; and we’re ready to go.&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&#34;listingblock&#34;&gt;
&lt;div class=&#34;title&#34;&gt;~/.jetbrains/acp.json&lt;/div&gt;
&lt;div class=&#34;content&#34;&gt;
&lt;pre class=&#34;highlight&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;{
  &amp;#34;default_mcp_settings&amp;#34;: {},
  &amp;#34;agent_servers&amp;#34;: {
    &amp;#34;Kiro Agent ACP&amp;#34;: {
      &amp;#34;command&amp;#34;: &amp;#34;/Users/&amp;lt;USER&amp;gt;/.local/bin/kiro-cli&amp;#34;,
      &amp;#34;args&amp;#34;: [&amp;#34;acp&amp;#34;]
    }
  }
}&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;sect2&#34;&gt;
&lt;h3 id=&#34;_fix_for_auth_issues_with_legacy_versions&#34;&gt;Fix for auth issues with legacy versions&lt;/h3&gt;
&lt;div class=&#34;paragraph&#34;&gt;
&lt;p&gt;Some older versions might need the to use the following workaround that fixes this &lt;a href=&#34;https://github.com/kirodotdev/Kiro/issues/6603&#34;&gt;kiro issue&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;</description>
    </item>
  </channel>
</rss>
