<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: TechLatest</title>
    <description>The latest articles on DEV Community by TechLatest (@techlatestnet).</description>
    <link>https://dev.to/techlatestnet</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3766280%2Fd16e1ef1-ba16-4bdb-8487-7be6141334ea.jpg</url>
      <title>DEV Community: TechLatest</title>
      <link>https://dev.to/techlatestnet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/techlatestnet"/>
    <language>en</language>
    <item>
      <title>What is Cynative? Complete Guide to AI Infrastructure Research and Cloud Security Auditing</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Wed, 22 Jul 2026 12:54:49 +0000</pubDate>
      <link>https://dev.to/techlatestnet/what-is-cynative-complete-guide-to-ai-infrastructure-research-and-cloud-security-auditing-389b</link>
      <guid>https://dev.to/techlatestnet/what-is-cynative-complete-guide-to-ai-infrastructure-research-and-cloud-security-auditing-389b</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fuzyabyr646jebmzmvki9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fuzyabyr646jebmzmvki9.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Modern infrastructure rarely exists in a single environment. A typical production workload may span GitHub repositories, CI/CD pipelines, cloud providers, Kubernetes clusters, identity providers, and infrastructure-as-code platforms. While this architecture improves scalability and flexibility, it also makes investigating security issues significantly more difficult.&lt;/p&gt;

&lt;p&gt;Answering what appears to be a simple question — such as &lt;em&gt;“Which IAM roles in my environment can escalate privileges?”&lt;/em&gt; — often requires collecting data from multiple systems, correlating the results manually, and validating whether the findings are actually exploitable. Traditional security tools usually inspect only one layer of the stack, leaving engineers to piece together the complete picture themselves.&lt;/p&gt;

&lt;p&gt;Cynative was built to eliminate that fragmentation.&lt;/p&gt;

&lt;p&gt;Cynative is an &lt;strong&gt;open-source AI infrastructure research agent&lt;/strong&gt; that helps engineers investigate cloud infrastructure, source code, CI/CD pipelines, and runtime environments using natural language. Instead of limiting its analysis to a single repository or cloud service, it reasons across your entire infrastructure, connecting information from platforms such as &lt;strong&gt;AWS, Microsoft Azure, Google Cloud Platform (GCP), GitHub, GitLab, and Kubernetes&lt;/strong&gt; to produce evidence-backed answers.&lt;/p&gt;

&lt;p&gt;Unlike AI coding assistants that primarily generate or modify source code, Cynative is designed specifically for &lt;strong&gt;infrastructure research and security investigations&lt;/strong&gt;. It focuses on understanding how different parts of your environment interact rather than writing application logic.&lt;/p&gt;

&lt;p&gt;For example, instead of manually reviewing IAM policies, GitHub Actions workflows, Kubernetes RoleBindings, and cloud networking configurations, you can simply ask:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative &lt;span class="s2"&gt;"What in my cloud is publicly exposed that shouldn't be?"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Behind this single command, Cynative determines which systems need to be queried, generates research code, securely executes those queries in an isolated sandbox, validates every result against live infrastructure, and presents a consolidated answer with supporting evidence.&lt;/p&gt;

&lt;p&gt;The goal is not simply to automate API calls. The goal is to help engineers understand complex infrastructure relationships that would otherwise require significant manual investigation.&lt;/p&gt;

&lt;h4&gt;
  
  
  Why Was Cynative Created?
&lt;/h4&gt;

&lt;p&gt;Cloud-native environments have become increasingly interconnected. A deployment pipeline today might look something like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A developer pushes code to GitHub.&lt;/li&gt;
&lt;li&gt;GitHub Actions starts a CI/CD workflow.&lt;/li&gt;
&lt;li&gt;The workflow authenticates to AWS using OpenID Connect (OIDC).&lt;/li&gt;
&lt;li&gt;An IAM role grants temporary credentials.&lt;/li&gt;
&lt;li&gt;Containers are deployed to Amazon EKS.&lt;/li&gt;
&lt;li&gt;Secrets are retrieved from AWS Secrets Manager.&lt;/li&gt;
&lt;li&gt;Services become accessible through Kubernetes Ingress resources.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each component is secure only if every link in the chain is configured correctly.&lt;/p&gt;

&lt;p&gt;Traditional tools often analyze these systems independently. A GitHub security scanner knows about repositories, an IAM auditing tool understands cloud permissions, and a Kubernetes scanner evaluates cluster configurations. However, they generally do not reason across all of these layers as a connected system.&lt;/p&gt;

&lt;p&gt;This creates blind spots.&lt;/p&gt;

&lt;p&gt;A GitHub Actions workflow may appear harmless until it assumes an over-privileged IAM role. Likewise, an IAM role may seem acceptable until it is discovered that any pull request can trigger the workflow that uses it. Identifying these relationships requires correlating information from multiple platforms.&lt;/p&gt;

&lt;p&gt;Cynative was designed to bridge these gaps by treating your infrastructure as one connected environment rather than a collection of isolated services.&lt;/p&gt;

&lt;h4&gt;
  
  
  How Cynative Thinks About Infrastructure
&lt;/h4&gt;

&lt;p&gt;Instead of viewing infrastructure as individual APIs, Cynative builds a broader understanding of how resources are related.&lt;/p&gt;

&lt;p&gt;For example, a security investigation may involve tracing a deployment path like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;GitHub Repository
        │
        ▼
GitHub Actions Workflow
        │
        ▼
OIDC Trust Relationship
        │
        ▼
AWS IAM Role
        │
        ▼
Amazon EKS Cluster
        │
        ▼
Running Kubernetes Workloads
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Rather than returning disconnected pieces of information, Cynative attempts to explain the complete chain of trust and identify where security risks emerge.&lt;/p&gt;

&lt;p&gt;This approach allows engineers to investigate questions that traditionally require expertise across multiple cloud platforms and tooling ecosystems.&lt;/p&gt;

&lt;h4&gt;
  
  
  How Cynative Works
&lt;/h4&gt;

&lt;p&gt;From the user’s perspective, Cynative behaves like a command-line research assistant. You ask a question in natural language, and it investigates your infrastructure before returning an answer.&lt;/p&gt;

&lt;p&gt;Internally, however, the workflow is considerably more sophisticated.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Natural Language Question
            │
            ▼
Infrastructure Planning
            │
            ▼
Connector Selection
            │
            ▼
Permission Validation
            │
            ▼
Sandboxed Code Generation
            │
            ▼
Concurrent API Requests
            │
            ▼
Evidence Collection
            │
            ▼
Cross Verification
            │
            ▼
Verified Research Report
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of issuing one API request at a time, Cynative can generate JavaScript that performs concurrent requests across multiple services. This enables it to inspect large cloud environments more efficiently while reducing the number of interactions required with the underlying language model.&lt;/p&gt;

&lt;p&gt;Every finding is then verified against live infrastructure before being presented, helping reduce false positives and improving confidence in the final report.&lt;/p&gt;

&lt;h4&gt;
  
  
  Core Capabilities of Cynative
&lt;/h4&gt;

&lt;p&gt;At a high level, Cynative combines several capabilities into a single research workflow:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Natural language infrastructure research&lt;/strong&gt; that allows engineers to ask questions instead of writing complex cloud queries.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cross-platform reasoning&lt;/strong&gt; across GitHub, GitLab, AWS, Azure, GCP, and Kubernetes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sandboxed code execution&lt;/strong&gt; that safely performs large-scale investigations without direct access to the host system.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Parallel API orchestration&lt;/strong&gt; for faster research across regions, repositories, clusters, and cloud accounts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Evidence-backed verification&lt;/strong&gt; that validates findings before presenting results.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Read-only security controls&lt;/strong&gt; that prevent accidental infrastructure changes during investigations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Comprehensive audit logging&lt;/strong&gt; for traceability and compliance.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Together, these capabilities transform Cynative from a simple command-line utility into a dedicated infrastructure research platform.&lt;/p&gt;

&lt;h4&gt;
  
  
  Who Should Use Cynative?
&lt;/h4&gt;

&lt;p&gt;Cynative is designed for teams responsible for building, operating, and securing cloud infrastructure. Depending on your role, it can support different types of investigations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cloud Security Engineers&lt;/strong&gt; can identify publicly exposed resources, over-permissioned IAM roles, insecure trust relationships, and cloud configuration issues.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;DevOps and Platform Engineers&lt;/strong&gt; can investigate deployment pipelines, infrastructure drift, Kubernetes configurations, and cloud architecture without manually querying multiple services.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Site Reliability Engineers (SREs)&lt;/strong&gt; can trace deployment paths, validate infrastructure consistency, and better understand how production systems are connected.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Security Operations (SecOps) teams&lt;/strong&gt; can use Cynative during incident response to quickly determine the blast radius of exposed credentials, compromised identities, or misconfigured cloud resources.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open Source Maintainers and Consultants&lt;/strong&gt; can audit customer environments, review CI/CD pipelines, and perform infrastructure assessments while maintaining a read-only security posture.&lt;/p&gt;

&lt;h4&gt;
  
  
  Why Cynative Stands Out
&lt;/h4&gt;

&lt;p&gt;Many AI-powered developer tools focus on generating code or interacting with a single repository. Cynative addresses a different problem: understanding infrastructure as an interconnected system.&lt;/p&gt;

&lt;p&gt;Its architecture combines natural language reasoning, concurrent infrastructure analysis, read-only security enforcement, sandboxed execution, and evidence-backed verification into a single workflow. This enables engineers to investigate complex cloud environments without stitching together multiple scanners, scripts, or dashboards.&lt;/p&gt;

&lt;p&gt;As organizations continue adopting multi-cloud architectures and increasingly complex deployment pipelines, tools that can reason across infrastructure — not just individual services — are becoming an important part of modern DevSecOps workflows.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features of Cynative
&lt;/h3&gt;

&lt;p&gt;Cynative combines AI-powered reasoning, cloud infrastructure awareness, and security-first design into a single command-line tool. Instead of acting as another cloud scanner or AI coding assistant, it researches your infrastructure by connecting information across multiple platforms and validating every finding before presenting the results.&lt;/p&gt;

&lt;p&gt;Below are the capabilities that make Cynative different from traditional security tools and AI agents.&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Research Your Entire Infrastructure Using Natural Language
&lt;/h4&gt;

&lt;p&gt;One of Cynative’s defining features is its ability to answer infrastructure questions using natural language.&lt;/p&gt;

&lt;p&gt;Instead of remembering dozens of cloud commands, API endpoints, or provider-specific tools, you simply describe the problem you want to investigate.&lt;/p&gt;

&lt;p&gt;For example, you can ask questions like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative &lt;span class="s2"&gt;"Which IAM roles can escalate to administrator?"&lt;/span&gt;

cynative &lt;span class="s2"&gt;"Find cloud resources that are publicly accessible."&lt;/span&gt;

cynative &lt;span class="s2"&gt;"Which GitHub Actions workflows deploy to production?"&lt;/span&gt;

cynative &lt;span class="s2"&gt;"Show infrastructure resources that are not managed by Terraform."&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of matching keywords to predefined checks, Cynative interprets the intent behind your request, determines which systems need to be queried, gathers the required data, and generates a response supported by live infrastructure evidence.&lt;/p&gt;

&lt;p&gt;This conversational workflow makes infrastructure research significantly more approachable, particularly in environments where information is spread across multiple cloud providers and development platforms.&lt;/p&gt;

&lt;h4&gt;
  
  
  2. Cross-Platform Infrastructure Reasoning
&lt;/h4&gt;

&lt;p&gt;Modern applications rarely exist within a single platform. A production deployment often involves source code repositories, CI/CD systems, cloud identity, Kubernetes clusters, and runtime services.&lt;/p&gt;

&lt;p&gt;Traditional security tools usually analyze only one of these components at a time.&lt;/p&gt;

&lt;p&gt;Cynative takes a broader approach by reasoning across your infrastructure as one connected system.&lt;/p&gt;

&lt;p&gt;For example, a deployment chain might involve:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;GitHub Repository
        │
        ▼
GitHub Actions
        │
        ▼
OIDC Authentication
        │
        ▼
AWS IAM Role
        │
        ▼
Amazon EKS
        │
        ▼
Running Containers
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Rather than producing separate reports for each service, Cynative follows these relationships to explain how changes in one system can affect another.&lt;/p&gt;

&lt;p&gt;This ability to correlate infrastructure components is particularly valuable during security investigations, incident response, and cloud architecture reviews.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Support for Multiple Cloud Platforms
&lt;/h4&gt;

&lt;p&gt;Cynative is designed for organizations operating across hybrid and multi-cloud environments.&lt;/p&gt;

&lt;p&gt;Instead of being tied to a single provider, it supports infrastructure research across major cloud ecosystems, including:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Platform | Supported |
| --------------------------- | --------- |
| Amazon Web Services (AWS) | ✅ |
| Microsoft Azure | ✅ |
| Google Cloud Platform (GCP) | ✅ |
| Kubernetes | ✅ |
| Amazon EKS | ✅ |
| Azure AKS | ✅ |
| Google GKE | ✅ |
| GitHub | ✅ |
| GitLab | ✅ |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This unified approach allows engineers to investigate infrastructure without switching between different vendor-specific tools.&lt;/p&gt;

&lt;h4&gt;
  
  
  4. Secure Read-Only Architecture
&lt;/h4&gt;

&lt;p&gt;Many AI agents are capable of modifying infrastructure once they receive credentials.&lt;/p&gt;

&lt;p&gt;While this enables automation, it also introduces operational risk, especially in production environments.&lt;/p&gt;

&lt;p&gt;Cynative follows a fundamentally different philosophy.&lt;/p&gt;

&lt;p&gt;It is designed to &lt;strong&gt;research infrastructure without changing it&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Before any request reaches a cloud provider or development platform, Cynative validates whether the requested operation complies with its read-only security policy.&lt;/p&gt;

&lt;p&gt;If an operation requires write permissions, it is blocked before credentials are attached.&lt;/p&gt;

&lt;p&gt;This design significantly reduces the risk of accidental infrastructure changes during investigations while allowing teams to safely analyze production environments.&lt;/p&gt;

&lt;h4&gt;
  
  
  5. Evidence-Backed Verification
&lt;/h4&gt;

&lt;p&gt;One of the biggest concerns with AI-generated answers is reliability.&lt;/p&gt;

&lt;p&gt;Language models can occasionally produce incomplete or inaccurate responses if they rely solely on reasoning.&lt;/p&gt;

&lt;p&gt;Cynative addresses this challenge by verifying findings against live infrastructure before presenting them to the user.&lt;/p&gt;

&lt;p&gt;Instead of saying:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“This IAM role appears to have administrator privileges.”&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Cynative attempts to validate that statement using actual cloud APIs and supporting evidence.&lt;/p&gt;

&lt;p&gt;The result is a research workflow where conclusions are backed by infrastructure data rather than assumptions.&lt;/p&gt;

&lt;p&gt;This verification process improves confidence in security assessments and helps reduce false positives.&lt;/p&gt;

&lt;h4&gt;
  
  
  6. Parallel Infrastructure Research
&lt;/h4&gt;

&lt;p&gt;Large cloud environments often contain thousands of resources distributed across multiple accounts and regions.&lt;/p&gt;

&lt;p&gt;Querying each resource sequentially can take a considerable amount of time.&lt;/p&gt;

&lt;p&gt;Cynative improves performance by generating research code capable of executing API requests concurrently.&lt;/p&gt;

&lt;p&gt;For example, instead of inspecting every AWS region one after another, it can query multiple regions simultaneously, collect the results, and merge them into a single report.&lt;/p&gt;

&lt;p&gt;Conceptually, the workflow looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Traditional Approach

Region A
   │
Region B
   │
Region C
   │
Region D
   │
Complete

Cynative

Region A ─┐
Region B ─┤
Region C ─┼──► Combined Results
Region D ─┘
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This concurrent execution model enables Cynative to research large infrastructures more efficiently while reducing unnecessary interaction with the underlying language model.&lt;/p&gt;

&lt;h4&gt;
  
  
  7. Sandboxed Code Execution
&lt;/h4&gt;

&lt;p&gt;Some infrastructure investigations require hundreds of API calls.&lt;/p&gt;

&lt;p&gt;Rather than issuing every request individually, Cynative can generate JavaScript that performs the required research inside an isolated execution environment.&lt;/p&gt;

&lt;p&gt;The generated code can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Query cloud APIs&lt;/li&gt;
&lt;li&gt;Process responses&lt;/li&gt;
&lt;li&gt;Filter resources&lt;/li&gt;
&lt;li&gt;Handle pagination&lt;/li&gt;
&lt;li&gt;Aggregate findings&lt;/li&gt;
&lt;li&gt;Execute concurrent operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The sandbox itself is intentionally restricted.&lt;/p&gt;

&lt;p&gt;It does not provide unrestricted access to the local filesystem, arbitrary internet resources, or third-party packages. Instead, it exposes only approved infrastructure tools required to perform the requested research.&lt;/p&gt;

&lt;p&gt;This approach combines flexibility with stronger security boundaries.&lt;/p&gt;

&lt;h4&gt;
  
  
  8. Built-in Audit Logging
&lt;/h4&gt;

&lt;p&gt;Security investigations often require traceability.&lt;/p&gt;

&lt;p&gt;To support auditing and compliance, Cynative records every approved tool invocation in a persistent JSON Lines (JSONL) audit log.&lt;/p&gt;

&lt;p&gt;Each entry contains details about the executed operation, making it possible to review infrastructure research performed during previous sessions.&lt;/p&gt;

&lt;p&gt;The logging system is designed with a fail-closed approach.&lt;/p&gt;

&lt;p&gt;If Cynative cannot safely record a tool invocation, the operation is aborted instead of continuing without an audit trail.&lt;/p&gt;

&lt;p&gt;This behavior helps organizations maintain accountability when investigating sensitive production environments.&lt;/p&gt;

&lt;h4&gt;
  
  
  9. Local Execution and Data Control
&lt;/h4&gt;

&lt;p&gt;Unlike cloud-hosted AI platforms that require uploading infrastructure data to external services, Cynative runs locally within your own environment.&lt;/p&gt;

&lt;p&gt;It uses the credentials already available in your shell and communicates directly with your cloud providers through built-in connectors.&lt;/p&gt;

&lt;p&gt;This architecture offers several advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Infrastructure credentials remain under your control.&lt;/li&gt;
&lt;li&gt;Research executes within your own environment.&lt;/li&gt;
&lt;li&gt;Organizations can choose their preferred LLM provider.&lt;/li&gt;
&lt;li&gt;Local model providers such as Ollama and vLLM are supported for teams with strict data residency requirements.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For organizations operating under compliance frameworks or internal security policies, local execution provides greater control over infrastructure analysis workflows.&lt;/p&gt;

&lt;h4&gt;
  
  
  10. Support for More Than 20 AI Providers
&lt;/h4&gt;

&lt;p&gt;Cynative integrates with the Bifrost SDK, allowing users to select from more than twenty supported language model providers.&lt;/p&gt;

&lt;p&gt;Supported providers include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Anthropic&lt;/li&gt;
&lt;li&gt;OpenAI&lt;/li&gt;
&lt;li&gt;Google Gemini&lt;/li&gt;
&lt;li&gt;Azure OpenAI&lt;/li&gt;
&lt;li&gt;Amazon Bedrock&lt;/li&gt;
&lt;li&gt;Google Vertex AI&lt;/li&gt;
&lt;li&gt;Cohere&lt;/li&gt;
&lt;li&gt;Groq&lt;/li&gt;
&lt;li&gt;Mistral AI&lt;/li&gt;
&lt;li&gt;Ollama&lt;/li&gt;
&lt;li&gt;vLLM&lt;/li&gt;
&lt;li&gt;and many others.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This flexibility allows teams to choose models based on performance, pricing, privacy requirements, or deployment preferences without changing how they interact with Cynative.&lt;/p&gt;

&lt;h4&gt;
  
  
  Feature Summary
&lt;/h4&gt;

&lt;p&gt;The table below summarizes Cynative’s primary capabilities.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Feature | Description |
| ------------------------- | ---------------------------------------------------------------------------- |
| Natural Language Research | Ask infrastructure questions using plain English. |
| Multi-Cloud Support | Research AWS, Azure, GCP, Kubernetes, GitHub, and GitLab from one interface. |
| Read-Only Security Model | Blocks write operations before credentials are attached. |
| Evidence Verification | Validates findings against live infrastructure before reporting them. |
| Parallel API Execution | Performs concurrent infrastructure research for improved performance. |
| Sandboxed Execution | Runs generated research code inside an isolated environment. |
| Audit Logging | Records approved tool calls in a persistent JSONL audit log. |
| Local Execution | Runs within your environment using existing credentials. |
| Multiple LLM Providers | Supports more than 20 commercial and self-hosted AI providers. |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;By combining these capabilities, Cynative goes beyond traditional infrastructure scanners or AI coding assistants. It provides a unified way to investigate cloud environments, correlate findings across platforms, and produce evidence-backed answers while maintaining a security-first, read-only design.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installing Cynative
&lt;/h3&gt;

&lt;p&gt;Cynative is distributed as a command-line interface (CLI) and supports &lt;strong&gt;macOS, Linux, and Windows&lt;/strong&gt;. Once installed, it can connect to your preferred large language model (LLM) provider and securely interact with cloud platforms such as AWS, Azure, Google Cloud Platform (GCP), GitHub, GitLab, and Kubernetes using the credentials already available in your local environment.&lt;/p&gt;

&lt;p&gt;Unlike many AI-powered developer tools that require cloud-hosted services or proprietary dashboards, Cynative runs locally. This gives you greater control over authentication, infrastructure access, and model selection while keeping your research workflow within your own environment.&lt;/p&gt;

&lt;p&gt;Before installing Cynative, make sure your system meets the following requirements.&lt;/p&gt;

&lt;h4&gt;
  
  
  Prerequisites
&lt;/h4&gt;

&lt;p&gt;You’ll need the following before getting started:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A supported operating system (macOS, Linux, or Windows)&lt;/li&gt;
&lt;li&gt;Internet connectivity for installation and API access&lt;/li&gt;
&lt;li&gt;An API key from a supported LLM provider (such as Anthropic, OpenAI, or Gemini)&lt;/li&gt;
&lt;li&gt;Cloud credentials configured locally if you plan to research AWS, Azure, GCP, GitHub, GitLab, or Kubernetes environments&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Cynative does not maintain its own credential store. Instead, it uses the credentials already configured in your terminal session, allowing you to continue using your existing authentication workflows.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Install Cynative on macOS and Linux
&lt;/h4&gt;

&lt;p&gt;The recommended installation method for macOS and Linux is &lt;strong&gt;Homebrew&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Run the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;brew &lt;span class="nb"&gt;install &lt;/span&gt;cynative/tap/cynative
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Homebrew automatically downloads and installs the latest stable version of the Cynative CLI along with any required dependencies.&lt;/p&gt;

&lt;p&gt;Once the installation completes, verify that Cynative is available by checking its version.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the installation was successful, you’ll see output similar to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cynative version x.x.x
commit: abc123
build date: YYYY-MM-DD
go version: go1.xx
platform: darwin/arm64
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The exact version information will vary depending on the release you’ve installed.&lt;/p&gt;

&lt;h4&gt;
  
  
  Install Using the Official Installation Script
&lt;/h4&gt;

&lt;p&gt;If you don’t use Homebrew, Cynative also provides an official installation script for macOS and Linux.&lt;/p&gt;

&lt;p&gt;Run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://raw.githubusercontent.com/cynative/cynative/main/install.sh | sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One advantage of the official installer is that it verifies the downloaded binary against the published SHA-256 checksums before completing the installation. If verification fails, the installation is aborted to help prevent tampered or corrupted downloads.&lt;/p&gt;

&lt;h4&gt;
  
  
  Install Cynative on Windows
&lt;/h4&gt;

&lt;p&gt;Windows users can install Cynative using  &lt;strong&gt;Scoop&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;First, add the Cynative bucket:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;scoop bucket add cynative https://github.com/cynative/scoop-bucket
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then install the CLI:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;scoop &lt;span class="nb"&gt;install &lt;/span&gt;cynative
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After installation, verify that the CLI is available.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Verify Your Installation
&lt;/h4&gt;

&lt;p&gt;Before connecting any cloud providers or LLMs, it’s a good idea to verify that the installation completed successfully.&lt;/p&gt;

&lt;p&gt;Run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative doctor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The doctor command checks your local configuration and validates that Cynative is correctly installed. It can also identify missing dependencies or connector configuration issues before you begin using the tool.&lt;/p&gt;

&lt;p&gt;Running this command after installation can save time when troubleshooting authentication or environment configuration problems.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F23skhgdmjh83e09lmgvs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F23skhgdmjh83e09lmgvs.png" width="800" height="351"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6vw11ykhstqex0ikqc9o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6vw11ykhstqex0ikqc9o.png" width="800" height="335"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Configure an LLM Provider
&lt;/h3&gt;

&lt;p&gt;After installing Cynative, the next step is configuring a Large Language Model (LLM). The model is responsible for understanding your natural language prompts, planning infrastructure investigations, generating research code, and summarizing verified findings.&lt;/p&gt;

&lt;p&gt;Unlike many AI-powered developer tools that are tied to a single provider, Cynative supports more than &lt;strong&gt;23 commercial and self-hosted LLM providers&lt;/strong&gt; through its embedded Bifrost SDK. This gives organizations the flexibility to choose a model based on performance, privacy requirements, deployment preferences, or cost.&lt;/p&gt;

&lt;p&gt;Some of the supported providers include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Anthropic&lt;/li&gt;
&lt;li&gt;OpenAI&lt;/li&gt;
&lt;li&gt;Google Gemini&lt;/li&gt;
&lt;li&gt;Azure OpenAI&lt;/li&gt;
&lt;li&gt;Amazon Bedrock&lt;/li&gt;
&lt;li&gt;Google Vertex AI&lt;/li&gt;
&lt;li&gt;Groq&lt;/li&gt;
&lt;li&gt;Cohere&lt;/li&gt;
&lt;li&gt;Mistral AI&lt;/li&gt;
&lt;li&gt;Ollama&lt;/li&gt;
&lt;li&gt;vLLM&lt;/li&gt;
&lt;li&gt;Together AI&lt;/li&gt;
&lt;li&gt;And many more&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This flexibility means you can use cloud-hosted frontier models such as Claude or GPT-5, or run everything locally using Ollama or vLLM without sending prompts to external APIs.&lt;/p&gt;

&lt;h4&gt;
  
  
  Configure Anthropic
&lt;/h4&gt;

&lt;p&gt;If you plan to use Anthropic Claude models, export the following environment variables.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_PROVIDER&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;anthropic
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_MODEL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;claude-fable-5
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;ANTHROPIC_API_KEY&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;YOUR_API_KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also replace claude-fable-5 with any supported Claude model available through Anthropic.&lt;/p&gt;

&lt;h4&gt;
  
  
  Configure OpenAI
&lt;/h4&gt;

&lt;p&gt;To use OpenAI models, configure the provider as shown below.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_PROVIDER&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;openai
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_MODEL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;gpt-5
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;OPENAI_API_KEY&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;YOUR_API_KEY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Configure Ollama (Local Models)
&lt;/h4&gt;

&lt;p&gt;If you prefer running everything locally, Cynative integrates directly with Ollama.&lt;/p&gt;

&lt;p&gt;First, make sure Ollama is installed and running on your machine.&lt;/p&gt;

&lt;p&gt;Verify your available models:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ollama list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;NAME SIZE
qwen2.5:7b 4.7 GB
gemma4:31b 19 GB
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Next, configure Cynative to use your local Ollama instance.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_PROVIDER&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;ollama
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_MODEL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;qwen2.5:7b
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CYNATIVE_LLM_OLLAMA_URL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;http://localhost:11434
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Replace the model name with the one installed on your system.&lt;/p&gt;

&lt;p&gt;Using Ollama allows infrastructure research to remain entirely within your local environment, making it an attractive option for organizations with strict security or compliance requirements.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8hiolnm3u92ichaius15.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8hiolnm3u92ichaius15.png" width="799" height="299"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Verify Your Configuration
&lt;/h4&gt;

&lt;p&gt;After configuring your preferred provider, verify everything is working correctly.&lt;/p&gt;

&lt;p&gt;Run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative doctor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A successful configuration should display information about your configured provider and available connectors.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Connectors
✓ github
✓ aws

LLM
✓ Provider: ollama
✓ Model: qwen2.5:7b
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If any connector or provider is misconfigured, the doctor command reports the issue along with guidance on how to resolve it before you begin your research session.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyn6andgubn9460roho9b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyn6andgubn9460roho9b.png" width="800" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Start an Interactive Session
&lt;/h3&gt;

&lt;p&gt;Launching Cynative without any arguments starts an interactive research session.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;From here, you can ask infrastructure questions using natural language.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Which IAM roles can escalate to administrator?

Find publicly accessible cloud resources.

Review my GitHub Actions workflows for security issues.

Show infrastructure resources that are not managed by Terraform.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Unlike traditional command-line tools, you don’t need to remember provider-specific commands or API endpoints. Instead, you describe what you want to investigate, and Cynative determines which connectors and APIs are required.&lt;/p&gt;

&lt;h4&gt;
  
  
  Execute a Single Query
&lt;/h4&gt;

&lt;p&gt;If you only need an answer to one question, you can execute it directly from the command line.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative &lt;span class="s2"&gt;"List all repositories in my GitHub account"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cynative &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"List all repositories in my GitHub account"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The -p (print) option is especially useful for shell scripts, automation, and CI/CD pipelines because it prints the result and exits immediately.&lt;/p&gt;

&lt;h4&gt;
  
  
  Understanding Tool Approval Prompts
&lt;/h4&gt;

&lt;p&gt;One of Cynative’s most important security features is its &lt;strong&gt;approval system&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Before making any authenticated API request, Cynative shows the exact request it intends to execute.&lt;/p&gt;

&lt;p&gt;For example, when I asked it to list my GitHub repositories, it displayed the following tool call:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"method"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"GET"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.github.com/user/repos"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"auth_provider"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"github"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It then prompted me with:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Execute? [y]es once / [a]ll this session / [N]o
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This approval mechanism gives you complete visibility into every authenticated action before it is executed.&lt;/p&gt;

&lt;p&gt;You have three options:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;y&lt;/strong&gt;  — Approve only the current request.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;a&lt;/strong&gt;  — Approve all future requests made by the same tool during the current session.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;N&lt;/strong&gt;  — Deny the request.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This extra confirmation step helps prevent unintended API calls while giving users full control over how Cynative interacts with their infrastructure.&lt;/p&gt;

&lt;h4&gt;
  
  
  Example Output
&lt;/h4&gt;

&lt;p&gt;After approving the request, Cynative queried the GitHub API using my existing credentials and returned details about the repositories it could access, including repository names, owners, descriptions, primary languages, stars, forks, and recent activity.&lt;/p&gt;

&lt;p&gt;This demonstrates how Cynative combines natural language understanding with authenticated API calls to transform a simple question into a structured, evidence-backed response.&lt;/p&gt;

&lt;h4&gt;
  
  
  Notes on Local Models
&lt;/h4&gt;

&lt;p&gt;For this guide, I used &lt;strong&gt;Ollama&lt;/strong&gt; with the &lt;strong&gt;Qwen2.5 7B&lt;/strong&gt; model. While it works for local experimentation, smaller models may occasionally produce less focused reasoning or require additional iterations for more complex investigations.&lt;/p&gt;

&lt;p&gt;If you’re working with larger cloud environments or conducting advanced security research, you’ll generally get better results with stronger reasoning models, whether self-hosted or cloud-based.&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;Modern cloud infrastructure is more interconnected than ever. A single deployment can involve GitHub repositories, CI/CD pipelines, cloud providers, Kubernetes clusters, identity systems, and infrastructure-as-code, making security investigations increasingly complex. Understanding how these components interact often requires switching between multiple tools, APIs, and dashboards before you can even begin analyzing the actual problem.&lt;/p&gt;

&lt;p&gt;Cynative takes a different approach.&lt;/p&gt;

&lt;p&gt;Instead of treating each platform as an isolated system, it researches your infrastructure as a connected ecosystem. By combining natural language understanding, cross-platform reasoning, sandboxed code execution, concurrent API orchestration, evidence-backed verification, and a security-first read-only architecture, Cynative helps engineers answer complex infrastructure questions from a single command-line interface.&lt;/p&gt;

&lt;p&gt;Whether you’re auditing IAM permissions, reviewing GitHub Actions workflows, identifying publicly exposed resources, investigating Kubernetes RBAC configurations, or tracing OIDC trust relationships, Cynative provides a faster and more structured way to understand what’s happening across your environment.&lt;/p&gt;

&lt;p&gt;Another notable advantage is its flexibility. You can choose from more than 20 supported LLM providers — including cloud-hosted models such as Claude and GPT or self-hosted options like Ollama and vLLM — allowing you to balance performance, privacy, and deployment requirements according to your organization’s needs.&lt;/p&gt;

&lt;p&gt;While no AI tool replaces sound security practices or human expertise, Cynative can significantly reduce the time spent gathering information and correlating findings across multiple systems. For platform engineers, DevOps teams, cloud security professionals, and incident responders, it offers a practical way to investigate modern infrastructure using natural language while maintaining strong security boundaries.&lt;/p&gt;

&lt;p&gt;As cloud environments continue to grow in scale and complexity, tools that can reason across code, cloud, identity, and runtime resources will become increasingly valuable. Cynative represents an interesting step in that direction by combining AI-assisted infrastructure research with verifiable evidence and a security-focused design.&lt;/p&gt;

&lt;p&gt;If you’re looking for a way to simplify cloud investigations, improve infrastructure visibility, or strengthen your DevSecOps workflow, Cynative is worth exploring. Install it, connect it to your preferred LLM provider, and start asking questions about your infrastructure — you may discover insights that would have taken hours to uncover manually.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aisecurity</category>
      <category>opensource</category>
      <category>cynative</category>
      <category>security</category>
    </item>
    <item>
      <title>Kimi K3 vs. Claude Fable 5: Which AI Model Is Better for Coding and AI Agents?</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Wed, 22 Jul 2026 10:10:37 +0000</pubDate>
      <link>https://dev.to/techlatestnet/kimi-k3-vs-claude-fable-5-which-ai-model-is-better-for-coding-and-ai-agents-29of</link>
      <guid>https://dev.to/techlatestnet/kimi-k3-vs-claude-fable-5-which-ai-model-is-better-for-coding-and-ai-agents-29of</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F97ixla8ix4r5zjsgnj19.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F97ixla8ix4r5zjsgnj19.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Artificial intelligence is evolving faster than ever, and the competition between frontier proprietary models and open-weight alternatives has become more intense than at any point in the industry’s history. While companies like Anthropic and OpenAI continue to push the boundaries of closed-source AI systems, a new generation of open-weight models is rapidly narrowing the performance gap.&lt;/p&gt;

&lt;p&gt;One of the latest entrants is &lt;strong&gt;Kimi K3&lt;/strong&gt; , Moonshot AI’s flagship large language model designed for software engineering, autonomous AI agents, long-context reasoning, and enterprise-scale applications. Shortly after its release, Kimi K3 attracted significant attention by posting competitive results across several widely used coding and agentic AI benchmarks, placing it alongside some of the industry’s strongest commercial models.&lt;/p&gt;

&lt;p&gt;On the other side is &lt;strong&gt;Claude Fable 5&lt;/strong&gt; , Anthropic’s latest flagship reasoning model. Built for complex software development, multi-step planning, research, and enterprise AI workflows, Claude Fable 5 continues to rank among the highest-performing models in independent evaluations and remains a preferred choice for many professional developers using Claude Code.&lt;/p&gt;

&lt;p&gt;For developers, startups, and enterprises, the question is no longer whether open-weight models are catching up — they already are. The real question is whether they now offer enough capability to replace premium proprietary models in day-to-day development.&lt;/p&gt;

&lt;p&gt;In this comprehensive comparison, we’ll examine both models across multiple dimensions, including architecture, reasoning capabilities, coding performance, pricing, context length, latency, and real-world developer workflows. We’ll also compare official benchmark results, independent evaluations, and hands-on testing to help you determine which model best fits your projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  Claude Fable 5 vs. Kimi K3 at a Glance
&lt;/h3&gt;

&lt;p&gt;Although both models target advanced AI-assisted development, they take fundamentally different approaches.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhmb8x4pqa4oo84iwl1yq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhmb8x4pqa4oo84iwl1yq.png" width="799" height="366"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Anthropic positions Claude Fable 5 as a premium frontier model focused on deep reasoning, software engineering, enterprise reliability, and long-running AI agents. It is available through Anthropic’s API and several major cloud platforms, offering a mature ecosystem for organizations building production AI applications.&lt;/p&gt;

&lt;p&gt;Moonshot AI approaches the problem differently with Kimi K3. Rather than emphasizing a fully managed closed ecosystem, Kimi K3 is designed as an open-weight Mixture-of-Experts (MoE) model capable of handling large codebases, autonomous agent workflows, and million-token contexts while remaining considerably more affordable than many commercial alternatives.&lt;/p&gt;

&lt;p&gt;While both models support modern AI development workflows, their strengths differ:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Claude Fable 5 | Kimi K3 |
| --------------------------------------------- | ------------------------------------------------- |
| Premium proprietary reasoning model | Open-weight Mixture-of-Experts model |
| Optimized for enterprise software engineering | Optimized for coding and AI agents |
| Strong reasoning and planning capabilities | Excellent automation and terminal-based workflows |
| Mature enterprise ecosystem | Self-hosting and customization potential |
| Higher API pricing | Lower API pricing |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Rather than viewing these models as direct replacements for one another, many organizations will evaluate them based on workload requirements, deployment preferences, and infrastructure costs.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is Claude Fable 5?
&lt;/h3&gt;

&lt;p&gt;Claude Fable 5 is Anthropic’s latest flagship large language model built for advanced reasoning, software development, enterprise automation, and AI-assisted programming. It succeeds earlier Claude generations with improvements in adaptive reasoning, long-context understanding, and complex multi-step problem solving.&lt;/p&gt;

&lt;p&gt;One of Claude Fable 5’s defining characteristics is its ability to dynamically allocate reasoning effort depending on task complexity. Simple prompts receive quick responses, while more demanding coding or analytical problems trigger deeper reasoning before generating an answer.&lt;/p&gt;

&lt;p&gt;The model also integrates tightly with Anthropic’s growing developer ecosystem, including Claude Code, API integrations, and cloud offerings available through Amazon Bedrock, Google Cloud Vertex AI, and Microsoft Azure AI Foundry.&lt;/p&gt;

&lt;h4&gt;
  
  
  Key Highlights
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Advanced reasoning model with adaptive thinking&lt;/li&gt;
&lt;li&gt;Up to 1 million token context window&lt;/li&gt;
&lt;li&gt;Strong software engineering performance&lt;/li&gt;
&lt;li&gt;Enterprise-grade safety and reliability&lt;/li&gt;
&lt;li&gt;Excellent long-form reasoning and planning&lt;/li&gt;
&lt;li&gt;Native tool use and function calling&lt;/li&gt;
&lt;li&gt;Broad cloud platform availability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Claude Fable 5 is particularly well suited for developers working on large-scale software projects, enterprise AI assistants, code reviews, debugging, technical documentation, and research-intensive workflows.&lt;/p&gt;

&lt;h4&gt;
  
  
  Claude Fable 5 vs. Kimi K3: Specifications
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Feature | Claude Fable 5 | Kimi K3 |
| --------------------- | ------------------------- | ----------------------------------- |
| Developer | Anthropic | Moonshot AI |
| Release | June 2026 | July 2026 |
| Model Type | Proprietary reasoning LLM | Open-weight Mixture-of-Experts |
| Parameters | Not publicly disclosed | 2.8T total parameters |
| Active Experts | N/A | 16 experts |
| Context Window | 1,000,000 tokens | 1,048,576 tokens |
| Reasoning | Adaptive reasoning | Native reasoning |
| Tool Use | Yes | Yes |
| Function Calling | Yes | Yes |
| Long Context Support | Yes | Yes |
| API Availability | Yes | Yes |
| Open Weights | No | Yes (planned/open-weight release) |
| Enterprise Deployment | Managed cloud services | API and self-hosting (with weights) |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Although both models support million-token contexts and advanced reasoning workflows, they target different deployment strategies. Claude Fable 5 focuses on fully managed enterprise services, while Kimi K3 emphasizes openness and infrastructure flexibility.&lt;/p&gt;

&lt;h3&gt;
  
  
  Claude Fable 5 vs. Kimi K3 Pricing
&lt;/h3&gt;

&lt;p&gt;Pricing plays an important role when deploying AI models at scale, particularly for coding assistants, autonomous agents, and long-running workflows that process millions of tokens every day.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Filkqm5go49q91yqedcws.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Filkqm5go49q91yqedcws.png" width="800" height="620"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The pricing difference between these models is substantial, with Kimi K3 offering significantly lower inference costs across both input and output tokens.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Pricing | Claude Fable 5 | Kimi K3 |
| ------------- | --------------------| --------------------|
| Input Tokens | $10.00 / Million | $3.00 / Million |
| Output Tokens | $50.00 / Million | $15.00 / Million |
| Cached Input | $1.00 / Million | $0.30 / Million |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For organizations processing large volumes of requests, Kimi K3 can reduce inference costs by roughly &lt;strong&gt;70%&lt;/strong&gt; compared to Claude Fable 5.&lt;/p&gt;

&lt;p&gt;However, pricing should never be evaluated in isolation. Faster task completion, higher reasoning accuracy, fewer retries, and better code quality can often offset higher API costs, especially for enterprise development teams where developer productivity outweighs infrastructure expenses.&lt;/p&gt;

&lt;p&gt;For startups, research labs, and self-hosted deployments, Kimi K3’s pricing model makes it an attractive option for large-scale AI applications. Conversely, organizations that prioritize mature tooling, enterprise support, and best-in-class reasoning may find Claude Fable 5’s premium pricing justified.&lt;/p&gt;

&lt;h3&gt;
  
  
  Architecture Comparison
&lt;/h3&gt;

&lt;p&gt;The architectural philosophy behind these two models reflects two different visions for the future of AI.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F54x33h3ep8y6moqwqiz9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F54x33h3ep8y6moqwqiz9.png" width="800" height="602"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Claude Fable 5: Adaptive Frontier Intelligence
&lt;/h4&gt;

&lt;p&gt;Claude Fable 5 is built as Anthropic’s flagship proprietary reasoning model. While Anthropic has not publicly disclosed the internal architecture or parameter count, the model incorporates adaptive reasoning techniques that dynamically adjust computational effort based on the complexity of a request.&lt;/p&gt;

&lt;p&gt;This design enables Claude Fable 5 to excel at tasks requiring deep analysis, multi-step planning, complex software engineering, and extended reasoning while maintaining strong reliability across enterprise workloads.&lt;/p&gt;

&lt;h4&gt;
  
  
  Kimi K3: Large-Scale Mixture-of-Experts
&lt;/h4&gt;

&lt;p&gt;Kimi K3 adopts a Mixture-of-Experts (MoE) architecture, where only a subset of specialized expert networks is activated for each request instead of executing the entire model.&lt;/p&gt;

&lt;p&gt;This approach provides several advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Greater overall model capacity&lt;/li&gt;
&lt;li&gt;Lower computational cost during inference&lt;/li&gt;
&lt;li&gt;Improved scalability&lt;/li&gt;
&lt;li&gt;Better efficiency for long-context processing&lt;/li&gt;
&lt;li&gt;More cost-effective deployment at scale&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The combination of a massive parameter count, selective expert activation, and open-weight availability positions Kimi K3 as one of the most ambitious open AI models released to date.&lt;/p&gt;

&lt;h4&gt;
  
  
  Artificial Analysis Intelligence Rankings
&lt;/h4&gt;

&lt;p&gt;Artificial Analysis is one of the most widely referenced independent AI evaluation platforms. Instead of measuring performance on a single benchmark, it combines results from numerous reasoning, coding, mathematics, knowledge, and agentic evaluations into an overall &lt;strong&gt;Intelligence Index&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This score provides a high-level indication of a model’s general capability rather than its performance on one specific task.&lt;/p&gt;

&lt;p&gt;At the time of writing, Claude Fable 5 remains one of the highest-ranked frontier models, while Kimi K3 has quickly established itself among the strongest open-weight alternatives.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | Intelligence Index | Global Rank |
| -------------- | -----------------: | ----------: |
| Claude Fable 5 | 60 | 1 |
| Kimi K3 | 57 | 4 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The three-point difference may appear small, but at the frontier level even minor improvements represent meaningful gains across many difficult reasoning tasks.&lt;/p&gt;

&lt;p&gt;Unlike previous open models that often trailed significantly behind proprietary systems, Kimi K3 closes much of the gap. This makes it one of the first open-weight models capable of competing with premium commercial offerings across a broad range of evaluations.&lt;/p&gt;

&lt;p&gt;Nevertheless, Claude Fable 5 continues to demonstrate slightly stronger overall reasoning performance, particularly on tasks requiring extended planning, logical deduction, and complex software engineering.&lt;/p&gt;

&lt;h4&gt;
  
  
  Coding Performance Rankings
&lt;/h4&gt;

&lt;p&gt;General intelligence tells only part of the story. Developers care more about how well a model writes, understands, debugs, and refactors code.&lt;/p&gt;

&lt;p&gt;Artificial Analysis publishes a dedicated coding score derived from multiple software engineering benchmarks.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | Coding Score |
| -------------- | ----------- |
| Claude Fable 5 | 77 |
| Kimi K3 | 76 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The one-point difference illustrates how closely matched these models have become.&lt;/p&gt;

&lt;p&gt;For everyday programming tasks — including generating functions, debugging applications, explaining code, and implementing features — both models operate at a very similar capability level.&lt;/p&gt;

&lt;p&gt;However, benchmark scores alone don’t reveal &lt;em&gt;where&lt;/em&gt; each model performs better. Some evaluations reward deep reasoning, while others emphasize repository navigation, terminal interaction, or autonomous software engineering.&lt;/p&gt;

&lt;p&gt;To understand those differences, we need to examine individual coding benchmarks.&lt;/p&gt;

&lt;h4&gt;
  
  
  DeepSWE: Real Software Engineering
&lt;/h4&gt;

&lt;p&gt;DeepSWE evaluates a model’s ability to solve genuine software engineering issues using real-world repositories. Instead of generating isolated code snippets, models must understand an existing project, identify defects, modify relevant files, and produce working solutions.&lt;/p&gt;

&lt;p&gt;This benchmark closely resembles the tasks developers perform every day.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | DeepSWE |
| -------------- | ------- |
| Claude Fable 5 | 70.0 |
| Kimi K3 | 67.5 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Claude Fable 5 leads by a noticeable margin.&lt;/p&gt;

&lt;p&gt;The result suggests that Anthropic’s model remains particularly strong at understanding large codebases, tracing dependencies, and producing accurate modifications without introducing regressions.&lt;/p&gt;

&lt;p&gt;For enterprise development involving large production repositories, DeepSWE remains one of the strongest indicators of practical coding ability.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Takeaway:&lt;/strong&gt; Claude Fable 5 currently holds the advantage for complex repository-level software engineering.&lt;/p&gt;

&lt;h4&gt;
  
  
  ProgramBench
&lt;/h4&gt;

&lt;p&gt;ProgramBench focuses on programming correctness rather than repository reasoning.&lt;/p&gt;

&lt;p&gt;Models are evaluated on their ability to generate executable code that satisfies functional requirements across multiple programming languages and problem domains.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | ProgramBench |
| -------------- | ----------- |
| Kimi K3 | 77.8 |
| Claude Fable 5 | 76.8 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here, Kimi K3 takes a slight lead.&lt;/p&gt;

&lt;p&gt;Although the difference is relatively small, it demonstrates that Kimi K3 can generate highly accurate code solutions across diverse programming tasks.&lt;/p&gt;

&lt;p&gt;For developers using AI primarily as a coding assistant, ProgramBench indicates that Kimi K3 performs at essentially the same level as Claude Fable 5.&lt;/p&gt;

&lt;h4&gt;
  
  
  FrontierSWE
&lt;/h4&gt;

&lt;p&gt;FrontierSWE raises the difficulty further by evaluating software engineering tasks that require broader reasoning across complex repositories.&lt;/p&gt;

&lt;p&gt;Unlike smaller programming benchmarks, FrontierSWE rewards planning, architectural understanding, dependency analysis, and long-term reasoning.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | FrontierSWE |
| -------------- | ---------- |
| Claude Fable 5 | 86.6 |
| Kimi K3 | 81.2 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Claude Fable 5 shows a clear advantage.&lt;/p&gt;

&lt;p&gt;The larger gap suggests that Anthropic’s adaptive reasoning system remains particularly effective when solving challenging engineering problems involving multiple files and complex project structures.&lt;/p&gt;

&lt;p&gt;Organizations maintaining large production systems are likely to benefit more from Claude Fable 5’s stronger architectural reasoning.&lt;/p&gt;

&lt;h4&gt;
  
  
  Terminal-Bench 2.1
&lt;/h4&gt;

&lt;p&gt;Modern AI coding assistants increasingly operate inside terminals rather than simple chat interfaces.&lt;/p&gt;

&lt;p&gt;Terminal-Bench measures how effectively a model interacts with command-line tools, shells, package managers, compilers, and development environments while completing programming tasks.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | Terminal-Bench 2.1 |
| -------------- | ------------------ |
| Kimi K3 | 88.3 |
| Claude Fable 5 | 84.6 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;Some independent evaluations report slightly different scores for Claude Fable 5 depending on testing methodology.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Unlike static code generation benchmarks, Terminal-Bench rewards autonomous tool usage, iterative debugging, and command execution.&lt;/p&gt;

&lt;p&gt;Kimi K3 performs particularly well in this environment, making it attractive for developers building AI coding agents capable of working directly inside development environments.&lt;/p&gt;

&lt;h4&gt;
  
  
  SWE Marathon
&lt;/h4&gt;

&lt;p&gt;SWE Marathon measures a model’s ability to sustain performance across long-running software engineering sessions rather than isolated coding prompts.&lt;/p&gt;

&lt;p&gt;Models must maintain context, solve multiple related tasks, and continue making progress over extended workflows.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | SWE Marathon |
| -------------- | ----------- |
| Kimi K3 | 42.0 |
| Claude Fable 5 | 35.0 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Kimi K3 demonstrates stronger consistency during prolonged engineering sessions.&lt;/p&gt;

&lt;p&gt;This makes it particularly interesting for autonomous coding agents expected to execute long sequences of development tasks with minimal human intervention.&lt;/p&gt;

&lt;h4&gt;
  
  
  Overall Coding Benchmark Summary
&lt;/h4&gt;

&lt;p&gt;Across the major software engineering evaluations, neither model dominates every category.&lt;/p&gt;

&lt;p&gt;Instead, they excel in different areas.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Benchmark | Better Performing Model |
| ------------------ | ----------------------- |
| DeepSWE | Claude Fable 5 |
| FrontierSWE | Claude Fable 5 |
| ProgramBench | Kimi K3 |
| Terminal-Bench 2.1 | Kimi K3 |
| SWE Marathon | Kimi K3 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The results reveal a clear pattern.&lt;/p&gt;

&lt;p&gt;Claude Fable 5 continues to perform exceptionally well on benchmarks emphasizing deep reasoning, repository understanding, and architectural software engineering.&lt;/p&gt;

&lt;p&gt;Kimi K3, meanwhile, performs strongly on evaluations involving terminal interaction, sustained development workflows, and autonomous coding agents.&lt;/p&gt;

&lt;p&gt;Rather than identifying an absolute winner, these benchmarks suggest that the better model depends on the type of software engineering workflow being performed.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fksnaw4ka13n6dqeuxba9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fksnaw4ka13n6dqeuxba9.png" width="800" height="399"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Real-World Performance, Playground Testing, Speed, and Developer Experience
&lt;/h3&gt;

&lt;p&gt;Benchmarks provide a useful starting point for comparing AI models, but they don’t always reflect how developers use these systems in practice. Building software rarely involves solving isolated programming problems. Instead, developers spend their time debugging existing applications, reviewing pull requests, understanding unfamiliar repositories, writing documentation, interacting with terminals, and coordinating multiple tools throughout the development lifecycle.&lt;/p&gt;

&lt;p&gt;These real-world workflows place different demands on an AI model than traditional benchmark suites. Response speed, consistency, context handling, tool use, and reasoning quality often have a greater impact on productivity than a small difference in leaderboard scores.&lt;/p&gt;

&lt;p&gt;In this section, we’ll move beyond benchmark numbers and examine how Claude Fable 5 and Kimi K3 compare in practical software engineering scenarios. We’ll also include hands-on playground testing that you can reproduce yourself using identical prompts.&lt;/p&gt;

&lt;h4&gt;
  
  
  Playground Testing Methodology
&lt;/h4&gt;

&lt;p&gt;To evaluate both models fairly, we recommend using identical prompts, default model settings (unless otherwise specified), and independent conversations for each task. Running both models under similar conditions reduces bias and makes it easier to compare their responses.&lt;/p&gt;

&lt;p&gt;For each prompt, evaluate the following criteria:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Accuracy of the final answer&lt;/li&gt;
&lt;li&gt;Code correctness&lt;/li&gt;
&lt;li&gt;Completeness of the implementation&lt;/li&gt;
&lt;li&gt;Explanation quality&lt;/li&gt;
&lt;li&gt;Response structure&lt;/li&gt;
&lt;li&gt;Reasoning depth&lt;/li&gt;
&lt;li&gt;Time to generate a response&lt;/li&gt;
&lt;li&gt;Token usage (if available)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Unlike benchmark leaderboards, these tests simulate the types of tasks developers encounter every day.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Editor’s Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;The examples below are designed as reproducible tests. We recommend capturing screenshots of both model outputs and including them alongside your observations to provide readers with transparent, real-world comparisons.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Test 1 — Production Architecture
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Design a production-ready multi-tenant SaaS CRM for 10M users.

Stack:
Next.js 15, FastAPI, PostgreSQL, Redis, Docker, Kubernetes.

Include:
- Folder structure
- Database schema
- JWT auth
- RBAC
- REST APIs
- CI/CD
- Security
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Winner:&lt;/strong&gt; Better architecture, security, completeness.&lt;/p&gt;

&lt;h4&gt;
  
  
  Evaluation Criteria
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Evaluation Criteria | Weight |
| ----------------------- | --------- |
| Architecture Quality | 20% |
| Security | 20% |
| Scalability | 20% |
| Completeness | 20% |
| Production Readiness | 20% |
| Total | 100% |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Claude Fable 5 Output
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffpzd9c2tjx92ip4wnds5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffpzd9c2tjx92ip4wnds5.png" width="800" height="732"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For the first real-world test, we asked Claude Fable 5 to design a &lt;strong&gt;production-ready multi-tenant SaaS CRM&lt;/strong&gt; capable of supporting &lt;strong&gt;10 million users&lt;/strong&gt; using Next.js, FastAPI, PostgreSQL, Redis, Docker, and Kubernetes. The prompt also required the model to cover folder structure, database schema, authentication, RBAC, REST APIs, CI/CD, and security best practices.&lt;/p&gt;

&lt;p&gt;Claude Fable 5 responded with a structured architecture overview that addressed each requested component. The response began with a clean project directory layout separating the frontend, backend, deployment configuration, scripts, and documentation. It then proposed a basic multi-tenant database schema using PostgreSQL with separate tenants, users, and contacts tables before outlining JWT-based authentication, role-based access control, REST API examples, CI/CD automation using GitHub Actions, and a Kubernetes deployment manifest.&lt;/p&gt;

&lt;p&gt;Overall, the response was well organized and easy to follow, making it suitable as a high-level architectural blueprint for developers getting started with a SaaS CRM project.&lt;/p&gt;

&lt;h4&gt;
  
  
  Strengths
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Well-structured response with clear sectioning.&lt;/li&gt;
&lt;li&gt;Covers all major areas requested in the prompt, including authentication, RBAC, REST APIs, CI/CD, and deployment.&lt;/li&gt;
&lt;li&gt;Provides practical code snippets for FastAPI routes, GitHub Actions, and Kubernetes manifests.&lt;/li&gt;
&lt;li&gt;Uses widely adopted technologies and security recommendations such as Argon2/bcrypt, JWT authentication, HTTPS, and secret management.&lt;/li&gt;
&lt;li&gt;Easy to understand, making it accessible for developers who want an architectural overview before implementation.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Limitations
&lt;/h4&gt;

&lt;p&gt;Although the response covers the requested topics, it remains relatively high-level for a system expected to support &lt;strong&gt;10 million users&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Some advanced production considerations are either missing or only briefly mentioned, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No discussion of database partitioning or sharding strategies for very large datasets.&lt;/li&gt;
&lt;li&gt;Limited multi-tenant isolation beyond a simple tenant_id column; techniques such as PostgreSQL Row-Level Security (RLS) are not discussed.&lt;/li&gt;
&lt;li&gt;JWT authentication is included, but refresh token rotation, session management, key rotation, and secure cookie strategies are absent.&lt;/li&gt;
&lt;li&gt;Kubernetes guidance is limited to a basic deployment manifest and does not include autoscaling, rolling deployments, PodDisruptionBudgets, NetworkPolicies, or migration jobs.&lt;/li&gt;
&lt;li&gt;CI/CD covers image build and deployment but omits automated testing, security scanning, SBOM generation, image signing, and progressive deployment strategies.&lt;/li&gt;
&lt;li&gt;Observability is not addressed, with no mention of metrics, distributed tracing, centralized logging, or monitoring platforms.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Evaluation
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Category | Rating |
| ------------------------- | :----: |
| Architecture Design | ⭐⭐⭐⭐☆ |
| Folder Structure | ⭐⭐⭐⭐⭐ |
| Database Design | ⭐⭐⭐⭐☆ |
| Authentication &amp;amp; Security | ⭐⭐⭐⭐☆ |
| RBAC Design | ⭐⭐⭐⭐☆ |
| API Design | ⭐⭐⭐⭐☆ |
| Kubernetes &amp;amp; DevOps | ⭐⭐⭐⭐☆ |
| Production Readiness | ⭐⭐⭐⭐☆ |
| Documentation Quality | ⭐⭐⭐⭐⭐ |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Overall Score:&lt;/strong&gt;   &lt;strong&gt;8.8/10&lt;/strong&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Our Verdict
&lt;/h4&gt;

&lt;p&gt;Claude Fable 5 produced a solid architectural foundation that successfully addressed every requirement in the prompt while keeping the explanation concise and readable. It performs well as a blueprint for developers planning a modern SaaS application and demonstrates strong knowledge of contemporary web development practices.&lt;/p&gt;

&lt;p&gt;However, for a workload explicitly targeting &lt;strong&gt;10 million users&lt;/strong&gt; , we expected deeper coverage of large-scale distributed systems, advanced security mechanisms, database scaling strategies, observability, and production operations. The response favors clarity over implementation depth, making it an excellent architectural overview rather than a comprehensive enterprise design.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7zjd5w6okyiolj5ckuec.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7zjd5w6okyiolj5ckuec.png" width="800" height="789"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Kimi K3 Output
&lt;/h4&gt;

&lt;p&gt;Unlike Claude Fable 5, we were not able to run this architecture prompt directly on Kimi K3 during our testing because a freely accessible playground with sufficient usage limits was not available at the time of writing. Instead, we reviewed Moonshot AI’s official documentation, publicly available demonstrations, and independent evaluations to understand how Kimi K3 approaches large-scale software engineering tasks.&lt;/p&gt;

&lt;p&gt;Based on the available examples, Kimi K3 demonstrates strong architectural reasoning and produces well-structured responses for production software projects. Public demonstrations show the model generating organized project layouts, API structures, authentication flows, database schemas, Kubernetes deployment manifests, and CI/CD workflows similar to other frontier coding models.&lt;/p&gt;

&lt;p&gt;The model appears particularly strong at repository-level planning and implementation-oriented responses. Rather than providing extensive explanations, Kimi K3 generally focuses on delivering concise architectural designs with practical code examples that developers can build upon.&lt;/p&gt;

&lt;h4&gt;
  
  
  Strengths
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Produces clean and organized project structures.&lt;/li&gt;
&lt;li&gt;Demonstrates strong software engineering knowledge across modern frameworks.&lt;/li&gt;
&lt;li&gt;Covers essential backend components such as authentication, REST APIs, RBAC, and deployment.&lt;/li&gt;
&lt;li&gt;Well-suited for implementation-focused coding workflows.&lt;/li&gt;
&lt;li&gt;Strong benchmark performance in software engineering evaluations such as ProgramBench, Terminal-Bench 2.1, and SWE Marathon.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Limitations
&lt;/h4&gt;

&lt;p&gt;Since we were unable to execute this specific prompt directly, we cannot independently verify how Kimi K3 compares with Claude Fable 5 for this exact architecture design task.&lt;/p&gt;

&lt;p&gt;Additionally, publicly available examples indicate several considerations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Most architectural demonstrations remain relatively concise compared with highly detailed enterprise design documents.&lt;/li&gt;
&lt;li&gt;Independent reviewers have noted that some benchmark claims are still awaiting broader third-party verification.&lt;/li&gt;
&lt;li&gt;At launch, the model was primarily available through API providers, making comprehensive hands-on evaluation less accessible.&lt;/li&gt;
&lt;li&gt;Organizations requiring self-hosting were still waiting for the promised open-weight release.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Evaluation (Based on Public Information)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Category | Assessment |
| ------------------------- | :--------: |
| Architecture Design | ⭐⭐⭐⭐☆ |
| Folder Structure | ⭐⭐⭐⭐☆ |
| Database Design | ⭐⭐⭐⭐☆ |
| Authentication &amp;amp; Security | ⭐⭐⭐⭐☆ |
| API Design | ⭐⭐⭐⭐☆ |
| Kubernetes &amp;amp; DevOps | ⭐⭐⭐⭐☆ |
| Production Readiness | ⭐⭐⭐⭐☆ |
| Documentation Quality | ⭐⭐⭐⭐☆ |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Observations
&lt;/h4&gt;

&lt;p&gt;Available public examples suggest that Kimi K3 is capable of producing production-oriented software architecture with good engineering practices while maintaining concise responses. Combined with its strong performance on coding and agentic benchmarks, it appears to be a capable model for software development tasks.&lt;/p&gt;

&lt;p&gt;However, because we were not able to execute this prompt ourselves, we cannot make a direct, evidence-based comparison against Claude Fable 5 for this particular test. Future updates to this article will include a hands-on comparison once unrestricted access to Kimi K3 is available.&lt;/p&gt;

&lt;h3&gt;
  
  
  Real-World Testing: Key Takeaways
&lt;/h3&gt;

&lt;p&gt;After evaluating the architecture generation capabilities and comparing them with publicly available benchmark results, several patterns become clear.&lt;/p&gt;

&lt;p&gt;Claude Fable 5 excels at producing well-structured, detailed, and enterprise-focused architectural designs. Its responses emphasize clarity, maintainability, and production best practices, making it an excellent choice for large software projects where architectural correctness is critical.&lt;/p&gt;

&lt;p&gt;Kimi K3, meanwhile, has established itself as one of the strongest open-weight coding models available today. Independent benchmarks show it performing exceptionally well on terminal-driven development, autonomous coding workflows, and long-running software engineering tasks. Although we were unable to execute identical prompts against Kimi K3 during this review, the available benchmark data and public demonstrations indicate that it is highly competitive with frontier proprietary models.&lt;/p&gt;

&lt;p&gt;Ultimately, benchmark scores should not be viewed in isolation. The best model depends on the type of development work being performed, budget constraints, deployment requirements, and whether open-weight availability is an important factor.&lt;/p&gt;

&lt;h4&gt;
  
  
  Claude Fable 5 vs Kimi K3: Which Should You Choose?
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| If you want... | Choose |
| --------------------------------- | -------------- |
| Best overall reasoning | Claude Fable 5 |
| Large-scale software architecture | Claude Fable 5 |
| Enterprise AI development | Claude Fable 5 |
| Repository-level coding | Claude Fable 5 |
| Lower API costs | Kimi K3 |
| Open-weight deployment | Kimi K3 |
| Terminal-based AI agents | Kimi K3 |
| Long-running coding workflows | Kimi K3 |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Final Verdict
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Claude Fable 5 and Kimi K3 represent two different philosophies for frontier AI development. Claude Fable 5 remains one of the strongest proprietary reasoning models, delivering excellent performance across architecture design, software engineering, and complex reasoning tasks. Kimi K3, on the other hand, demonstrates how far open-weight models have progressed, offering competitive coding performance, strong agentic capabilities, and significantly lower API pricing.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;If your priority is maximum reasoning capability, enterprise reliability, and mature tooling, Claude Fable 5 remains the safer choice. If lower inference costs, open-weight deployment, and strong coding performance are more important, Kimi K3 is one of the most compelling alternatives currently available.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The gap between proprietary and open-weight models is now much smaller than it was even a year ago. Rather than replacing frontier proprietary models outright, Kimi K3 shows that open-weight systems are becoming viable options for production software engineering, AI agents, and large-scale developer workflows.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>llm</category>
      <category>claudefable5</category>
      <category>anthropicclaude</category>
      <category>kimik3</category>
    </item>
    <item>
      <title>TechLatest AI &amp; Tech Weekly #25</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Sat, 18 Jul 2026 14:41:14 +0000</pubDate>
      <link>https://dev.to/techlatestnet/techlatest-ai-tech-weekly-25-gei</link>
      <guid>https://dev.to/techlatestnet/techlatest-ai-tech-weekly-25-gei</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Foza0x69fgwzxj3qpyyta.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Foza0x69fgwzxj3qpyyta.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Welcome to this week’s edition of &lt;strong&gt;TechLatest AI &amp;amp; Tech Weekly&lt;/strong&gt;  👋&lt;/p&gt;

&lt;p&gt;Here’s a curated roundup of our latest blogs, notable product launches, and the most interesting AI &amp;amp; ML updates from July 13–July 18, 2026.&lt;/p&gt;

&lt;h3&gt;
  
  
  AI/ML News Roundup: July 13–July 18, 2026
&lt;/h3&gt;

&lt;p&gt;Key highlights from this week’s AI developments include frontier model advancements with agentic capabilities, massive funding rounds reshaping valuations, and practical product launches for developers and enterprises. These updates emphasize autonomous agents, infrastructure scaling, and open-weight benchmarks relevant to builders and researchers.&lt;/p&gt;

&lt;h3&gt;
  
  
  TL;DR
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Open-source AI had a breakout week&lt;/strong&gt; , with major releases including &lt;a href="https://platform.kimi.ai/docs/guide/kimi-k3-quickstart" rel="noopener noreferrer"&gt;&lt;strong&gt;Kimi K3&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://thinkingmachines.ai/news/introducing-inkling/" rel="noopener noreferrer"&gt;&lt;strong&gt;Inkling&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://grok.com/build" rel="noopener noreferrer"&gt;&lt;strong&gt;Grok Build&lt;/strong&gt;&lt;/a&gt;, &lt;strong&gt;Blume&lt;/strong&gt; , &lt;a href="https://build.nvidia.com/nvidia/nemotron-3-embed-1b/modelcard" rel="noopener noreferrer"&gt;&lt;strong&gt;Nemotron-3 Embed&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://dev.to/sam_hiotis_117598dbfa3ac2/soofi-consortium-releases-soofi-s-30b-a3b-an-open-hybrid-mamba-transformer-moe-foundation-model-4amo-temp-slug-4846442"&gt;&lt;strong&gt;Soofi-S 30B-A3B&lt;/strong&gt;&lt;/a&gt;, and &lt;a href="https://github.com/GoogleCloudPlatform/generative-ai/tree/main/gemini/agents/always-on-memory-agent" rel="noopener noreferrer"&gt;&lt;strong&gt;Google’s Always-On Memory Agent&lt;/strong&gt;&lt;/a&gt;, driving advances in coding, retrieval, documentation, and AI agents.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontier AI models continued to evolve&lt;/strong&gt; , with &lt;strong&gt;GPT-5.6&lt;/strong&gt; , &lt;strong&gt;Meta Muse Spark 1.1&lt;/strong&gt; , &lt;strong&gt;GPT-Live&lt;/strong&gt; , and &lt;strong&gt;Gemini 3.5 Pro&lt;/strong&gt; (expected launch) pushing reasoning, voice AI, multimodal capabilities, and enterprise agent workflows.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI investment reached new highs&lt;/strong&gt; , led by &lt;strong&gt;South Korea’s $880B national AI plan&lt;/strong&gt; , Anthropic’s potential &lt;strong&gt;$1T IPO&lt;/strong&gt; , &lt;strong&gt;Thinking Machines ($2B)&lt;/strong&gt;, &lt;strong&gt;Fireworks AI ($1.5B)&lt;/strong&gt;, &lt;strong&gt;Meta’s $50B infrastructure expansion&lt;/strong&gt; , and multiple billion-dollar startup funding rounds.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enterprise AI adoption accelerated&lt;/strong&gt; , with Meta, NVIDIA, Cloudflare, and OpenAI launching new platforms, AI agents, cloud infrastructure, and developer tools for production deployments.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI governance and regulation intensified&lt;/strong&gt; , with new AI safety benchmarks, EU pre-market AI testing, copyright litigation, and growing global scrutiny of frontier AI models.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TechLatest published three hands-on guides&lt;/strong&gt; , covering &lt;a href="https://medium.com/@techlatest.net/hackagent-tutorial-secure-ai-agents-against-prompt-injection-jailbreaks-and-tool-misuse-98b1e8e7c1bc?sharedUserId=techlatest.net" rel="noopener noreferrer"&gt;&lt;strong&gt;HackAgent&lt;/strong&gt;&lt;/a&gt; for securing AI agents, &lt;a href="https://medium.com/@techlatest.net/grok-build-tutorial-install-configure-and-master-xais-open-source-ai-coding-agent-bffcfd655525?sharedUserId=techlatest.net" rel="noopener noreferrer"&gt;&lt;strong&gt;Grok Build&lt;/strong&gt;&lt;/a&gt; for mastering xAI’s open-source coding agent, and a complete comparison of &lt;a href="https://medium.com/@techlatest.net/gpt-5-6-models-explained-sol-vs-terra-vs-luna-pro-models-features-which-one-should-you-choose-6693668917f7?sharedUserId=techlatest.net" rel="noopener noreferrer"&gt;&lt;strong&gt;GPT-5.6 Sol, Terra, and Luna&lt;/strong&gt;&lt;/a&gt; to help developers choose the right model for their workloads.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Open-Source AI, AI Agents, Voice AI &amp;amp; Developer Releases
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Thinking Machines Lab Releases Inkling
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Thinking Machines Lab&lt;/strong&gt; unveiled &lt;strong&gt;Inkling&lt;/strong&gt; , a &lt;strong&gt;975B-parameter multimodal Mixture-of-Experts&lt;/strong&gt; model with &lt;strong&gt;41B active parameters&lt;/strong&gt; , introducing controllable thinking effort for balancing reasoning quality and inference cost. &lt;a href="https://thinkingmachines.ai/news/introducing-inkling/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  NVIDIA Releases Nemotron-3 Embed
&lt;/h4&gt;

&lt;p&gt;NVIDIA introduced &lt;strong&gt;Nemotron-3 Embed&lt;/strong&gt; , an open embedding model collection whose &lt;strong&gt;8B checkpoint&lt;/strong&gt; ranks &lt;strong&gt;#1 on the RTEB benchmark&lt;/strong&gt; , delivering state-of-the-art retrieval and semantic search performance. &lt;a href="https://build.nvidia.com/nvidia/nemotron-3-embed-1b/modelcard" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Zyphra Releases Zuna1.1
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Zyphra&lt;/strong&gt; unveiled &lt;strong&gt;Zuna1.1&lt;/strong&gt; , an &lt;strong&gt;Apache 2.0 EEG foundation model&lt;/strong&gt; that supports variable-length brain signal inputs ranging from &lt;strong&gt;0.5 to 30 seconds&lt;/strong&gt; , enabling more flexible neuroscience and BCI research. &lt;a href="https://www.zyphra.com/our-work/zuna1.1" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Soofi-S 30B-A3B Released
&lt;/h4&gt;

&lt;p&gt;The &lt;strong&gt;Soofi Consortium&lt;/strong&gt; introduced &lt;strong&gt;Soofi-S 30B-A3B&lt;/strong&gt; , an open hybrid &lt;strong&gt;Mamba-Transformer MoE&lt;/strong&gt; foundation model optimized for &lt;strong&gt;German and English&lt;/strong&gt; , delivering efficient multilingual reasoning with Apache 2.0 licensing. &lt;a href="https://dev.to/sam_hiotis_117598dbfa3ac2/soofi-consortium-releases-soofi-s-30b-a3b-an-open-hybrid-mamba-transformer-moe-foundation-model-4amo-temp-slug-4846442"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Meet Blume
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Blume&lt;/strong&gt; is an open-source, zero-configuration documentation framework that transforms a simple Markdown folder into a modern, AI-ready documentation website. Designed for developers, it automatically generates searchable docs with minimal setup. &lt;a href="https://github.com/haydenbleasel/blume" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  SpaceXAI Open-Sources Grok Build
&lt;/h4&gt;

&lt;p&gt;SpaceXAI open-sourced &lt;strong&gt;Grok Build&lt;/strong&gt; , the Rust-based agent framework behind its coding CLI. The project includes the &lt;strong&gt;agent runtime, TUI, tool layer, and workspace orchestration&lt;/strong&gt; , enabling developers to build and customize AI coding agents. &lt;a href="https://thenewstack.io/musk-spacexai-grok-open-source/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Google Cloud Introduces Always-On Memory Agent
&lt;/h4&gt;

&lt;p&gt;Google Cloud introduced the &lt;strong&gt;Always-On Memory Agent&lt;/strong&gt; , a new memory architecture that continuously consolidates knowledge using &lt;strong&gt;Gemini 3.1 Flash Lite&lt;/strong&gt; , reducing reliance on traditional &lt;strong&gt;RAG pipelines and vector embeddings&lt;/strong&gt;. &lt;a href="https://dev.to/sam_hiotis_117598dbfa3ac2/google-clouds-always-on-memory-agent-replaces-rag-and-embeddings-with-continuous-llm-consolidation-2541-temp-slug-3244868"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Gemini 3.5 Pro Expected to Launch
&lt;/h4&gt;

&lt;p&gt;Google is expected to launch &lt;strong&gt;Gemini 3.5 Pro&lt;/strong&gt; after rebuilding the model from scratch to improve recursive tool calling and long-context reasoning. &lt;a href="https://www.searchenginejournal.com/gemini-3-5-pro-delayed-over-coding-bloomberg-reports/582660/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Moonshot AI Releases Kimi K3
&lt;/h4&gt;

&lt;p&gt;Moonshot AI introduced &lt;strong&gt;Kimi K3&lt;/strong&gt; , a &lt;strong&gt;2.8-trillion-parameter&lt;/strong&gt; open-weight Mixture-of-Experts model, making it one of the largest open AI models ever released. &lt;a href="https://platform.kimi.ai/docs/guide/kimi-k3-quickstart" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  NotebookLM Becomes Gemini Notebook
&lt;/h4&gt;

&lt;p&gt;Google rebranded &lt;strong&gt;NotebookLM&lt;/strong&gt; as &lt;strong&gt;Gemini Notebook&lt;/strong&gt; , adding cloud-based code execution and tighter Gemini integration. &lt;a href="https://blog.google/innovation-and-ai/products/gemini-notebook/notebooklm-gemini-notebook/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  DeepSeek V4 Stable Release Nears
&lt;/h4&gt;

&lt;p&gt;DeepSeek announced that the stable version of &lt;strong&gt;DeepSeek V4&lt;/strong&gt; is approaching release. &lt;a href="https://turiloop.com/blog/deepseek-v4-stable-release-what-we-know" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Kimi K3 Tops Coding Benchmarks
&lt;/h4&gt;

&lt;p&gt;Moonshot AI’s &lt;strong&gt;Kimi K3&lt;/strong&gt; quickly became the top-ranked model on coding leaderboards, strengthening the position of open-weight AI models. &lt;a href="https://openrouter.ai/moonshotai/kimi-k3#uptime" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Suno Data Breach Reveals Training Methods
&lt;/h4&gt;

&lt;p&gt;A security breach at &lt;strong&gt;Suno&lt;/strong&gt; exposed source code and details about AI music training datasets. &lt;a href="https://www.cnet.com/tech/services-and-software/suno-ai-music-source-code-hack-training-news/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Google Expands AI Mode in Search
&lt;/h4&gt;

&lt;p&gt;Google expanded &lt;strong&gt;AI Mode&lt;/strong&gt; with integrations across services like Instacart, Canva, and YouTube Music. &lt;a href="https://blog.google/products-and-platforms/products/search/connected-apps/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Open-Weight AI Gains Momentum
&lt;/h4&gt;

&lt;p&gt;The week’s biggest trend was the rapid rise of &lt;strong&gt;open-weight AI models&lt;/strong&gt; , with Kimi K3, Inkling, and DeepSeek challenging proprietary frontier models.&lt;/p&gt;

&lt;h3&gt;
  
  
  Frontier Model Launches &amp;amp; Agentic Capabilities
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI launched the GPT-5.6 family&lt;/strong&gt; (Sol, Terra, Luna) on July 13, 2026 — the first major AI model release after full US government approval, with models now integrated into Microsoft 365 Copilot products like Word and Excel.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI released GPT-Live&lt;/strong&gt; on July 13, 2026, a full-duplex voice AI that listens, speaks, and reasons simultaneously instead of taking turns, enabling real-time translation and live web search mid-conversation without awkward pauses.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Meta released Muse Spark 1.1&lt;/strong&gt; on July 13, 2026, a purpose-built model for autonomous agents and software development, capable of coordinating multiple sub-agents and running extended multi-step tasks at competitive pricing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google and Microsoft backed a rival agent protocol&lt;/strong&gt; on July 13, 2026, with Google, Microsoft, Salesforce, Snowflake, and ServiceNow agreeing to support a shared AI backend-software protocol explicitly framed as beating back Anthropic and OpenAI in the enterprise.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic launched Claude Corps&lt;/strong&gt; on July 13, 2026, a paid 12-month fellowship training early-career professionals as AI professionals inside nonprofit organizations, with no degree required and broad eligibility for applicants with up to two years of work experience.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic expanded Project Glasswing&lt;/strong&gt; on July 13, 2026, from 50 to 150 organizations across 15 countries, deploying Claude Mythos to find and fix vulnerabilities in critical infrastructure, including utilities, hospitals, and financial systems.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Massive Funding &amp;amp; Valuations
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;South Korea committed $880 billion to AI&lt;/strong&gt; over the next decade on July 15, 2026, with President Lee Jae-myung unveiling a 1,350 trillion won plan including $518 billion for memory chip manufacturing, $550 billion for AI data centers, and a target of 8.4 gigawatts of data center capacity by 2029.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Helsing raised €1.8 billion&lt;/strong&gt; at an €18 billion valuation on July 15, 2026, cementing its status as Europe’s most valuable defense-tech startup and one of the largest AI funding rounds of the year outside the US frontier labs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Blackstone, Apollo, and KKR backed a $5.34 billion data-center power deal&lt;/strong&gt; on July 15, 2026, providing funding for behind-the-meter power generation to solve the electricity bottleneck throttling AI expansion.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;QuantumDiamonds and Qolab raised funding&lt;/strong&gt; on July 15, 2026 — QuantumDiamonds €91 million for quantum chip inspection and Qolab $54.2 million for superconducting quantum processors, targeting the quantum-AI intersection.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;US startups raised $412.7 billion&lt;/strong&gt; in the first half of 2026, with 86% ($355.9 billion) going to AI companies — the most extreme concentration the venture industry has ever recorded.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic&lt;/strong&gt; confidentially filed for an IPO that could value the company at &lt;strong&gt;over $1 trillion&lt;/strong&gt; , reflecting strong enterprise AI growth.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic&lt;/strong&gt; is reportedly in talks with &lt;strong&gt;Meta&lt;/strong&gt; for a &lt;strong&gt;$10 billion AI compute partnership&lt;/strong&gt; to secure additional infrastructure capacity.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Thinking Machines&lt;/strong&gt; (Mira Murati) reportedly raised a &lt;strong&gt;$2 billion seed round&lt;/strong&gt; while launching its open-weight &lt;strong&gt;Inkling&lt;/strong&gt;  model.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DeepSeek&lt;/strong&gt; is seeking to raise funding at a &lt;strong&gt;$74 billion valuation&lt;/strong&gt; , preparing for a future Shanghai IPO.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fireworks AI&lt;/strong&gt; raised &lt;strong&gt;$1.5 billion&lt;/strong&gt; at a &lt;strong&gt;$17.5 billion valuation&lt;/strong&gt; to expand AI inference infrastructure.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Meta&lt;/strong&gt; committed &lt;strong&gt;$50 billion&lt;/strong&gt; toward a Louisiana AI data center project, with long-term infrastructure investment expected to exceed &lt;strong&gt;$250 billion&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Neko Health&lt;/strong&gt; raised &lt;strong&gt;$700 million&lt;/strong&gt; in Series C funding at a valuation of approximately &lt;strong&gt;$7 billion&lt;/strong&gt; to expand its AI-powered preventive healthcare platform.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Emergent&lt;/strong&gt; , an Indian AI startup, raised &lt;strong&gt;$130 million&lt;/strong&gt; in Series C funding at a &lt;strong&gt;$1.5 billion valuation&lt;/strong&gt; , becoming a unicorn.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Humanoid Robotics&lt;/strong&gt; attracted major investment:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Humanoid&lt;/strong&gt; raised &lt;strong&gt;$150 million&lt;/strong&gt; at a &lt;strong&gt;$1.2 billion valuation&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Walden Robotics&lt;/strong&gt; raised &lt;strong&gt;$300 million&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Microagi&lt;/strong&gt; secured a &lt;strong&gt;$55 million seed round&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Asian AI venture funding&lt;/strong&gt; reached a &lt;strong&gt;multi-year high&lt;/strong&gt; , signaling continued global investor confidence in AI startups.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Practical Product Launches for Developers &amp;amp; Enterprises
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Meta launched the Meta Business Agent Platform&lt;/strong&gt; globally on July 15, 2026, giving enterprises infrastructure to build, customize, and deploy AI agents at scale, alongside the Meta Compute cloud business selling the company’s excess AI infrastructure to outside customers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NVIDIA and ServiceNow launched Project Arc&lt;/strong&gt; on July 15, 2026, a self-evolving desktop agent built for knowledge workers, running on NVIDIA’s OpenShell secure runtime and powered by NVIDIA accelerated computing with open Nemotron models.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare opened a waitlist for x402 Agent-Payments Gateway&lt;/strong&gt; on July 13, 2026, an infrastructure built on the x402 protocol that lets websites, APIs, datasets, and digital services charge AI agents instantly for access.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPT Image 2 and Aleph 2.0 workflow&lt;/strong&gt; launched July 13, 2026, letting editors modify a single reference frame and have changes propagate across an entire video, collapsing shot-by-shot VFX work into an image edit plus propagation pass.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI’s Deployment Company acquired Northslope&lt;/strong&gt; on July 13, 2026, adding forward-deployed engineering capacity to build AI systems inside customer organizations around their actual operations.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Governance, Ethics &amp;amp; Regulation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The Future of Life Institute released its 2026 AI Safety Index&lt;/strong&gt; on July 15, 2026, with Anthropic scoring highest at C+, OpenAI and Google DeepMind at C, Meta at D+, and xAI, DeepSeek, and Mistral effectively failing the assessment.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The EU announced pre-market AI model testing&lt;/strong&gt; with ENISA on July 15, 2026, planning a secure testing platform for critical sectors by the end of 2026, requiring frontier models to be evaluated for safety and security risks before deployment in sensitive areas.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The New York Times sought sanctions against OpenAI&lt;/strong&gt; on July 15, 2026, alleging the company withheld training-data evidence in the ongoing copyright lawsuit over whether OpenAI illegally used journalism to train its models.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The ECB warned AI could make inflation more volatile&lt;/strong&gt; on July 13, 2026, with a European Central Bank policymaker stating AI adoption could increase inflation volatility, complicating central banks’ ability to steer prices.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Goldman Sachs told clients which Chinese AI models to use&lt;/strong&gt; on July 13, 2026, publishing an analysis recommending specific Chinese AI models to clients, marking a milestone in the normalization of Chinese open-weight models in Western enterprise stacks.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Infrastructure &amp;amp; Hardware
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Intel announced a €5 billion semiconductor expansion in Ireland&lt;/strong&gt; on July 15, 2026, adding to global chip-manufacturing buildout spanning Terafab in Texas, Samsung’s accelerated Korean plants, and TSMC’s record-driven capacity growth.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mews cut 15% of staff&lt;/strong&gt; (170 of 1,350 roles) on July 15, 2026, explicitly attributing the reduction to AI efficiency, saying individuals can now own end-to-end work that previously required teams.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data center backlash grew&lt;/strong&gt; during July 13–18, 2026, with opposition movements against data center expansion spreading across the US as communities push back on power demand, water use, and land footprint of the AI buildout.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Blogs We Published This Week
&lt;/h3&gt;

&lt;h4&gt;
  
  
  HackAgent Tutorial: Secure AI Agents Against Prompt Injection, Jailbreaks &amp;amp; Tool Misuse
&lt;/h4&gt;

&lt;p&gt;A complete guide to &lt;strong&gt;HackAgent&lt;/strong&gt; , covering installation, configuration, and practical techniques to protect AI agents against prompt injection, jailbreak attacks, goal hijacking, and unsafe tool execution. Learn how to test and harden production AI agents with hands-on examples.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/hackagent-tutorial-secure-ai-agents-against-prompt-injection-jailbreaks-and-tool-misuse-588l"&gt;HackAgent Tutorial: Secure AI Agents Against Prompt Injection, Jailbreaks, and Tool Misuse&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Grok Build Tutorial: Install, Configure &amp;amp; Master xAI’s Open-Source AI Coding Agent
&lt;/h4&gt;

&lt;p&gt;A comprehensive tutorial on &lt;strong&gt;Grok Build&lt;/strong&gt; , the open-source Rust-based AI coding agent from xAI. Learn installation, architecture, TUI, tool layer, workspace management, and how to build AI-powered development workflows.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/grok-build-tutorial-install-configure-and-master-xais-open-source-ai-coding-agent-4b4n"&gt;Grok Build Tutorial: Install, Configure, and Master xAI’s Open-Source AI Coding Agent&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Models Explained: Sol vs Terra vs Luna
&lt;/h4&gt;

&lt;p&gt;An in-depth guide comparing the &lt;strong&gt;GPT-5.6&lt;/strong&gt; model family, including &lt;strong&gt;Sol&lt;/strong&gt; , &lt;strong&gt;Terra&lt;/strong&gt; , and &lt;strong&gt;Luna&lt;/strong&gt;. Understand their architecture, benchmarks, pricing, context windows, tool-calling capabilities, and which model is best for coding, AI agents, reasoning, and enterprise workloads.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/gpt-56-models-explained-sol-vs-terra-vs-luna-pro-models-features-which-one-should-you-choose-1fp-temp-slug-2031706"&gt;GPT-5.6 Models Explained: Sol vs Terra vs Luna, Pro Models, Features &amp;amp; Which One Should You Choose?&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>newsletter</category>
      <category>technews</category>
      <category>news</category>
      <category>weeklynewsletter</category>
    </item>
    <item>
      <title>GPT-5.6 Models Explained: Sol vs Terra vs Luna, Pro Models, Features &amp; Which One Should You Choose?</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Fri, 17 Jul 2026 10:53:10 +0000</pubDate>
      <link>https://dev.to/techlatestnet/gpt-56-models-explained-sol-vs-terra-vs-luna-pro-models-features-which-one-should-you-choose-3nn5</link>
      <guid>https://dev.to/techlatestnet/gpt-56-models-explained-sol-vs-terra-vs-luna-pro-models-features-which-one-should-you-choose-3nn5</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fn958j2kam94pma9gi1wj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fn958j2kam94pma9gi1wj.png" width="800" height="427"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Learn everything about the GPT-5.6 model family, including Sol, Terra, Luna, Pro variants, benchmarks, pricing, API integration, coding performance, AI agents, and how to choose the right model for your applications.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Introduction
&lt;/h3&gt;

&lt;p&gt;Artificial intelligence models are evolving rapidly, but choosing the right one has become increasingly complex. Earlier GPT releases typically introduced a single flagship model that developers used for nearly every workload. With GPT-5.6, OpenAI has taken a different approach.&lt;/p&gt;

&lt;p&gt;Instead of offering one model for everything, GPT-5.6 introduces a &lt;strong&gt;family of models&lt;/strong&gt; designed for different priorities. Some applications need the highest possible reasoning quality, while others prioritize response speed, operational cost, or the ability to serve millions of users efficiently. Rather than forcing every workload onto the same model, OpenAI now provides multiple capability tiers.&lt;/p&gt;

&lt;p&gt;The GPT-5.6 lineup consists of three primary models:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.6 Sol&lt;/strong&gt;  — the flagship model focused on maximum intelligence and advanced reasoning.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.6 Terra&lt;/strong&gt;  — a balanced model that combines strong capability with lower latency and cost.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.6 Luna&lt;/strong&gt;  — the fastest and most affordable model, optimized for large-scale deployments.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each tier also includes a &lt;strong&gt;Pro&lt;/strong&gt; variant that dedicates additional compute to difficult tasks, enabling deeper reasoning, improved planning, and higher-quality outputs for complex engineering, research, and enterprise workflows.&lt;/p&gt;

&lt;p&gt;This modular strategy gives developers significantly more flexibility than previous GPT generations. Whether you’re building autonomous AI agents, enterprise copilots, customer support platforms, coding assistants, or document automation systems, there’s now a model optimized for your workload instead of relying on a single “one-size-fits-all” solution.&lt;/p&gt;

&lt;p&gt;In this guide, we’ll explore every GPT-5.6 model, compare their capabilities, explain benchmark results, discuss pricing, demonstrate API usage, and help you determine which model best fits your application.&lt;/p&gt;

&lt;h3&gt;
  
  
  What You’ll Learn
&lt;/h3&gt;

&lt;p&gt;By the end of this guide, you’ll understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What GPT-5.6 is and what’s new&lt;/li&gt;
&lt;li&gt;The differences between Sol, Terra, and Luna&lt;/li&gt;
&lt;li&gt;How Pro models differ from standard models&lt;/li&gt;
&lt;li&gt;Which GPT-5.6 model is best for coding, research, and production&lt;/li&gt;
&lt;li&gt;GPT-5.6 benchmark performance&lt;/li&gt;
&lt;li&gt;Pricing and API availability&lt;/li&gt;
&lt;li&gt;How GPT-5.6 improves AI agents and tool calling&lt;/li&gt;
&lt;li&gt;Best practices for choosing the right model&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  GPT-5.6 Family Overview
&lt;/h3&gt;

&lt;p&gt;One of the biggest changes in GPT-5.6 is that OpenAI has shifted from releasing a single flagship model to offering an entire family of models. Each member of the GPT-5.6 lineup is designed around a different balance of intelligence, speed, and operational cost, allowing developers to choose the model that best matches their workload.&lt;/p&gt;

&lt;p&gt;Rather than asking developers to compromise between quality and efficiency, GPT-5.6 lets them optimize for what matters most. A research assistant may require the strongest reasoning available, while a customer support chatbot benefits more from fast responses and low operating costs. The GPT-5.6 family addresses both scenarios without forcing them onto the same model.&lt;/p&gt;

&lt;p&gt;The lineup is organized into three capability tiers:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Model | Primary Focus | Best For |
| ----------------- | ----------------------- | ---------------------------------------------- |
| GPT-5.6 Sol | Maximum intelligence | Advanced coding, research, AI agents |
| GPT-5.6 Terra | Balanced performance | Production applications, enterprise assistants |
| GPT-5.6 Luna | Speed and affordability | Chatbots, automation, large-scale deployments |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each of these models is also available in a &lt;strong&gt;Pro&lt;/strong&gt; configuration, giving users the option to allocate additional compute for deeper reasoning on more complex tasks.&lt;/p&gt;

&lt;h3&gt;
  
  
  GPT-5.6 Family Architecture
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffnr59r75xrxm18dfm454.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffnr59r75xrxm18dfm454.png" width="800" height="170"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Understanding the Three Capability Tiers
&lt;/h3&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Sol
&lt;/h4&gt;

&lt;p&gt;Sol is the flagship model in the GPT-5.6 family. It is designed for workloads where output quality and reasoning depth are the highest priorities. Sol excels at complex software engineering, scientific analysis, enterprise decision-making, cybersecurity workflows, and long-running AI agent tasks.&lt;/p&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Terra
&lt;/h4&gt;

&lt;p&gt;Terra represents the middle ground between intelligence and efficiency. It offers strong reasoning while reducing latency and operational cost, making it an excellent default choice for production APIs, SaaS platforms, enterprise copilots, and workflow automation.&lt;/p&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Luna
&lt;/h4&gt;

&lt;p&gt;Luna is optimized for speed and affordability. It targets high-volume workloads where fast responses and low inference costs matter more than maximum reasoning depth. Typical use cases include customer support, AI chatbots, summarization, content generation, and productivity assistants.&lt;/p&gt;

&lt;h3&gt;
  
  
  What Do the Pro Models Offer?
&lt;/h3&gt;

&lt;p&gt;Every capability tier also includes a &lt;strong&gt;Pro&lt;/strong&gt; variant. Rather than introducing an entirely separate model, the Pro configuration allows GPT-5.6 to spend additional compute on planning, reasoning, verification, and refinement before generating its final answer.&lt;/p&gt;

&lt;p&gt;This additional reasoning is particularly useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Large-scale software engineering&lt;/li&gt;
&lt;li&gt;Multi-step debugging&lt;/li&gt;
&lt;li&gt;Scientific research&lt;/li&gt;
&lt;li&gt;Financial analysis&lt;/li&gt;
&lt;li&gt;Long-form document generation&lt;/li&gt;
&lt;li&gt;Enterprise planning&lt;/li&gt;
&lt;li&gt;Autonomous AI agents&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The trade-off is increased inference time and compute usage, making Pro models most suitable for workloads where output quality is more important than response speed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why Did OpenAI Introduce Sol, Terra, and Luna?
&lt;/h3&gt;

&lt;p&gt;AI applications have become incredibly diverse. A coding agent working through a complex repository has very different requirements from a customer support chatbot handling thousands of requests every minute. Similarly, an enterprise research assistant analyzing financial reports needs stronger reasoning than an AI summarization tool.&lt;/p&gt;

&lt;p&gt;Instead of optimizing one model for every possible scenario, OpenAI introduced three capability tiers that allow developers to select the most appropriate balance of intelligence, latency, and cost.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Sol&lt;/strong&gt; is designed for maximum reasoning and quality.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Terra&lt;/strong&gt; balances capability with operational efficiency.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Luna&lt;/strong&gt; focuses on affordability and high-throughput deployment.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This tiered approach gives teams more control over infrastructure costs. Developers can use Luna for routine interactions, Terra for production applications, and reserve Sol for the most demanding reasoning tasks. The result is a more flexible AI platform that can scale from lightweight chatbots to enterprise-grade autonomous agents.&lt;/p&gt;

&lt;h3&gt;
  
  
  Choosing the Right GPT-5.6 Model
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fj2ibgy36ea97sn7dbo1j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fj2ibgy36ea97sn7dbo1j.png" width="800" height="859"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  GPT-5.6 Family at a Glance
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                    GPT-5.6 Family

        ┌────────────┬────────────┬────────────┐
        │ │ │
      Sol Terra Luna
        │ │ │
    Sol Pro Terra Pro Luna Pro
        │ │ │
 Maximum AI Balanced AI Fast &amp;amp; Affordable
        │ │ │
 Research Enterprise Chatbots
 Coding Production Automation
 AI Agents APIs High Throughput
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  GPT-5.6 Models Comparison: Sol vs Terra vs Luna
&lt;/h3&gt;

&lt;p&gt;One of the biggest advantages of the GPT-5.6 family is that developers are no longer limited to a single model. Instead, OpenAI provides multiple capability tiers, allowing you to optimize for intelligence, response speed, operational cost, or reasoning quality depending on your workload.&lt;/p&gt;

&lt;p&gt;While every GPT-5.6 model is built on the same generation of technology, they are optimized for different goals. &lt;strong&gt;Sol&lt;/strong&gt; prioritizes maximum intelligence, &lt;strong&gt;Terra&lt;/strong&gt; balances performance with efficiency, and &lt;strong&gt;Luna&lt;/strong&gt; focuses on speed and affordability. Their Pro variants extend these capabilities by allocating additional compute to reasoning-intensive tasks.&lt;/p&gt;

&lt;p&gt;Rather than asking “Which GPT-5.6 model is the best?”, a better question is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Which GPT-5.6 model is the best for my workload?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This section compares all six models to help answer that question.&lt;/p&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Model Comparison
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Feature | Sol | Sol Pro | Terra | Terra Pro | Luna | Luna Pro |
| ------------ | ----------------- | ------------------------ | ------------- | -------------------- | -------- | ------------------------- |
| Intelligence | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐ |
| Reasoning | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐ |
| Coding | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐ |
| Speed | ⭐⭐⭐ | ⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ |
| Cost | High | Highest | Medium | Medium-High | Lowest | Low |
| Best For | Research &amp;amp; Coding | Critical Enterprise Work | Production AI | Enterprise Workflows | Chatbots | Automation &amp;amp; Productivity |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  GPT-5.6 Sol
&lt;/h4&gt;

&lt;p&gt;GPT-5.6 Sol is OpenAI’s flagship model and the most capable member of the GPT-5.6 family. It is designed for problems where reasoning quality matters more than latency or cost.&lt;/p&gt;

&lt;p&gt;Its strengths include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Advanced software engineering&lt;/li&gt;
&lt;li&gt;Long-form reasoning&lt;/li&gt;
&lt;li&gt;Scientific research&lt;/li&gt;
&lt;li&gt;Cybersecurity workflows&lt;/li&gt;
&lt;li&gt;Financial analysis&lt;/li&gt;
&lt;li&gt;AI coding agents&lt;/li&gt;
&lt;li&gt;Complex multi-step planning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you’re building autonomous coding agents, analyzing large codebases, or solving complex engineering problems, Sol is the strongest choice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Best suited for:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Software engineers&lt;/li&gt;
&lt;li&gt;AI researchers&lt;/li&gt;
&lt;li&gt;Enterprise AI teams&lt;/li&gt;
&lt;li&gt;Security engineers&lt;/li&gt;
&lt;li&gt;Scientific computing&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Terra
&lt;/h4&gt;

&lt;p&gt;GPT-5.6 Terra is designed as the balanced model within the GPT-5.6 family. It delivers strong reasoning while reducing inference cost and response time, making it an excellent default option for production deployments.&lt;/p&gt;

&lt;p&gt;Unlike Sol, Terra focuses on delivering consistent performance across a wide range of business applications rather than maximizing reasoning depth.&lt;/p&gt;

&lt;p&gt;Typical use cases include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Enterprise copilots&lt;/li&gt;
&lt;li&gt;Internal knowledge assistants&lt;/li&gt;
&lt;li&gt;SaaS platforms&lt;/li&gt;
&lt;li&gt;Workflow automation&lt;/li&gt;
&lt;li&gt;Business intelligence&lt;/li&gt;
&lt;li&gt;Document processing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For many production systems, Terra offers the best balance between capability, scalability, and cost.&lt;/p&gt;

&lt;h4&gt;
  
  
  GPT-5.6 Luna
&lt;/h4&gt;

&lt;p&gt;GPT-5.6 Luna is optimized for speed and affordability. It is intended for applications that process large volumes of requests where response time and infrastructure cost are the primary considerations.&lt;/p&gt;

&lt;p&gt;Although Luna doesn’t provide the same reasoning depth as Sol, it remains highly capable for everyday AI tasks.&lt;/p&gt;

&lt;p&gt;Common workloads include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Customer support&lt;/li&gt;
&lt;li&gt;AI chatbots&lt;/li&gt;
&lt;li&gt;FAQ systems&lt;/li&gt;
&lt;li&gt;Email drafting&lt;/li&gt;
&lt;li&gt;Content generation&lt;/li&gt;
&lt;li&gt;Summarization&lt;/li&gt;
&lt;li&gt;AI-powered search&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Organizations serving millions of users can significantly reduce inference costs by deploying Luna for routine interactions while reserving Sol or Terra for more demanding tasks.&lt;/p&gt;

&lt;h3&gt;
  
  
  Understanding Pro Models
&lt;/h3&gt;

&lt;p&gt;Every capability tier also includes a &lt;strong&gt;Pro&lt;/strong&gt; variant. These are not entirely different base models; instead, they are optimized to dedicate additional compute to difficult problems.&lt;/p&gt;

&lt;p&gt;Compared with the standard models, Pro variants spend more time:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Planning complex solutions&lt;/li&gt;
&lt;li&gt;Exploring alternative approaches&lt;/li&gt;
&lt;li&gt;Verifying intermediate steps&lt;/li&gt;
&lt;li&gt;Reviewing generated code&lt;/li&gt;
&lt;li&gt;Refining final outputs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This additional reasoning often results in better performance for coding, research, engineering, and enterprise analysis, but it generally comes with higher latency and compute costs.&lt;/p&gt;

&lt;h4&gt;
  
  
  Standard vs Pro
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F47r7s85lxzxkwyl5uesz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F47r7s85lxzxkwyl5uesz.png" width="738" height="1320"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  When should you use a Pro model?
&lt;/h4&gt;

&lt;p&gt;Choose a &lt;strong&gt;Pro&lt;/strong&gt; model when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You’re solving complex engineering problems.&lt;/li&gt;
&lt;li&gt;Code quality is more important than speed.&lt;/li&gt;
&lt;li&gt;You need reliable multi-step reasoning.&lt;/li&gt;
&lt;li&gt;You’re performing research or technical analysis.&lt;/li&gt;
&lt;li&gt;The additional latency is acceptable.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For interactive chat applications, standard models are often sufficient.&lt;/p&gt;

&lt;h3&gt;
  
  
  Which GPT-5.6 Model Should You Choose?
&lt;/h3&gt;

&lt;p&gt;Choosing the right model depends on the type of application you’re building rather than simply selecting the most powerful option.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F92khafwrt5ba0jb0k5av.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F92khafwrt5ba0jb0k5av.png" width="800" height="809"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Recommended Models by Use Case
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Use Case | Recommended Model |
| ---------------------------- | ------------------- |
| AI Coding Agent | ⭐ GPT-5.6 Sol |
| Full-Stack Development | ⭐ GPT-5.6 Sol |
| Scientific Research | ⭐ GPT-5.6 Sol Pro |
| Cybersecurity Analysis | ⭐ GPT-5.6 Sol |
| Enterprise Copilot | ⭐ GPT-5.6 Terra Pro |
| Internal Knowledge Assistant | ⭐ GPT-5.6 Terra |
| SaaS Product | ⭐ GPT-5.6 Terra |
| Customer Support | ⭐ GPT-5.6 Luna |
| AI Chatbot | ⭐ GPT-5.6 Luna |
| Marketing Content | ⭐ GPT-5.6 Luna |
| Productivity Assistant | ⭐ GPT-5.6 Luna Pro |
| Large-Scale Automation | ⭐ GPT-5.6 Luna Pro |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;GPT-5.6 represents more than just another incremental AI model release. Instead of relying on a single flagship model, OpenAI has introduced a flexible model family that enables developers to choose the right balance of intelligence, performance, and cost for their specific workloads.&lt;/p&gt;

&lt;p&gt;Throughout this guide, we’ve explored how the GPT-5.6 lineup is organized into three capability tiers —  &lt;strong&gt;Sol&lt;/strong&gt; , &lt;strong&gt;Terra&lt;/strong&gt; , and &lt;strong&gt;Luna&lt;/strong&gt;  — along with their &lt;strong&gt;Pro&lt;/strong&gt; variants. Each model is designed with a different goal in mind, whether it’s maximum reasoning for complex engineering tasks, balanced performance for production applications, or cost-efficient inference for high-volume deployments.&lt;/p&gt;

&lt;p&gt;Rather than asking &lt;em&gt;“Which GPT-5.6 model is the most powerful?”&lt;/em&gt;, the better question is &lt;em&gt;“Which model is the best fit for my application?”&lt;/em&gt; For advanced coding, research, and AI agents, &lt;strong&gt;GPT-5.6 Sol&lt;/strong&gt; is the strongest choice. If you’re deploying production workloads at scale, &lt;strong&gt;GPT-5.6 Terra&lt;/strong&gt; offers an excellent balance of capability and efficiency. For chatbots, customer support, and automation, &lt;strong&gt;GPT-5.6 Luna&lt;/strong&gt; provides fast responses while keeping operational costs low.&lt;/p&gt;

&lt;p&gt;The introduction of &lt;strong&gt;Pro&lt;/strong&gt; variants gives developers even more flexibility by providing deeper reasoning for demanding workloads without requiring an entirely different model family.&lt;/p&gt;

&lt;p&gt;This modular approach makes GPT-5.6 one of OpenAI’s most versatile model releases to date, allowing teams to build AI systems that are both powerful and cost-effective.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>openaichatgpt</category>
      <category>openai</category>
      <category>gpt</category>
      <category>luna</category>
    </item>
    <item>
      <title>Grok Build Tutorial: Install, Configure, and Master xAI’s Open-Source AI Coding Agent</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Thu, 16 Jul 2026 08:25:00 +0000</pubDate>
      <link>https://dev.to/techlatestnet/grok-build-tutorial-install-configure-and-master-xais-open-source-ai-coding-agent-4b4n</link>
      <guid>https://dev.to/techlatestnet/grok-build-tutorial-install-configure-and-master-xais-open-source-ai-coding-agent-4b4n</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7z27kmhn1r4k7389s4pf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7z27kmhn1r4k7389s4pf.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AI coding assistants have evolved far beyond simple autocomplete tools. Today’s developer agents can understand entire repositories, edit files across multiple folders, execute terminal commands, browse documentation, search the web, and even automate complex development workflows.&lt;/p&gt;

&lt;p&gt;One of the latest entrants into this space is &lt;strong&gt;Grok Build&lt;/strong&gt; , the terminal-based AI coding agent developed by &lt;strong&gt;xAI&lt;/strong&gt;. Unlike traditional chat interfaces, Grok Build operates directly inside your terminal through a modern full-screen Text User Interface (TUI), allowing developers to work with AI without leaving their coding environment.&lt;/p&gt;

&lt;p&gt;Whether you’re debugging production issues, refactoring legacy code, generating documentation, or building entirely new applications, Grok Build combines repository awareness, shell execution, intelligent code editing, and automation into a single developer experience.&lt;/p&gt;

&lt;p&gt;Even better, xAI has open-sourced the project, allowing developers to inspect the Rust codebase, build it from source, and understand how the agent works under the hood.&lt;/p&gt;

&lt;p&gt;In this tutorial, you’ll learn:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What is Grok Build&lt;/li&gt;
&lt;li&gt;How its architecture works&lt;/li&gt;
&lt;li&gt;Installing it on macOS, Linux, and Windows&lt;/li&gt;
&lt;li&gt;Authenticating and starting your first session&lt;/li&gt;
&lt;li&gt;Building it from source&lt;/li&gt;
&lt;li&gt;Understanding the repository layout&lt;/li&gt;
&lt;li&gt;Practical coding examples&lt;/li&gt;
&lt;li&gt;Advanced features like MCP, ACP, and headless mode&lt;/li&gt;
&lt;li&gt;Real-world developer workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By the end of this guide, you’ll have everything you need to start using Grok Build effectively in your daily development workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is Grok Build?
&lt;/h3&gt;

&lt;p&gt;AI coding assistants have rapidly evolved from simple code completion tools into intelligent software engineering agents capable of understanding entire projects, executing commands, and automating complex development tasks. Grok Build is xAI’s answer to this evolution.&lt;/p&gt;

&lt;p&gt;Grok Build is an &lt;strong&gt;open-source terminal-based AI coding agent&lt;/strong&gt; that runs directly inside your terminal through a full-screen &lt;strong&gt;Text User Interface (TUI)&lt;/strong&gt;. Instead of acting as a chatbot that only responds to prompts, it functions as an AI teammate capable of understanding your codebase, editing files, running shell commands, searching the web, analyzing repositories, and assisting with long-running development tasks.&lt;/p&gt;

&lt;p&gt;Unlike browser-based AI assistants, Grok Build keeps developers in their preferred environment — the terminal. This allows you to interact with your project naturally without constantly switching between editors, browsers, and chat applications.&lt;/p&gt;

&lt;p&gt;At its core, Grok Build combines several capabilities into a single developer experience:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Repository Awareness:&lt;/strong&gt; Understands the structure of your entire project instead of just a single file.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Code Editing:&lt;/strong&gt; Creates, modifies, and refactors source code across multiple files.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Terminal Execution:&lt;/strong&gt; Runs shell commands, scripts, and build tools directly from the interface.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Search:&lt;/strong&gt; Retrieves documentation, package information, and external resources when needed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Task Automation&lt;/strong&gt; : Handles long-running development workflows with minimal manual intervention.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Headless Mode:&lt;/strong&gt; Runs non-interactively for automation, scripting, and CI/CD pipelines.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ACP Support:&lt;/strong&gt; Integrates with editors and external tools through the Agent Client Protocol.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP Integration:&lt;/strong&gt; Connects to external tools and services using the Model Context Protocol.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because the project is written in &lt;strong&gt;Rust&lt;/strong&gt; , Grok Build delivers a fast, responsive, and cross-platform experience while maintaining strong performance even on large repositories.&lt;/p&gt;

&lt;p&gt;Today, developers can use Grok Build for tasks such as generating new features, fixing bugs, refactoring legacy applications, reviewing pull requests, writing documentation, debugging production issues, and automating repetitive engineering workflows — all without leaving the terminal.&lt;/p&gt;

&lt;h3&gt;
  
  
  What Makes Grok Build Different?
&lt;/h3&gt;

&lt;p&gt;Many AI coding tools focus primarily on generating code snippets or answering programming questions. Grok Build goes a step further by acting as an &lt;strong&gt;AI software engineering agent&lt;/strong&gt; rather than just an AI assistant.&lt;/p&gt;

&lt;p&gt;Instead of simply suggesting code, it can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Explore your project’s directory structure&lt;/li&gt;
&lt;li&gt;Read and understand multiple files simultaneously&lt;/li&gt;
&lt;li&gt;Execute terminal commands&lt;/li&gt;
&lt;li&gt;Modify existing code safely&lt;/li&gt;
&lt;li&gt;Search online documentation&lt;/li&gt;
&lt;li&gt;Work with external tools using MCP&lt;/li&gt;
&lt;li&gt;Automate development workflows in both interactive and headless environments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This makes Grok Build particularly useful for developers working on large, multi-file projects where understanding context is just as important as generating code.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why Grok Build Matters
&lt;/h3&gt;

&lt;p&gt;Software development has changed dramatically over the past few years. AI assistants are no longer limited to generating code snippets or answering programming questions — they are becoming capable software engineering agents that can understand entire repositories, execute terminal commands, automate repetitive tasks, and assist throughout the development lifecycle.&lt;/p&gt;

&lt;p&gt;This shift has led to the rise of &lt;strong&gt;terminal-native AI coding agents&lt;/strong&gt; , allowing developers to stay in their preferred environment instead of constantly switching between an IDE, browser, documentation, and chat applications.&lt;/p&gt;

&lt;p&gt;Grok Build is xAI’s contribution to this new generation of developer tools. Rather than focusing solely on code generation, it combines repository awareness, intelligent file editing, shell execution, web search, and workflow automation into a single terminal-based experience.&lt;/p&gt;

&lt;p&gt;One of the biggest reasons Grok Build has attracted attention is that &lt;strong&gt;xAI has open-sourced the project&lt;/strong&gt;. Developers can inspect the Rust codebase, understand how the agent works internally, build it from source, and learn from its architecture. This transparency also allows the community to study modern AI agent design and evaluate how the tool interacts with repositories, files, and external systems.&lt;/p&gt;

&lt;p&gt;As software projects continue to grow in complexity, developers need tools that understand context across multiple files instead of just the current editor window. Grok Build is designed with that broader perspective, helping developers work more efficiently on large codebases and long-running engineering tasks.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why Developers Are Using AI Coding Agents
&lt;/h3&gt;

&lt;p&gt;Modern AI coding agents can assist with far more than writing code. They help reduce repetitive work and speed up common development tasks, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creating new features from natural language prompts&lt;/li&gt;
&lt;li&gt;Refactoring large codebases&lt;/li&gt;
&lt;li&gt;Debugging application errors&lt;/li&gt;
&lt;li&gt;Running build and test commands&lt;/li&gt;
&lt;li&gt;Explaining unfamiliar code&lt;/li&gt;
&lt;li&gt;Generating documentation&lt;/li&gt;
&lt;li&gt;Reviewing pull requests&lt;/li&gt;
&lt;li&gt;Searching official documentation without leaving the terminal&lt;/li&gt;
&lt;li&gt;Automating repetitive engineering workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of acting as a replacement for developers, these tools function more like collaborative engineering assistants that can handle routine tasks while developers focus on architecture, design, and problem-solving.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why Grok Build Stands Out
&lt;/h3&gt;

&lt;p&gt;Several AI coding agents are available today, but Grok Build differentiates itself through its combination of terminal-first workflows, open-source availability, and deep integration with developer tooling.&lt;/p&gt;

&lt;p&gt;Some of its notable strengths include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A full-screen Text User Interface (TUI) designed for terminal workflows&lt;/li&gt;
&lt;li&gt;Built with Rust for performance and reliability&lt;/li&gt;
&lt;li&gt;Repository-aware code understanding&lt;/li&gt;
&lt;li&gt;Interactive and headless execution modes&lt;/li&gt;
&lt;li&gt;Support for shell commands, file editing, and web search&lt;/li&gt;
&lt;li&gt;Integration with MCP servers for extending capabilities&lt;/li&gt;
&lt;li&gt;Agent Client Protocol (ACP) support for editor integration&lt;/li&gt;
&lt;li&gt;Cross-platform support for macOS, Linux, and Windows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These capabilities make Grok Build suitable for individual developers, open-source contributors, DevOps engineers, platform teams, and organizations looking to incorporate AI into their software development workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features of Grok Build
&lt;/h3&gt;

&lt;p&gt;Grok Build is much more than an AI chatbot running inside a terminal. It combines intelligent code understanding, repository awareness, terminal automation, and developer tooling into a single workflow. Whether you’re building a new application, debugging production issues, or automating repetitive tasks, Grok Build is designed to assist throughout the software development lifecycle.&lt;/p&gt;

&lt;p&gt;Let’s explore some of its most notable features.&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Full-Screen Terminal User Interface (TUI)
&lt;/h4&gt;

&lt;p&gt;One of Grok Build’s defining features is its modern &lt;strong&gt;Text User Interface (TUI)&lt;/strong&gt;. Instead of opening a browser or switching between multiple applications, developers can interact with the AI directly from the terminal.&lt;/p&gt;

&lt;p&gt;The interface provides a clean workspace where you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chat with the AI&lt;/li&gt;
&lt;li&gt;Review generated code&lt;/li&gt;
&lt;li&gt;View command outputs&lt;/li&gt;
&lt;li&gt;Navigate conversations&lt;/li&gt;
&lt;li&gt;Inspect file changes&lt;/li&gt;
&lt;li&gt;Manage long-running tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because everything happens inside the terminal, developers can remain focused without constantly changing contexts.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Why it matters:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;A terminal-first workflow reduces distractions and integrates naturally with existing development environments.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  2. Repository-Aware Code Understanding
&lt;/h4&gt;

&lt;p&gt;Unlike traditional AI assistants that only see the code you paste into a chat window, Grok Build understands your project’s overall structure.&lt;/p&gt;

&lt;p&gt;It can analyze:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multiple directories&lt;/li&gt;
&lt;li&gt;Source files&lt;/li&gt;
&lt;li&gt;Configuration files&lt;/li&gt;
&lt;li&gt;Dependencies&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Project architecture&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This broader understanding enables the AI to generate suggestions that are more accurate and contextually relevant.&lt;/p&gt;

&lt;p&gt;For example, instead of modifying a single file in isolation, Grok Build can update related files, imports, configurations, and documentation as part of the same task.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Intelligent Code Editing
&lt;/h4&gt;

&lt;p&gt;Grok Build can create new files, edit existing code, refactor functions, and apply changes across multiple parts of a project.&lt;/p&gt;

&lt;p&gt;Common tasks include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creating new components&lt;/li&gt;
&lt;li&gt;Refactoring legacy code&lt;/li&gt;
&lt;li&gt;Fixing bugs&lt;/li&gt;
&lt;li&gt;Updating APIs&lt;/li&gt;
&lt;li&gt;Renaming variables&lt;/li&gt;
&lt;li&gt;Improving code readability&lt;/li&gt;
&lt;li&gt;Generating tests&lt;/li&gt;
&lt;li&gt;Writing documentation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because it understands repository context, the generated changes are generally more consistent across the project.&lt;/p&gt;

&lt;h4&gt;
  
  
  4. Built-in Shell Command Execution
&lt;/h4&gt;

&lt;p&gt;Developers frequently switch between an editor and the terminal to run commands. Grok Build removes much of that friction by executing shell commands directly within the interface.&lt;/p&gt;

&lt;p&gt;Examples include:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;npm install
npm test
cargo build
git status
docker compose up
python manage.py migrate
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This enables developers to ask the AI to perform development tasks without manually typing every command.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Run the test suite and fix any failing tests.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;or&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Build the project and explain any compiler errors.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The AI can execute commands, inspect the output, and suggest fixes based on the results.&lt;/p&gt;

&lt;h4&gt;
  
  
  5. Web Search Integration
&lt;/h4&gt;

&lt;p&gt;Software development often requires consulting documentation, release notes, or framework guides.&lt;/p&gt;

&lt;p&gt;Grok Build includes web search capabilities that allow it to retrieve relevant information without requiring developers to leave the terminal.&lt;/p&gt;

&lt;p&gt;This is particularly useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API documentation&lt;/li&gt;
&lt;li&gt;Framework updates&lt;/li&gt;
&lt;li&gt;Library installation guides&lt;/li&gt;
&lt;li&gt;Error messages&lt;/li&gt;
&lt;li&gt;Programming references&lt;/li&gt;
&lt;li&gt;Package versions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of opening multiple browser tabs, developers can keep their workflow centralized within the terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  6. Long-Running Task Management
&lt;/h4&gt;

&lt;p&gt;Certain development workflows take several minutes — or even hours — to complete. Grok Build is designed to manage these longer processes efficiently.&lt;/p&gt;

&lt;p&gt;Examples include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Building large applications&lt;/li&gt;
&lt;li&gt;Running extensive test suites&lt;/li&gt;
&lt;li&gt;Dependency installation&lt;/li&gt;
&lt;li&gt;Repository indexing&lt;/li&gt;
&lt;li&gt;Code generation&lt;/li&gt;
&lt;li&gt;Infrastructure provisioning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Rather than blocking the interface, Grok Build helps track these tasks while allowing developers to continue working.&lt;/p&gt;

&lt;h4&gt;
  
  
  7. Headless Mode for Automation
&lt;/h4&gt;

&lt;p&gt;Not every workflow requires an interactive interface. Grok Build also supports &lt;strong&gt;headless mode&lt;/strong&gt; , making it suitable for automation and scripting.&lt;/p&gt;

&lt;p&gt;This enables developers to integrate AI into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CI/CD pipelines&lt;/li&gt;
&lt;li&gt;GitHub Actions&lt;/li&gt;
&lt;li&gt;Build systems&lt;/li&gt;
&lt;li&gt;Deployment scripts&lt;/li&gt;
&lt;li&gt;Automated code reviews&lt;/li&gt;
&lt;li&gt;Batch processing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Headless execution allows organizations to incorporate AI into existing engineering workflows without requiring manual interaction.&lt;/p&gt;

&lt;h4&gt;
  
  
  8. Agent Client Protocol (ACP) Support
&lt;/h4&gt;

&lt;p&gt;Grok Build supports the &lt;strong&gt;Agent Client Protocol (ACP)&lt;/strong&gt;, allowing it to communicate with compatible development tools and editors.&lt;/p&gt;

&lt;p&gt;This makes it possible to use Grok Build beyond the standalone terminal application, enabling integrations with external clients that understand the ACP standard.&lt;/p&gt;

&lt;p&gt;For teams building AI-powered developer experiences, ACP provides a standardized way to connect coding agents with development environments.&lt;/p&gt;

&lt;h4&gt;
  
  
  9. Model Context Protocol (MCP) Integration
&lt;/h4&gt;

&lt;p&gt;Modern AI agents become significantly more useful when they can access external tools and services.&lt;/p&gt;

&lt;p&gt;Grok Build supports the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;, enabling connections to external resources such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Databases&lt;/li&gt;
&lt;li&gt;Documentation systems&lt;/li&gt;
&lt;li&gt;Version control platforms&lt;/li&gt;
&lt;li&gt;Internal developer tools&lt;/li&gt;
&lt;li&gt;APIs&lt;/li&gt;
&lt;li&gt;Cloud services&lt;/li&gt;
&lt;li&gt;Custom enterprise integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of relying solely on local repository information, MCP allows Grok Build to retrieve additional context and perform more capable workflows.&lt;/p&gt;

&lt;h4&gt;
  
  
  10. Built with Rust
&lt;/h4&gt;

&lt;p&gt;Performance is a key consideration for terminal applications, especially when working with large repositories.&lt;/p&gt;

&lt;p&gt;Grok Build is written in &lt;strong&gt;Rust&lt;/strong&gt; , providing several advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;High performance&lt;/li&gt;
&lt;li&gt;Low memory usage&lt;/li&gt;
&lt;li&gt;Cross-platform compatibility&lt;/li&gt;
&lt;li&gt;Reliability&lt;/li&gt;
&lt;li&gt;Strong safety guarantees&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Rust’s focus on performance and memory safety makes it well suited for building responsive developer tools that can scale to complex projects.&lt;/p&gt;

&lt;h4&gt;
  
  
  11. Cross-Platform Support
&lt;/h4&gt;

&lt;p&gt;Grok Build is available for all major desktop operating systems, making it accessible to a wide range of developers.&lt;/p&gt;

&lt;p&gt;Supported platforms include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;macOS&lt;/li&gt;
&lt;li&gt;Linux&lt;/li&gt;
&lt;li&gt;Windows (best-effort support when building from source)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Prebuilt binaries are available for the primary operating systems, allowing developers to get started quickly without compiling the project manually.&lt;/p&gt;

&lt;h3&gt;
  
  
  Feature Summary
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Feature | Description |
| -------------------- | --------------------------------------------------- |
| Terminal UI (TUI) | Interactive full-screen coding experience |
| Repository Awareness | Understands the entire project structure |
| Intelligent Editing | Creates and modifies code across multiple files |
| Shell Execution | Runs terminal commands directly |
| Web Search | Retrieves documentation and programming resources |
| Long-Running Tasks | Manages builds, tests, and automation workflows |
| Headless Mode | Suitable for scripting and CI/CD pipelines |
| ACP Support | Integrates with compatible editors and clients |
| MCP Integration | Connects to external tools and services |
| Rust-Based | Fast, reliable, and memory-efficient implementation |
| Cross-Platform | Supports macOS, Linux, and Windows |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;With its combination of repository awareness, intelligent code editing, terminal automation, and extensibility through ACP and MCP, Grok Build goes beyond traditional AI code assistants. It serves as a comprehensive development companion capable of assisting throughout the entire software engineering workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  How Grok Build Works
&lt;/h3&gt;

&lt;p&gt;One of the biggest advantages of Grok Build is that it isn’t just an AI chatbot running inside a terminal. Instead, it follows a modular architecture where different components work together to understand your project, execute commands, interact with external services, and generate intelligent responses.&lt;/p&gt;

&lt;p&gt;When you enter a prompt, Grok Build doesn’t simply send it to an AI model. It first determines what information is needed, what tools should be used, and which actions can be safely performed before generating a response.&lt;/p&gt;

&lt;p&gt;The workflow looks something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                    ┌──────────────────────┐
                    │ Developer │
                    │ (You) │
                    └──────────┬───────────┘
                               │
                               ▼
                    ┌──────────────────────┐
                    │ Grok Build TUI │
                    │ (Terminal Interface) │
                    └──────────┬───────────┘
                               │
                               ▼
                 ┌─────────────────────────────┐
                 │ Agent Runtime │
                 │ Prompt Planning &amp;amp; Reasoning │
                 └──────────┬──────────────────┘
                            │
          ┌─────────────────┼─────────────────┐
          ▼ ▼ ▼
 ┌────────────────┐ ┌────────────────┐ ┌────────────────┐
 │ Tool Layer │ │ Workspace │ │ AI Model │
 │ │ │ Layer │ │ │
 └───────┬────────┘ └──────┬─────────┘ └────────────────┘
          │ │
          │ │
   ┌──────┼──────────────┐ │
   ▼ ▼ ▼ ▼ ▼
Terminal Files Git Web Search
Commands Edit Documentation
          │
          ▼
     MCP Servers
(Custom Tools,
 APIs, Databases)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Step 1: Enter a Prompt
&lt;/h4&gt;

&lt;p&gt;Every workflow begins with a natural language request inside the Grok Build interface.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Find why authentication tests are failing and fix the issue.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a REST API for user management using Rust.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of immediately generating text, Grok Build first analyzes what actions are required to complete the request.&lt;/p&gt;

&lt;p&gt;For simple questions, it may only need the AI model.&lt;/p&gt;

&lt;p&gt;For more complex tasks, it may need to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Read multiple files&lt;/li&gt;
&lt;li&gt;Search the repository&lt;/li&gt;
&lt;li&gt;Execute shell commands&lt;/li&gt;
&lt;li&gt;Inspect Git history&lt;/li&gt;
&lt;li&gt;Search online documentation&lt;/li&gt;
&lt;li&gt;Connect to MCP tools&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Step 2: The Terminal User Interface (TUI)
&lt;/h4&gt;

&lt;p&gt;The TUI serves as the primary interface between the developer and the AI.&lt;/p&gt;

&lt;p&gt;Here you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ask questions&lt;/li&gt;
&lt;li&gt;View responses&lt;/li&gt;
&lt;li&gt;Inspect generated code&lt;/li&gt;
&lt;li&gt;Watch command execution&lt;/li&gt;
&lt;li&gt;Review file modifications&lt;/li&gt;
&lt;li&gt;Navigate previous conversations&lt;/li&gt;
&lt;li&gt;Monitor long-running tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because everything happens inside the terminal, developers remain focused without constantly switching between applications.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3: Agent Runtime
&lt;/h4&gt;

&lt;p&gt;The &lt;strong&gt;Agent Runtime&lt;/strong&gt; is the brain of Grok Build.&lt;/p&gt;

&lt;p&gt;Rather than simply forwarding prompts to an AI model, it first determines:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What the user is asking&lt;/li&gt;
&lt;li&gt;Which tools are required&lt;/li&gt;
&lt;li&gt;Which files should be examined&lt;/li&gt;
&lt;li&gt;Whether shell commands need to run&lt;/li&gt;
&lt;li&gt;Whether external information is needed&lt;/li&gt;
&lt;li&gt;How multiple steps should be coordinated&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can think of it as an intelligent task planner that breaks large requests into smaller executable actions.&lt;/p&gt;

&lt;p&gt;For example, if you ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“Update all deprecated React lifecycle methods.”&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The runtime may decide to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Scan the repository.&lt;/li&gt;
&lt;li&gt;Identify React components.&lt;/li&gt;
&lt;li&gt;Search for deprecated APIs.&lt;/li&gt;
&lt;li&gt;Modify affected files.&lt;/li&gt;
&lt;li&gt;Run the build.&lt;/li&gt;
&lt;li&gt;Execute tests.&lt;/li&gt;
&lt;li&gt;Summarize the changes.&lt;/li&gt;
&lt;/ol&gt;

&lt;h4&gt;
  
  
  Step 4: Tool Layer
&lt;/h4&gt;

&lt;p&gt;Once the runtime has planned the task, it invokes the appropriate tools.&lt;/p&gt;

&lt;p&gt;The Tool Layer provides Grok Build with practical capabilities beyond text generation.&lt;/p&gt;

&lt;p&gt;Some of the built-in tools include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Terminal Execution&lt;/strong&gt;  — Run shell commands such as git, cargo, npm, or docker.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File Editing&lt;/strong&gt;  — Read, create, rename, and modify project files.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Repository Search&lt;/strong&gt;  — Locate classes, functions, or configuration files.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Search&lt;/strong&gt;  — Retrieve documentation, package references, and technical resources.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Git Operations&lt;/strong&gt;  — Inspect branches, commits, and project history.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of answering purely from its training data, Grok Build combines live tool outputs with AI reasoning to produce more accurate and actionable results.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 5: Workspace Layer
&lt;/h4&gt;

&lt;p&gt;The Workspace Layer manages interactions with your local development environment.&lt;/p&gt;

&lt;p&gt;This includes access to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Source code&lt;/li&gt;
&lt;li&gt;Project folders&lt;/li&gt;
&lt;li&gt;Configuration files&lt;/li&gt;
&lt;li&gt;Version control&lt;/li&gt;
&lt;li&gt;Build artifacts&lt;/li&gt;
&lt;li&gt;Checkpoints&lt;/li&gt;
&lt;li&gt;File system operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because the workspace understands the entire project structure, Grok Build can maintain consistency when making changes across multiple files.&lt;/p&gt;

&lt;p&gt;For example, renaming a function might also update:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Imports&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Tests&lt;/li&gt;
&lt;li&gt;Configuration files&lt;/li&gt;
&lt;li&gt;Related modules&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of editing just a single file.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 6: AI Model
&lt;/h4&gt;

&lt;p&gt;At the core of Grok Build is the AI model responsible for reasoning, code generation, explanation, and decision-making.&lt;/p&gt;

&lt;p&gt;The model receives:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your prompt&lt;/li&gt;
&lt;li&gt;Repository context&lt;/li&gt;
&lt;li&gt;Tool outputs&lt;/li&gt;
&lt;li&gt;File contents&lt;/li&gt;
&lt;li&gt;Terminal results&lt;/li&gt;
&lt;li&gt;Web search results&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With this additional context, the AI can generate responses that are significantly more accurate than relying solely on the original prompt.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 7: Web Search
&lt;/h4&gt;

&lt;p&gt;Software development often requires current information that isn’t available in the local repository.&lt;/p&gt;

&lt;p&gt;When necessary, Grok Build can search the web to retrieve:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Official documentation&lt;/li&gt;
&lt;li&gt;Framework guides&lt;/li&gt;
&lt;li&gt;Package references&lt;/li&gt;
&lt;li&gt;API specifications&lt;/li&gt;
&lt;li&gt;Library updates&lt;/li&gt;
&lt;li&gt;Programming examples&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This allows the AI to incorporate the latest technical information directly into its responses without requiring developers to leave the terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 8: MCP Server Integration
&lt;/h4&gt;

&lt;p&gt;One of Grok Build’s most powerful capabilities is its support for the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Rather than limiting the AI to local project files, MCP enables secure communication with external tools and services.&lt;/p&gt;

&lt;p&gt;For example, an MCP server can provide access to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub repositories&lt;/li&gt;
&lt;li&gt;Cloud platforms&lt;/li&gt;
&lt;li&gt;Internal company documentation&lt;/li&gt;
&lt;li&gt;Databases&lt;/li&gt;
&lt;li&gt;APIs&lt;/li&gt;
&lt;li&gt;Issue trackers&lt;/li&gt;
&lt;li&gt;Monitoring systems&lt;/li&gt;
&lt;li&gt;Custom enterprise tools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This significantly expands what Grok Build can accomplish, allowing it to interact with real-world development environments beyond your local machine.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 9: Returning the Result
&lt;/h4&gt;

&lt;p&gt;After gathering all the necessary information, Grok Build combines:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI reasoning&lt;/li&gt;
&lt;li&gt;Repository context&lt;/li&gt;
&lt;li&gt;Tool outputs&lt;/li&gt;
&lt;li&gt;Shell command results&lt;/li&gt;
&lt;li&gt;Workspace information&lt;/li&gt;
&lt;li&gt;External data (when available)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To produce a final response.&lt;/p&gt;

&lt;p&gt;Depending on your request, the result may include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generated code&lt;/li&gt;
&lt;li&gt;File modifications&lt;/li&gt;
&lt;li&gt;Refactored components&lt;/li&gt;
&lt;li&gt;Bug fixes&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Command outputs&lt;/li&gt;
&lt;li&gt;Suggested improvements&lt;/li&gt;
&lt;li&gt;Explanations of what changed and why&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This end-to-end workflow enables Grok Build to function as an AI software engineering agent rather than a simple conversational assistant.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why This Architecture Matters
&lt;/h3&gt;

&lt;p&gt;Traditional AI coding assistants primarily generate text based on the prompt you provide. Grok Build extends this by combining reasoning with direct access to your development environment, making it capable of handling more complex, real-world engineering tasks.&lt;/p&gt;

&lt;p&gt;By orchestrating repository awareness, terminal execution, file editing, web search, and external integrations through MCP, Grok Build can automate workflows that would otherwise require multiple tools and significant manual effort.&lt;/p&gt;

&lt;p&gt;With an understanding of how Grok Build processes requests behind the scenes, you’re now ready to install it and start using it in your own development environment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installing Grok Build
&lt;/h3&gt;

&lt;p&gt;Getting started with Grok Build is straightforward. xAI provides prebuilt binaries for &lt;strong&gt;macOS&lt;/strong&gt; , &lt;strong&gt;Linux&lt;/strong&gt; , and &lt;strong&gt;Windows&lt;/strong&gt; , allowing you to install the CLI in just a few commands. If you prefer, you can also compile the project directly from its Rust source code.&lt;/p&gt;

&lt;p&gt;In this section, we’ll walk through both approaches, verify the installation, and launch Grok Build for the first time.&lt;/p&gt;

&lt;h4&gt;
  
  
  System Requirements
&lt;/h4&gt;

&lt;p&gt;Before installing Grok Build, ensure your system meets the following requirements.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;| Requirement | Details |
| ------------------- | --------------------------------------------------------------------------- |
| Operating System | macOS, Linux, or Windows |
| Internet Connection | Required for installation and authentication |
| Terminal | Terminal, PowerShell, Windows Terminal, iTerm2, or another compatible shell |
| Browser | Required during the initial authentication process |
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you plan to &lt;strong&gt;build Grok Build from source&lt;/strong&gt; , you’ll also need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rust (installed via rustup)&lt;/li&gt;
&lt;li&gt;cargo&lt;/li&gt;
&lt;li&gt;protoc (Protocol Buffers compiler)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Installing Grok Build on macOS
&lt;/h3&gt;

&lt;p&gt;On macOS, Grok Build can be installed using the official installation script.&lt;/p&gt;

&lt;p&gt;Run the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://x.ai/cli/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The installer downloads the latest Grok Build release and places the executable in your system.&lt;/p&gt;

&lt;p&gt;Once the installation completes, verify it by checking the installed version.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;grok &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If everything was installed correctly, you’ll see output similar to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;grok 0.x.x
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdet63rvfrv3h5s6kxldq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdet63rvfrv3h5s6kxldq.png" width="799" height="263"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Installing Grok Build on Linux
&lt;/h3&gt;

&lt;p&gt;Linux installation follows the same process as macOS.&lt;/p&gt;

&lt;p&gt;Execute:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://x.ai/cli/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After installation, verify the binary:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;grok &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the command returns the installed version, Grok Build is ready to use.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installing Grok Build on Windows
&lt;/h3&gt;

&lt;p&gt;Windows users can install Grok Build directly from &lt;strong&gt;PowerShell&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;irm&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;https://x.ai/cli/install.ps1&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;|&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;iex&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After installation finishes, verify it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;grok &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You should see the installed version displayed in the terminal.&lt;/p&gt;

&lt;h3&gt;
  
  
  First-Time Authentication
&lt;/h3&gt;

&lt;p&gt;The first time you launch Grok Build, it will automatically open your default web browser and prompt you to sign in to your xAI account.&lt;/p&gt;

&lt;p&gt;Start Grok Build by running:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;grok
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;During the first launch:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Grok Build opens your default browser.&lt;/li&gt;
&lt;li&gt;Sign in with your xAI account.&lt;/li&gt;
&lt;li&gt;Grant the requested permissions.&lt;/li&gt;
&lt;li&gt;Return to your terminal once authentication completes.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;After authentication, your credentials are stored locally so you won’t need to repeat this process every time you use the tool.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Authentication is only required during the initial setup unless your session expires or you explicitly sign out.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1j8x9b0su87r2npt9och.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1j8x9b0su87r2npt9och.png" width="800" height="270"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdp79jl5n7nslefjiqen6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdp79jl5n7nslefjiqen6.png" width="800" height="287"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6dmag5c0glqjhzffghhj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6dmag5c0glqjhzffghhj.png" width="800" height="425"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Launching Grok Build
&lt;/h3&gt;

&lt;p&gt;Once authenticated, simply start Grok Build by running:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;grok
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You’ll be greeted with the full-screen terminal interface, where you can begin interacting with the AI using natural language prompts.&lt;/p&gt;

&lt;p&gt;From here, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ask coding questions&lt;/li&gt;
&lt;li&gt;Generate new code&lt;/li&gt;
&lt;li&gt;Refactor existing projects&lt;/li&gt;
&lt;li&gt;Execute terminal commands&lt;/li&gt;
&lt;li&gt;Search your repository&lt;/li&gt;
&lt;li&gt;Perform web searches&lt;/li&gt;
&lt;li&gt;Manage long-running development tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdoepqbtg6nzpo123ho3g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdoepqbtg6nzpo123ho3g.png" width="800" height="293"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Run Grok Build with Local Models&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you prefer local inference, TechLatest provides ready-to-use Ollama + Open WebUI environments with DeepSeek, Qwen, Llama, Gemma, and Mistral models that work seamlessly with AI coding agents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://techlatest.net/support/multi_llm_gpu_vm_support/" rel="noopener noreferrer"&gt;Techlatest.net - GPU Supported DeepSeek &amp;amp; Llama powered All-in-One LLM&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Understanding the Welcome Screen
&lt;/h3&gt;

&lt;p&gt;Let’s take a closer look at each option available on the home screen.&lt;/p&gt;

&lt;h4&gt;
  
  
  New Worktree
&lt;/h4&gt;

&lt;p&gt;This option creates a new isolated Git worktree for your project.&lt;/p&gt;

&lt;p&gt;A worktree allows you to work on a separate branch without affecting your primary working directory. It’s particularly useful when experimenting with features, testing ideas, or asking Grok Build to make large changes while keeping your main branch clean.&lt;/p&gt;

&lt;p&gt;You can also use the keyboard shortcut:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Ctrl + W
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Resume Session
&lt;/h4&gt;

&lt;p&gt;Grok Build automatically saves previous conversations, allowing you to continue where you left off without losing context.&lt;/p&gt;

&lt;p&gt;Choose &lt;strong&gt;Resume Session&lt;/strong&gt; to reopen an earlier coding session rather than start from scratch.&lt;/p&gt;

&lt;p&gt;Shortcut:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Ctrl + S
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Changelog
&lt;/h4&gt;

&lt;p&gt;The &lt;strong&gt;Changelog&lt;/strong&gt; displays recent updates, improvements, bug fixes, and newly introduced features in Grok Build.&lt;/p&gt;

&lt;p&gt;Checking the changelog regularly is a good way to stay informed about new capabilities and enhancements.&lt;/p&gt;

&lt;h4&gt;
  
  
  Quit
&lt;/h4&gt;

&lt;p&gt;Exits the Grok Build interface and returns you to your terminal.&lt;/p&gt;

&lt;p&gt;Shortcut:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Ctrl + Q
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9hjsj4raofr09j3bnt52.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9hjsj4raofr09j3bnt52.png" width="800" height="194"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Prompt Bar
&lt;/h3&gt;

&lt;p&gt;At the bottom of the screen, you’ll notice the prompt input area.&lt;/p&gt;

&lt;p&gt;This is where you’ll interact with Grok Build using natural language.&lt;/p&gt;

&lt;p&gt;For example, you can ask:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Explain the structure of this repository.

Find unused functions in this project.

Create a Dockerfile for this application.

Generate unit tests for the authentication module.

Explain why this build is failing.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Unlike traditional command-line tools, you don’t need to memorize commands for most tasks. Simply describe what you want, and Grok Build determines the necessary steps to complete the request.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmfgi22uetrhxndlxyi3p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmfgi22uetrhxndlxyi3p.png" width="800" height="295"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Model Indicator
&lt;/h3&gt;

&lt;p&gt;In the bottom-right corner of the interface, Grok Build displays the currently active AI model.&lt;/p&gt;

&lt;p&gt;In our example, the interface shows:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Grok 4.5 (Low)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This indicates the model currently being used to process requests. Depending on your subscription tier or configuration, different model variants may be available.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffj3pujnuceky0v8q09rq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffj3pujnuceky0v8q09rq.png" width="800" height="115"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Status Indicator
&lt;/h3&gt;

&lt;p&gt;The status label in the bottom-right corner indicates the current release channel.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight toml"&gt;&lt;code&gt;&lt;span class="nn"&gt;[stable]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This confirms you’re running the stable release of Grok Build.&lt;/p&gt;

&lt;p&gt;Future versions may also include preview, beta, or experimental channels as new features are introduced.&lt;/p&gt;

&lt;h3&gt;
  
  
  Extending Grok Build with Hooks, Plugins, Skills, and MCP Servers
&lt;/h3&gt;

&lt;p&gt;Beyond acting as an AI coding assistant, Grok Build is designed to be highly extensible. It includes a built-in extensions panel where you can manage automation hooks, install plugins, add reusable skills, and connect external tools through the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can open this panel using the appropriate keyboard shortcut (depending on your platform or configuration) and navigate between the available tabs.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy7mnyb3546z0hd522kiz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy7mnyb3546z0hd522kiz.png" width="800" height="294"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As shown above, the extensions panel is divided into several sections.&lt;/p&gt;

&lt;h3&gt;
  
  
  Hooks
&lt;/h3&gt;

&lt;p&gt;The &lt;strong&gt;Hooks&lt;/strong&gt; tab allows you to configure automation that runs before or after specific events inside Grok Build.&lt;/p&gt;

&lt;p&gt;Hooks are useful when you want repetitive actions to happen automatically.&lt;/p&gt;

&lt;p&gt;For example, a hook can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Format code after edits&lt;/li&gt;
&lt;li&gt;Run tests before completing a task&lt;/li&gt;
&lt;li&gt;Check for linting errors&lt;/li&gt;
&lt;li&gt;Execute security scans&lt;/li&gt;
&lt;li&gt;Trigger custom shell scripts&lt;/li&gt;
&lt;li&gt;Send notifications&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the screenshot, Grok Build lists both:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Custom Hooks&lt;/strong&gt; (~/.claude)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Global Hooks&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This separation allows project-specific automation while still keeping reusable global hooks available across multiple repositories.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz519f12ccvuntqrg3oxs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz519f12ccvuntqrg3oxs.png" width="800" height="296"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Plugins
&lt;/h3&gt;

&lt;p&gt;The &lt;strong&gt;Plugins&lt;/strong&gt; tab allows Grok Build to extend its native functionality.&lt;/p&gt;

&lt;p&gt;Plugins can provide additional capabilities that are not built directly into the core application.&lt;/p&gt;

&lt;p&gt;Depending on available plugins, developers may be able to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Integrate third-party services&lt;/li&gt;
&lt;li&gt;Add custom development tools&lt;/li&gt;
&lt;li&gt;Connect deployment platforms&lt;/li&gt;
&lt;li&gt;Extend AI workflows&lt;/li&gt;
&lt;li&gt;Automate repetitive engineering tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This modular approach allows Grok Build to grow beyond its default feature set.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwin1qr4g2v8qt2uxwd4c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwin1qr4g2v8qt2uxwd4c.png" width="800" height="293"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Marketplace
&lt;/h3&gt;

&lt;p&gt;The &lt;strong&gt;Marketplace&lt;/strong&gt; acts as a central location for discovering additional extensions.&lt;/p&gt;

&lt;p&gt;Rather than manually configuring every integration, developers can browse and install supported components from one place.&lt;/p&gt;

&lt;p&gt;Future marketplace offerings may include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Community plugins&lt;/li&gt;
&lt;li&gt;Productivity tools&lt;/li&gt;
&lt;li&gt;Developer utilities&lt;/li&gt;
&lt;li&gt;Workflow integrations&lt;/li&gt;
&lt;li&gt;Custom AI extensions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fd4fip7i49mz9r4umj7kp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fd4fip7i49mz9r4umj7kp.png" width="800" height="297"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdame9nl1e3lxinve9tzz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdame9nl1e3lxinve9tzz.png" width="800" height="348"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhwnncftfznq5zqfz1xbp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhwnncftfznq5zqfz1xbp.png" width="799" height="334"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Skills
&lt;/h3&gt;

&lt;p&gt;Skills are reusable instruction sets that teach Grok Build how to perform specialized tasks consistently.&lt;/p&gt;

&lt;p&gt;Instead of writing the same prompt repeatedly, a skill encapsulates a workflow that can be invoked whenever needed.&lt;/p&gt;

&lt;p&gt;Examples include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Code review&lt;/li&gt;
&lt;li&gt;Security auditing&lt;/li&gt;
&lt;li&gt;Documentation generation&lt;/li&gt;
&lt;li&gt;API design&lt;/li&gt;
&lt;li&gt;Performance optimization&lt;/li&gt;
&lt;li&gt;Infrastructure analysis&lt;/li&gt;
&lt;li&gt;Testing workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Skills help standardize common engineering tasks across teams and projects.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqbw2qfwn5waem77op0jq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqbw2qfwn5waem77op0jq.png" width="800" height="294"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  MCP Servers
&lt;/h3&gt;

&lt;p&gt;One of Grok Build’s most powerful capabilities is its support for &lt;strong&gt;Model Context Protocol (MCP) Servers&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Rather than limiting the AI to your local repository, MCP allows Grok Build to securely connect with external tools and services.&lt;/p&gt;

&lt;p&gt;Examples include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub&lt;/li&gt;
&lt;li&gt;Databases&lt;/li&gt;
&lt;li&gt;Cloud platforms&lt;/li&gt;
&lt;li&gt;Internal documentation&lt;/li&gt;
&lt;li&gt;REST APIs&lt;/li&gt;
&lt;li&gt;Issue trackers&lt;/li&gt;
&lt;li&gt;Monitoring systems&lt;/li&gt;
&lt;li&gt;Enterprise knowledge bases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By connecting to MCP servers, Grok Build gains access to additional context, enabling it to perform more advanced development workflows beyond local code analysis.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8dc4vauqlta80s6gfc3e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8dc4vauqlta80s6gfc3e.png" width="800" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;AI coding assistants are evolving rapidly, and Grok Build represents the next step in that evolution. Rather than acting as a simple code generator, it combines repository awareness, intelligent code editing, terminal automation, web search, and extensibility into a single developer-focused experience. Throughout this guide, we’ve explored how Grok Build works under the hood, installed it on different operating systems, navigated its terminal interface, and examined advanced capabilities such as Hooks, Plugins, Skills, and MCP Servers.&lt;/p&gt;

&lt;p&gt;What makes Grok Build particularly interesting is its &lt;strong&gt;terminal-first design&lt;/strong&gt; and &lt;strong&gt;open-source foundation&lt;/strong&gt;. By publishing the project, xAI has allowed developers to inspect the Rust codebase, understand the architecture of a modern AI coding agent, and learn how advanced developer tools are built. Whether you’re an individual developer, an open-source contributor, or part of an engineering team, Grok Build offers a flexible platform that can adapt to a wide range of development workflows.&lt;/p&gt;

&lt;p&gt;While no AI coding assistant can replace engineering expertise, tools like Grok Build can significantly reduce repetitive work, speed up debugging, automate common development tasks, and help developers stay focused on solving complex problems instead of routine ones.&lt;/p&gt;

&lt;p&gt;As the ecosystem around AI coding agents continues to mature — with standards like &lt;strong&gt;MCP&lt;/strong&gt; and &lt;strong&gt;ACP&lt;/strong&gt; enabling richer integrations — tools such as Grok Build are likely to become an increasingly important part of the modern software development toolkit.&lt;/p&gt;

&lt;p&gt;If you haven’t tried it yet, install Grok Build, explore its features, experiment with real-world projects, and see how it fits into your daily workflow. The best way to understand its capabilities is to put it to work on your own codebase.&lt;/p&gt;

&lt;p&gt;Thanks for reading! If you found this guide helpful, consider sharing it with your fellow developers and following our blog for more tutorials on AI development tools, open-source projects, cybersecurity, and emerging technologies.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>grokai</category>
      <category>grok</category>
      <category>aicodingagent</category>
      <category>opensource</category>
    </item>
    <item>
      <title>HackAgent Tutorial: Secure AI Agents Against Prompt Injection, Jailbreaks, and Tool Misuse</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Mon, 13 Jul 2026 14:10:42 +0000</pubDate>
      <link>https://dev.to/techlatestnet/hackagent-tutorial-secure-ai-agents-against-prompt-injection-jailbreaks-and-tool-misuse-588l</link>
      <guid>https://dev.to/techlatestnet/hackagent-tutorial-secure-ai-agents-against-prompt-injection-jailbreaks-and-tool-misuse-588l</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwbovtj0sfnh7qtkldxn0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwbovtj0sfnh7qtkldxn0.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Large Language Models (LLMs) have rapidly evolved from simple chatbots into autonomous AI agents capable of browsing the web, executing code, interacting with APIs, accessing databases, and performing complex multi-step tasks. Modern AI frameworks such as OpenAI SDK, LangChain, Google ADK, LiteLLM, and Model Context Protocol (MCP) make it easier than ever to build intelligent applications that can reason, plan, and act on behalf of users.&lt;/p&gt;

&lt;p&gt;However, as AI agents become more capable, they also introduce an entirely new class of security risks. Unlike traditional web applications, AI agents can be manipulated through natural language. A carefully crafted prompt may convince an agent to ignore its original instructions, reveal confidential information, misuse connected tools, or perform actions it was never intended to execute.&lt;/p&gt;

&lt;p&gt;Some of the most common threats include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Prompt Injection&lt;/strong&gt;  — Malicious prompts that override an agent’s intended behavior.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Jailbreak Attacks&lt;/strong&gt;  — Attempts to bypass built-in safety policies and content restrictions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Goal Hijacking&lt;/strong&gt;  — Redirecting an AI agent away from its original objective.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tool Misuse&lt;/strong&gt;  — Tricking an agent into abusing connected tools such as GitHub, Slack, Gmail, databases, or external APIs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;System Prompt Leakage&lt;/strong&gt;  — Extracting hidden instructions that define the agent’s behavior.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These vulnerabilities can have serious consequences, especially for production AI systems connected to sensitive data or external services.&lt;/p&gt;

&lt;p&gt;This is where &lt;strong&gt;HackAgent&lt;/strong&gt; comes in.&lt;/p&gt;

&lt;p&gt;HackAgent is an open-source AI Agent Security Testing Toolkit designed to help developers, AI engineers, and security researchers evaluate the robustness of AI agents against real-world adversarial attacks. Instead of manually crafting hundreds of malicious prompts, HackAgent automates the entire security evaluation process using research-backed attack techniques such as AdvPrefix, AutoDAN-Turbo, PAIR, TAP, FlipAttack, Best-of-N, CipherChat, PAP, and more.&lt;/p&gt;

&lt;p&gt;Whether you’re building a customer support chatbot, a coding assistant, a research agent, or an enterprise AI application, HackAgent helps identify vulnerabilities before they can be exploited in production.&lt;/p&gt;

&lt;p&gt;In this tutorial, you’ll learn how to install HackAgent, explore its interactive Terminal User Interface (TUI), understand its security testing workflow, configure attacks, interpret results, and use the toolkit to strengthen the security of your AI agents.&lt;/p&gt;

&lt;p&gt;By the end of this guide, you’ll have a solid understanding of how HackAgent works and how it can be integrated into your AI development and security testing workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  Installing HackAgent
&lt;/h3&gt;

&lt;p&gt;HackAgent is distributed as a Python package and works on Linux, macOS, and Windows. The recommended approach is to install it inside a Python virtual environment to avoid dependency conflicts.&lt;/p&gt;

&lt;h4&gt;
  
  
  Prerequisites
&lt;/h4&gt;

&lt;p&gt;Before installing HackAgent, ensure your system meets the following requirements:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python 3.10 or later&lt;/li&gt;
&lt;li&gt;pip&lt;/li&gt;
&lt;li&gt;Terminal or Command Prompt&lt;/li&gt;
&lt;li&gt;Internet connection for package installation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can verify your Python installation by running:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python3 &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If Python is not installed, download the latest version from the official Python website.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvwdcsodcaqs2cmc5qudr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvwdcsodcaqs2cmc5qudr.png" width="800" height="187"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 1: Create a Virtual Environment
&lt;/h4&gt;

&lt;p&gt;Create an isolated Python environment for HackAgent.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python3 &lt;span class="nt"&gt;-m&lt;/span&gt; venv .ve
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This creates a new directory named .venv containing an isolated Python environment.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 2: Activate the Environment
&lt;/h4&gt;

&lt;h4&gt;
  
  
  macOS / Linux
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;source&lt;/span&gt; .venv/bin/activate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fufu2vg8hxka2bs8xp8z4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fufu2vg8hxka2bs8xp8z4.png" width="800" height="165"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Windows (PowerShell)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;venv&lt;/span&gt;&lt;span class="n"&gt;\Scripts\Activate.ps1&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Windows (Command Prompt)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;.venv&lt;span class="se"&gt;\S&lt;/span&gt;cripts&lt;span class="se"&gt;\a&lt;/span&gt;ctivate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once activated, your terminal should display something similar to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;(.venv)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;indicating that the virtual environment is active.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3: Install HackAgent
&lt;/h4&gt;

&lt;p&gt;Install the latest release directly from PyPI.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;hackagent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The installer automatically downloads HackAgent along with all required dependencies.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fggpkzb4w94s89jhmadqj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fggpkzb4w94s89jhmadqj.png" width="800" height="486"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 4: Verify the Installation
&lt;/h4&gt;

&lt;p&gt;After installation, verify that everything is working correctly.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;hackagent &lt;span class="nt"&gt;--help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkux4k84opd3pds57zqin.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkux4k84opd3pds57zqin.png" width="799" height="288"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fanjzjlv1iz443fs70wl6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fanjzjlv1iz443fs70wl6.png" width="800" height="290"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fi2qgjrkdxovlapojofra.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fi2qgjrkdxovlapojofra.png" width="799" height="273"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;hackagent &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the installation was successful, you’ll see the installed version along with the available CLI commands.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flzs48xa5lbpybo33g6rx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flzs48xa5lbpybo33g6rx.png" width="800" height="170"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Your First HackAgent Run
&lt;/h3&gt;

&lt;p&gt;Once HackAgent is installed, you can begin evaluating an AI agent for common security vulnerabilities.&lt;/p&gt;

&lt;p&gt;A typical security assessment follows this workflow:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create or connect an AI agent
        │
        ▼
Choose an attack technique
        │
        ▼
Generate adversarial prompts
        │
        ▼
Execute attacks
        │
        ▼
Evaluate responses
        │
        ▼
Generate security report
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;HackAgent automates this entire pipeline, allowing you to focus on identifying and fixing vulnerabilities rather than manually crafting attack prompts.&lt;/p&gt;

&lt;h3&gt;
  
  
  Getting Started with HackAgent CLI
&lt;/h3&gt;

&lt;p&gt;Once HackAgent is installed successfully, you’re ready to explore its command-line interface (CLI). The CLI provides an easy way to launch security assessments, manage reports, configure settings, and interact with different attack techniques.&lt;/p&gt;

&lt;p&gt;To display all available commands and options, run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;hackagent &lt;span class="nt"&gt;--help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You should see an output similar to this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Usage: hackagent [OPTIONS] COMMAND [ARGS]...

Commands:
  attack Run a security attack
  report View reports
  dashboard Launch dashboard
  web Open HackAgent web interface
  config Configure HackAgent
  ...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;The available commands may vary slightly depending on the HackAgent version you’re using.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Launch the Interactive CLI
&lt;/h4&gt;

&lt;p&gt;Once HackAgent is installed successfully, you’re ready to explore its interactive &lt;strong&gt;Terminal User Interface (TUI)&lt;/strong&gt;. Instead of relying on long command-line arguments, the TUI provides a visual interface for configuring target agents, selecting attack techniques, monitoring attack execution, viewing results, and managing configuration — all from your terminal.&lt;/p&gt;

&lt;p&gt;To launch the interactive interface, simply run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;hackagent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Within a few seconds, HackAgent opens a full-screen terminal dashboard similar to the one shown below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0pmwrsly8a0j346eonwg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0pmwrsly8a0j346eonwg.png" width="800" height="196"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Understanding the HackAgent Interface
&lt;/h4&gt;

&lt;p&gt;The HackAgent TUI is divided into four primary sections, each designed for a different stage of the AI security testing workflow.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Target Agents&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Attacks&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Results&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Config&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can navigate between these tabs using your keyboard, making it easy to manage the entire testing process without leaving the terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Target Agents
&lt;/h4&gt;

&lt;p&gt;The &lt;strong&gt;Target Agents&lt;/strong&gt; tab is your starting point. Before launching any security assessment, you need to define the AI agent you want to evaluate.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbzxiho38eob7khki85fg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbzxiho38eob7khki85fg.png" width="800" height="289"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This page displays:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Total registered target agents&lt;/li&gt;
&lt;li&gt;Active agents&lt;/li&gt;
&lt;li&gt;Current system status&lt;/li&gt;
&lt;li&gt;List of configured agents&lt;/li&gt;
&lt;li&gt;Agent metadata&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Initially, the list will be empty because no target agent has been configured.&lt;/p&gt;

&lt;p&gt;Once you add an agent, it will appear in the table along with details such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Agent Name&lt;/li&gt;
&lt;li&gt;Agent Type&lt;/li&gt;
&lt;li&gt;Endpoint&lt;/li&gt;
&lt;li&gt;Status&lt;/li&gt;
&lt;li&gt;Creation Time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This allows you to manage multiple AI agents from a single interface.&lt;/p&gt;

&lt;p&gt;Typical examples include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Customer Support Chatbot&lt;/li&gt;
&lt;li&gt;Travel Booking Agent&lt;/li&gt;
&lt;li&gt;LangChain Agent&lt;/li&gt;
&lt;li&gt;OpenAI SDK Agent&lt;/li&gt;
&lt;li&gt;Google ADK Agent&lt;/li&gt;
&lt;li&gt;LiteLLM Application&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  2. Attacks
&lt;/h4&gt;

&lt;p&gt;The &lt;strong&gt;Attacks&lt;/strong&gt; tab is where the actual security testing takes place.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frikhu4e0lv7j88kks1as.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frikhu4e0lv7j88kks1as.png" width="799" height="288"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This section contains the complete attack configuration panel.&lt;/p&gt;

&lt;p&gt;Here you can configure:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Target Agent&lt;/li&gt;
&lt;li&gt;Attack Technique&lt;/li&gt;
&lt;li&gt;Generator Model&lt;/li&gt;
&lt;li&gt;Judge Model&lt;/li&gt;
&lt;li&gt;Dataset&lt;/li&gt;
&lt;li&gt;Guardrails&lt;/li&gt;
&lt;li&gt;Runtime Configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On the right side, HackAgent displays a real-time &lt;strong&gt;Attack Log Viewer&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;During execution, this panel shows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Attack progress&lt;/li&gt;
&lt;li&gt;Generated adversarial prompts&lt;/li&gt;
&lt;li&gt;Target responses&lt;/li&gt;
&lt;li&gt;Evaluation logs&lt;/li&gt;
&lt;li&gt;Warnings&lt;/li&gt;
&lt;li&gt;Errors&lt;/li&gt;
&lt;li&gt;Execution status&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The live logs make it easy to monitor long-running security evaluations without switching to another terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  Attack Configuration
&lt;/h4&gt;

&lt;p&gt;Before starting an attack, you’ll typically configure:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Target AI Agent&lt;/li&gt;
&lt;li&gt;Attack Method&lt;/li&gt;
&lt;li&gt;Evaluation Dataset&lt;/li&gt;
&lt;li&gt;Optional Guardrails&lt;/li&gt;
&lt;li&gt;Attack Parameters&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Once everything is configured, HackAgent begins generating adversarial prompts automatically and evaluates how well your AI agent withstands various attacks.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Results
&lt;/h4&gt;

&lt;p&gt;After an attack completes, all findings are stored under the &lt;strong&gt;Results&lt;/strong&gt;  tab.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fk8xhxht57fr2c1xlghhk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fk8xhxht57fr2c1xlghhk.png" width="800" height="290"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This section provides a centralized location for reviewing previous security assessments.&lt;/p&gt;

&lt;p&gt;Each completed run includes information such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Target Agent&lt;/li&gt;
&lt;li&gt;Attack Technique&lt;/li&gt;
&lt;li&gt;Success or Failure&lt;/li&gt;
&lt;li&gt;Timestamp&lt;/li&gt;
&lt;li&gt;Security Evaluation Results&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Selecting a run displays detailed information in the right-hand panel, making it easy to inspect individual attack outcomes and understand how the AI agent responded.&lt;/p&gt;

&lt;p&gt;The Results page also includes useful features like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Refresh results&lt;/li&gt;
&lt;li&gt;Export results as CSV&lt;/li&gt;
&lt;li&gt;Filter previous runs&lt;/li&gt;
&lt;li&gt;Limit displayed records&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These capabilities make it easier to analyze trends across multiple security evaluations and share reports with your team.&lt;/p&gt;

&lt;h4&gt;
  
  
  4. Configuration
&lt;/h4&gt;

&lt;p&gt;The &lt;strong&gt;Config&lt;/strong&gt; tab lets you manage HackAgent’s global settings.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwda2pnk0oh9sse91x8z1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwda2pnk0oh9sse91x8z1.png" width="799" height="288"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From this screen, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;View the configuration file location&lt;/li&gt;
&lt;li&gt;Save configuration changes&lt;/li&gt;
&lt;li&gt;Reset settings to their default values&lt;/li&gt;
&lt;li&gt;Validate your configuration&lt;/li&gt;
&lt;li&gt;View system information&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The bottom section also displays useful environment details such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python Version&lt;/li&gt;
&lt;li&gt;Installed HackAgent CLI Version&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Python Version: 3.13.13
CLI Version: 0.11.0
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This information is particularly helpful when troubleshooting installation issues or reporting bugs.&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;As AI agents become more capable and autonomous, securing them is no longer optional — it’s an essential part of the development lifecycle. Modern AI applications don’t just generate text; they interact with external tools, access sensitive data, execute workflows, and make decisions on behalf of users. This expanded functionality also increases the potential attack surface, making AI-specific threats such as prompt injection, jailbreaks, goal hijacking, tool misuse, and system prompt leakage serious security concerns.&lt;/p&gt;

&lt;p&gt;HackAgent provides an open-source, research-backed solution for evaluating these risks through automated AI security testing. With support for multiple AI frameworks, a powerful command-line interface, an interactive Terminal User Interface (TUI), real-time attack monitoring, comprehensive reporting, and a growing collection of adversarial attack techniques, HackAgent enables developers and security teams to identify vulnerabilities before they reach production.&lt;/p&gt;

&lt;p&gt;In this guide, you learned how to install HackAgent, verify the installation, explore its CLI, launch the interactive TUI, and understand the purpose of each major component, including &lt;strong&gt;Target Agents&lt;/strong&gt; , &lt;strong&gt;Attacks&lt;/strong&gt; , &lt;strong&gt;Results&lt;/strong&gt; , and &lt;strong&gt;Configuration&lt;/strong&gt;. These fundamentals provide a solid starting point for incorporating AI security testing into your development workflow.&lt;/p&gt;

&lt;p&gt;However, installation is only the beginning. The real value of HackAgent comes from testing real AI agents, experimenting with different attack techniques, analyzing generated reports, and continuously improving your application’s security posture. Whether you’re building a customer support chatbot, an AI coding assistant, an enterprise knowledge agent, or a multi-agent system, regular security evaluations should become a standard part of your release process.&lt;/p&gt;

&lt;p&gt;As the AI ecosystem continues to evolve, new attack techniques and vulnerabilities will emerge. Tools like HackAgent help developers stay ahead by making AI red teaming more accessible, repeatable, and automated.&lt;/p&gt;

&lt;p&gt;If you’re developing AI-powered applications, now is the perfect time to start integrating security testing into your workflow. Detect vulnerabilities early, strengthen your AI agents, and build systems that are not only intelligent but also resilient against real-world attacks.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vulnerability</category>
      <category>aiagentsecurity</category>
      <category>aisecurity</category>
      <category>hackagent</category>
    </item>
    <item>
      <title>TechLatest AI &amp; Tech Weekly #24</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Sat, 11 Jul 2026 13:49:45 +0000</pubDate>
      <link>https://dev.to/techlatestnet/techlatest-ai-tech-weekly-24-37n7</link>
      <guid>https://dev.to/techlatestnet/techlatest-ai-tech-weekly-24-37n7</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgq9q4dy8ung8p7wbjrsc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgq9q4dy8ung8p7wbjrsc.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Welcome to this week’s edition of &lt;strong&gt;TechLatest AI &amp;amp; Tech Weekly&lt;/strong&gt;  👋&lt;/p&gt;

&lt;p&gt;Here’s a curated roundup of our latest blogs, notable product launches, and the most interesting AI &amp;amp; ML updates from July 06–July 11, 2026.&lt;/p&gt;

&lt;h3&gt;
  
  
  AI/ML News Roundup: July 06–July 11, 2026
&lt;/h3&gt;

&lt;p&gt;Key highlights from this week’s AI developments include frontier model advancements with agentic capabilities, massive funding rounds reshaping valuations, and practical product launches for developers and enterprises. These updates emphasize autonomous agents, infrastructure scaling, and open-weight benchmarks relevant to builders and researchers.&lt;/p&gt;

&lt;h3&gt;
  
  
  TL;DR
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI, Meta, NVIDIA, and xAI&lt;/strong&gt; introduced major AI releases, including &lt;strong&gt;GPT-5.6&lt;/strong&gt; , &lt;strong&gt;GPT-Live&lt;/strong&gt; , &lt;strong&gt;GPT-Realtime 2.1 Mini&lt;/strong&gt; , &lt;strong&gt;Muse Spark 1.1&lt;/strong&gt; , &lt;strong&gt;Grok 4.5&lt;/strong&gt; , and &lt;strong&gt;Audex Nemotron Labs&lt;/strong&gt; , pushing the boundaries of reasoning, voice AI, coding, and multimodal intelligence.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-source AI continued to evolve rapidly&lt;/strong&gt; with launches like &lt;strong&gt;LingBot-World Infinity&lt;/strong&gt; , &lt;strong&gt;LingBot-VLA 2.0&lt;/strong&gt; , &lt;strong&gt;LingBot Vision-A 1B&lt;/strong&gt; , and &lt;strong&gt;Liquid AI’s AntiDoom&lt;/strong&gt; , advancing robotics, world models, and AI training techniques.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The AI ecosystem expanded beyond language models&lt;/strong&gt; , with breakthroughs in robotics, autonomous agents, enterprise AI platforms, and world simulation models from companies including Mistral, Kyutai, Microsoft, and Databricks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Investment and infrastructure momentum remained strong&lt;/strong&gt; , driven by IPO activity, billion-dollar funding rounds, enterprise AI adoption, and continued investment in next-generation AI chips and hardware.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Global AI regulation accelerated&lt;/strong&gt; , with new policies, safety audits, international governance discussions, and regulatory actions shaping the future deployment of advanced AI systems.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TechLatest published three hands-on tutorials&lt;/strong&gt; , covering &lt;strong&gt;OpenWiki&lt;/strong&gt; for automated repository documentation, &lt;strong&gt;Orca&lt;/strong&gt; for multi-agent AI coding workflows, and the &lt;strong&gt;Zero AI Coding Agent&lt;/strong&gt; with complete installation, local models, Ollama, OpenAI, MCP, plugins, and production-ready setup.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Open-Source AI, AI Agents, Voice AI &amp;amp; Developer Releases
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Meet LingBot-World Infinity
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;LingBot-World Infinity (LingBot-World 2.0)&lt;/strong&gt; is an open-source causal world model from Ant Group’s Robbyant that enables long-horizon interactive simulations with an agentic harness. It supports real-time 720p generation, multi-player interaction, and autonomous agents capable of planning actions while dynamically evolving virtual environments. &lt;a href="https://technology.robbyant.com/lingbot-world-v2" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Liquid AI Introduces AntiDoom
&lt;/h4&gt;

&lt;p&gt;Liquid AI unveiled &lt;strong&gt;AntiDoom&lt;/strong&gt; , a new training approach that addresses &lt;strong&gt;“doom loops”&lt;/strong&gt; in foundation model post-training through &lt;strong&gt;FTPO (Forward Trajectory Preference Optimization)&lt;/strong&gt;. The method aims to improve long-term stability, reasoning quality, and robustness during reinforcement learning. &lt;a href="https://www.liquid.ai/blog/antidoom" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  LingBot-VLA 2.0 Released
&lt;/h4&gt;

&lt;p&gt;Ant Group’s Robbyant unveiled &lt;strong&gt;LingBot-VLA 2.0&lt;/strong&gt; , an open-source &lt;strong&gt;6B Vision-Language-Action (VLA)&lt;/strong&gt; foundation model that enables robots to understand visual scenes, follow natural language instructions, and perform complex manipulation tasks across multiple robot platforms. &lt;a href="https://dev.to/sam_hiotis_117598dbfa3ac2/robbyant-releases-lingbot-vla-20-an-open-source-6b-vision-language-action-vla-model-for-3c3h-temp-slug-1078122"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  RobbyAnt Open-Sources LingBot Vision-A 1B
&lt;/h4&gt;

&lt;p&gt;Ant Group introduced &lt;strong&gt;LingBot Vision-A 1B&lt;/strong&gt; , an open-source vision foundation model designed for dense spatial perception. Built around boundary-centric visual understanding, it helps AI systems and robots achieve more accurate scene understanding for real-world applications. &lt;a href="https://aiweekly.co/alerts/robbyant-open-sources-lingbot-video-an-moe-model-for-robotics" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  OpenAI Launches GPT-Live
&lt;/h4&gt;

&lt;p&gt;OpenAI announced &lt;strong&gt;GPT-Live&lt;/strong&gt; and &lt;strong&gt;GPT-Live-1 Mini&lt;/strong&gt; , a new generation of full-duplex voice models that enable natural, real-time conversations while delegating deeper reasoning tasks to GPT-5.5. &lt;a href="https://openai.com/index/introducing-gpt-live/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  OpenAI Releases GPT-Realtime 2.1 Mini
&lt;/h4&gt;

&lt;p&gt;OpenAI launched &lt;strong&gt;GPT-Realtime 2.1 Mini&lt;/strong&gt; , bringing reasoning and tool use to its low-latency Realtime API while maintaining the same pricing as the previous Mini model. &lt;a href="https://developers.openai.com/api/docs/models/gpt-realtime-2.1-mini" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  SpaceXAI Releases Grok 4.5
&lt;/h4&gt;

&lt;p&gt;SpaceXAI introduced &lt;strong&gt;Grok 4.5&lt;/strong&gt; , the latest version of its frontier language model with improved reasoning, coding, multimodal understanding, and enterprise capabilities. &lt;a href="https://x.ai/news/grok-4-5" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Meta Introduces Muse Spark 1.1 &amp;amp; Meta Model API
&lt;/h4&gt;

&lt;p&gt;Meta unveiled &lt;strong&gt;Muse Spark 1.1&lt;/strong&gt; , the latest flagship multimodal reasoning model from Meta Superintelligence Labs, alongside the &lt;strong&gt;Meta Model API&lt;/strong&gt; in public preview. The release brings stronger agentic coding, multimodal reasoning, and a developer API with pay-as-you-go pricing. &lt;a href="https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  OpenAI Releases GPT-5.6
&lt;/h4&gt;

&lt;p&gt;OpenAI launched the &lt;strong&gt;GPT-5.6&lt;/strong&gt; family, introducing &lt;strong&gt;Sol&lt;/strong&gt; , &lt;strong&gt;Terra&lt;/strong&gt; , and &lt;strong&gt;Luna&lt;/strong&gt; for different performance and pricing tiers. The models deliver stronger reasoning, coding, and tool-calling capabilities across ChatGPT, Codex, and the OpenAI API. &lt;a href="https://openai.com/index/gpt-5-6/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  NVIDIA Releases Audex Nemotron Labs
&lt;/h4&gt;

&lt;p&gt;NVIDIA introduced &lt;strong&gt;Audex Nemotron Labs 30B-A3B&lt;/strong&gt; , a unified audio-text language model that combines speech understanding, speech generation, audio reasoning, and text intelligence without sacrificing LLM performance. &lt;a href="https://huggingface.co/nvidia/Nemotron-Labs-Audex-30B-A3B" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Hugging Face &amp;amp; Open-Source Ecosystem
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Mistral released Robostral Navigate&lt;/strong&gt; on July 9, 2026, its first entry into autonomous robot navigation, continuing Mistral’s commitment to open-weight models for specialized robotics tasks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Kyutai and General Intuition released MIRA&lt;/strong&gt; on July 7, 2026, an open-source AI world model that simulates a fully playable real-time multiplayer Rocket League game entirely inside a neural network.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MIRA is a 5-billion-parameter latent diffusion model&lt;/strong&gt; trained on 10,000 hours of gameplay, generating every frame on the fly without a game engine or physics system.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tufa Labs won the ARC-AGI-3’s $37.5K milestone contest&lt;/strong&gt; on July 8, 2026 by wrapping a small open-source Qwen model in a coding agent harness, beating the field and demonstrating that smart agent design can outperform raw model size&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Frontier Model Advancements &amp;amp; Agentic Capabilities
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI launched the GPT-5.6 family&lt;/strong&gt; (Sol, Terra, Luna) on July 9, 2026, with models now being integrated into Microsoft 365 Copilot products like Word and Excel.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.6 is now being publicly released globally&lt;/strong&gt; , ending government-requested limits, with the models integrated into Microsoft 365 Copilot products.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic released Claude Cowork&lt;/strong&gt; on mobile and web on July 9, 2026, expanding access beyond desktop for AI-assisted admin reports and checklists.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic extended Claude Fable 5 free access&lt;/strong&gt; for paid subscribers through July 12, 2026 (four more days before per-token billing starts on July 13).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Meta introduced Muse Image&lt;/strong&gt; on July 9, 2026, its first in-house image generation model built inside Alexander Wang’s Superintelligence Labs, debuting at number two on Arena Leaderboards and already rolling out across Instagram, WhatsApp, and Meta AI.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Meta teased Muse Video&lt;/strong&gt; on July 9, 2026, as the next move in its head-to-head competition with OpenAI on generative media.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Meta launched Muse Spark 1.1&lt;/strong&gt; on July 10, 2026, its first pay-to-use AI coding tool designed to challenge OpenAI and Anthropic through aggressive pricing and higher performance benchmarks.&lt;a href="https://www.distillintelligence.com/briefings/ai-leaders-2026-07-10" rel="noopener noreferrer"&gt;distillintelligence&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;xAI released Grok 4.5&lt;/strong&gt; on July 10, 2026, which ranked fourth on the Intelligence Index, had the best agentic tool use, but had a 54% hallucination rate on its first day.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Microsoft is quietly swapping OpenAI and Anthropic models&lt;/strong&gt; for its own in-house MAI models inside flagship apps like Excel and Outlook, per Bloomberg reports on July 8, 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DoorDash built DashBench&lt;/strong&gt; to grade AI code reviewers, finding Kimi K2.6 paired with Claude Fable 5 caught 65% of real bugs, including 8 out of 10 critical issues at just $3.81 per code change.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Massive Funding Rounds Reshaping Valuations
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic achieved a $30 billion revenue run-rate&lt;/strong&gt; and appointed former Fed Chair Ben Bernanke to its trust board, per reports on July 9, 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic and OpenAI have both reportedly filed for historic IPOs&lt;/strong&gt; , marking a major shift in the AI industry’s financial landscape.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MiniMax is seeking $2.05 billion in capital&lt;/strong&gt; as Chinese AI firms pursue massive expansion.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DeepSeek is developing its own in-house AI chips&lt;/strong&gt; amid massive expansion efforts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SK Hynix debuted on Nasdaq&lt;/strong&gt; on July 10, 2026, in a $26.5 billion share sale, with shares rising 13% on debut ($168.01, $1.27T market cap, 7x oversubscribed) — the AI infrastructure IPO signal for Anthropic and others.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Did You Know Labs raised funding&lt;/strong&gt; as AI startups continue to attract capital amid IPO momentum.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Practical Product Launches for Developers &amp;amp; Enterprises
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Schneider Electric built its LLMOps foundations at enterprise scale with LangSmith&lt;/strong&gt; on July 9, 2026, demonstrating enterprise-scale MLOps implementation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Databricks launched Lakeflow&lt;/strong&gt; on July 9, 2026, a new era of an agentic data engineering platform.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cognition released SWE-1.7&lt;/strong&gt; on July 9, 2026, offering frontier intelligence at a fraction of the cost.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI unveiled ChatGPT Work&lt;/strong&gt; on July 10, 2026, an agent in its popular chatbot designed to execute tasks across different applications and files, marking its latest push into workplace automation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Microsoft announced the launch of Microsoft Frontier Company&lt;/strong&gt; on July 7, 2026, a $2.5B AI initiative aimed at driving enterprise-scale AI adoption and measurable outcomes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Governance, Ethics &amp;amp; Regulation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;UN called for swift global regulation of AI&lt;/strong&gt; on July 6, 2026, with the UN chief warning “AI is developing faster than rules can keep up” as &lt;strong&gt;169 countries met in Geneva&lt;/strong&gt; for the inaugural UN global dialogue on AI governance.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;UN AI for Good Commission's first meeting in Geneva&lt;/strong&gt; took place on July 8, 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Illinois became the first US state&lt;/strong&gt; to require annual third-party safety audits for major AI developers on July 7, 2026, with both Anthropic and OpenAI backing the bill.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Beijing is considering restricting overseas access&lt;/strong&gt; to China’s top AI models, including open-weight releases from ByteDance, Alibaba, and Zhipu AI on July 8, 2026, mirroring the US export control playbook but in reverse.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ByteDance and Alibaba are pulling AI companion features&lt;/strong&gt; from Doubao and Qwen ahead of Beijing’s July 15 deadline for new rules on AI emotional dependency.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;President Trump cancelled a scheduled Oval Office signing ceremony&lt;/strong&gt; for a new AI executive order on July 6, 2026, citing concern that signing would “undermine America’s lead over China”.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;August 1 formal deadline for NSA and CISA to deliver classified frontier model benchmarks&lt;/strong&gt; still stands regardless of whether a new executive order is signed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;UK designated cloud service providers&lt;/strong&gt; Microsoft, Google, Amazon, and Oracle as critical third-party suppliers to its financial sector on July 10, 2026, bringing them under direct regulatory oversight.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;EU charged Meta Platforms’ Instagram and Facebook&lt;/strong&gt; on July 10, 2026, with breaching tech rules, targeting features designed to keep users hooked (autoplay and infinite scroll) or risk fines.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Infrastructure &amp;amp; Hardware
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DeepSeek is developing its own in-house AI chips&lt;/strong&gt; amid massive expansion efforts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Taiwanese memory chipmaker Nanya&lt;/strong&gt; plans capital spending of more than T$200 billion ($6.2 billion) in 2027, roughly four times this year’s figure, amid soaring demand for memory chips as it rides the AI boom.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI and Meta launched major new models&lt;/strong&gt; as the industry pivots toward IPOs and autonomous agents amid intensifying global regulatory scrutiny.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SK Hynix’s US listing&lt;/strong&gt; on July 10, 2026, served as a key test of investors’ belief in the durability of the AI boom, coming after a recent pullback in semiconductor stocks.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Blogs We Published This Week
&lt;/h3&gt;

&lt;h4&gt;
  
  
  How to Automatically Document Your Repository with OpenWiki
&lt;/h4&gt;

&lt;p&gt;Learn how to use &lt;strong&gt;OpenWiki&lt;/strong&gt; to automatically generate and maintain documentation for your codebase. This guide walks through installation, configuration, GitHub integration, and how AI agents can leverage always up-to-date project documentation for better coding workflows.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/how-to-automatically-document-your-repository-with-openwiki-5337"&gt;How to Automatically Document Your Repository with OpenWiki&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Orca Tutorial: Multi-Agent AI Coding Workspace from Scratch
&lt;/h4&gt;

&lt;p&gt;A complete guide to setting up &lt;strong&gt;Orca&lt;/strong&gt; , an open-source AI coding workspace that brings together Git, AI coding agents, terminals, and developer tools into a single interface for faster software development.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/orca-tutorial-multi-agent-ai-coding-workspace-from-scratch-3lem"&gt;Orca Tutorial: Multi-Agent AI Coding Workspace from Scratch&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Zero AI Coding Agent: The Complete Installation &amp;amp; Setup Guide
&lt;/h4&gt;

&lt;p&gt;A comprehensive masterclass on &lt;strong&gt;Zero AI Coding Agent&lt;/strong&gt; , covering installation, local and cloud model providers, Ollama, OpenAI, MCP integration, plugins, databases, and production-ready configuration for AI-powered software development.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/zero-ai-coding-agent-the-complete-installation-setup-guide-local-models-openai-ollama-mcp-2ig8"&gt;Zero AI Coding Agent: The Complete Installation &amp;amp; Setup Guide (Local Models, OpenAI, Ollama, MCP…&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>newsandupdates</category>
      <category>newsandblogs</category>
      <category>technews</category>
      <category>technologynews</category>
    </item>
    <item>
      <title>Zero AI Coding Agent: The Complete Installation &amp; Setup Guide (Local Models, OpenAI, Ollama, MCP…</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Thu, 09 Jul 2026 13:37:21 +0000</pubDate>
      <link>https://dev.to/techlatestnet/zero-ai-coding-agent-the-complete-installation-setup-guide-local-models-openai-ollama-mcp-2ig8</link>
      <guid>https://dev.to/techlatestnet/zero-ai-coding-agent-the-complete-installation-setup-guide-local-models-openai-ollama-mcp-2ig8</guid>
      <description>&lt;h3&gt;
  
  
  Zero AI Coding Agent: The Complete Installation &amp;amp; Setup Guide (Local Models, OpenAI, Ollama, MCP, Plugins &amp;amp; More)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1fq3bbxz6ekysrcnmv8q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1fq3bbxz6ekysrcnmv8q.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AI coding agents have transformed the way developers build software. Instead of simply generating snippets of code, modern AI agents can understand an entire codebase, edit files, execute terminal commands, run tests, search repositories, and even automate complex development workflows — all without leaving your terminal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Zero&lt;/strong&gt; is one of the newest open-source AI coding agents designed specifically for developers who prefer working from the command line. Unlike traditional AI assistants, Zero combines an interactive terminal interface with powerful automation capabilities, allowing you to inspect repositories, modify code, execute shell commands, manage long-running sessions, and integrate with external tools — all while keeping you in complete control through its built-in permissions and sandbox system.&lt;/p&gt;

&lt;p&gt;One of Zero’s biggest strengths is its flexibility. It isn’t tied to a single AI provider. You can use cloud models from OpenAI, Anthropic, Google Gemini, Groq, OpenRouter, DeepSeek, xAI, Mistral, GitHub Models, and many others, or run everything locally with Ollama and LM Studio. This gives you the freedom to choose the model that best fits your budget, performance requirements, and privacy preferences.&lt;/p&gt;

&lt;p&gt;In this comprehensive guide, you’ll learn everything you need to get started with Zero. We’ll walk through the installation process, configure your first AI provider, explore the interactive Terminal User Interface (TUI), send your first prompts, and understand how Zero’s safety model works. As the guide progresses, we’ll also cover advanced features such as zero exec, worktrees, session management, MCP servers, plugins, hooks, skills, specialist agents, repository analysis, sandboxing, and real-world development workflows.&lt;/p&gt;

&lt;p&gt;Whether you’re a beginner looking for your first AI coding assistant or an experienced developer searching for a powerful terminal-native alternative to tools like Claude Code, Codex CLI, or Gemini CLI, this guide will help you become productive with Zero from the ground up.&lt;/p&gt;

&lt;h3&gt;
  
  
  What You’ll Learn
&lt;/h3&gt;

&lt;p&gt;By the end of this guide, you’ll be able to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Install Zero on Windows, macOS, and Linux.&lt;/li&gt;
&lt;li&gt;Configure cloud or local AI providers.&lt;/li&gt;
&lt;li&gt;Connect OpenAI, Anthropic, Gemini, OpenRouter, Ollama, LM Studio, and more.&lt;/li&gt;
&lt;li&gt;Understand the Zero Terminal User Interface (TUI).&lt;/li&gt;
&lt;li&gt;Use zero exec For automation and scripting.&lt;/li&gt;
&lt;li&gt;Work with sessions, repository context, and worktrees.&lt;/li&gt;
&lt;li&gt;Configure MCP servers, plugins, hooks, skills, and specialist agents.&lt;/li&gt;
&lt;li&gt;Understand Zero’s permission model and sandbox system.&lt;/li&gt;
&lt;li&gt;Build real-world AI-powered development workflows directly from your terminal.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 1: Install Zero AI Coding Agent
&lt;/h3&gt;

&lt;p&gt;Before exploring Zero’s features, you need to install it on your system. Zero is available for &lt;strong&gt;Linux, macOS, and Windows&lt;/strong&gt; and supports both &lt;strong&gt;x64&lt;/strong&gt; and &lt;strong&gt;ARM64&lt;/strong&gt; architectures.&lt;/p&gt;

&lt;p&gt;The easiest installation method is through &lt;strong&gt;npm&lt;/strong&gt; , which automatically downloads the correct native Zero binary for your operating system.&lt;/p&gt;

&lt;h4&gt;
  
  
  Install using npm
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; @gitlawb/zero
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the installation completes successfully, verify it by checking the installed version:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;zero &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You should see the installed Zero version printed in your terminal.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Febgcu6wc8u848w9ckxf2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Febgcu6wc8u848w9ckxf2.png" width="799" height="274"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Verify Your Installation
&lt;/h4&gt;

&lt;p&gt;Zero also includes a built-in diagnostic command that checks whether everything is configured correctly.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;zero doctor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This command verifies your installation, checks for any missing dependencies, detects available AI providers, and reports potential configuration issues before you start using the tool.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Installing the npm package downloads the appropriate native Zero binary for your platform from GitHub Releases, so you don't need to build the project from source unless you plan to contribute to its development.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Step 2: Verify Your Installation with zero doctor
&lt;/h3&gt;

&lt;p&gt;After installing Zero, the next step is to verify that everything is working correctly. Zero includes a built-in diagnostic tool called doctor That checks your installation and highlights anything that still needs to be configured.&lt;/p&gt;

&lt;p&gt;Run the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;zero doctor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For a fresh installation, you’ll likely see an output similar to this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Zero doctor report
Overall: fail
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Don’t panic if the overall status says &lt;strong&gt;fail&lt;/strong&gt;. This is completely normal on a fresh installation because Zero hasn’t been connected to an AI provider yet.&lt;/p&gt;

&lt;h4&gt;
  
  
  Runtime Check
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[pass] runtime.go - Zero Go runtime is available (go).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This confirms that Zero is installed correctly and its Go runtime is working as expected. No action is required here.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdtnp23csp9835h1tfd89.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdtnp23csp9835h1tfd89.png" width="799" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Configuration Check
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[warn] config.files - No explicit Zero config files were inspected.
[warn] config.validation - No Zero config files were available to validate.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These warnings simply mean that Zero hasn’t created any configuration files yet. Since this is your first time running the tool, there are no settings to validate.&lt;/p&gt;

&lt;p&gt;Once you complete the setup wizard, Zero will automatically generate the required configuration files.&lt;/p&gt;

&lt;h4&gt;
  
  
  Provider Configuration
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[fail] provider.config - No LLM provider is configured.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the most important message in the report and the primary reason why the overall health check fails.&lt;/p&gt;

&lt;p&gt;Zero requires access to an AI model before it can perform tasks like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Answering coding questions&lt;/li&gt;
&lt;li&gt;Editing files&lt;/li&gt;
&lt;li&gt;Generating code&lt;/li&gt;
&lt;li&gt;Running agent workflows&lt;/li&gt;
&lt;li&gt;Executing zero exec&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Until you configure a provider such as OpenAI, Anthropic, OpenRouter, Ollama, Gemini, or another supported service, Zero has no model to communicate with.&lt;/p&gt;

&lt;p&gt;You’ll configure this in the next step using the built-in setup wizard.&lt;/p&gt;

&lt;h4&gt;
  
  
  Provider Validation Skipped
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[warn] provider.model - Model validity was skipped because provider config is unavailable.

[warn] provider.connectivity - Connectivity check was skipped because provider runtime did not resolve.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Since no AI provider has been configured, Zero can’t verify whether your selected model exists or whether it can successfully connect to the provider’s API.&lt;/p&gt;

&lt;p&gt;These warnings will disappear once you finish the provider setup.&lt;/p&gt;

&lt;h4&gt;
  
  
  Sandbox Support
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[pass] sandbox.backend - Native sandbox backend macos-seatbelt is available.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This indicates that Zero successfully detected macOS’s native sandboxing system.&lt;/p&gt;

&lt;p&gt;The sandbox helps protect your system by controlling file access, shell commands, network requests, and other potentially destructive operations. Instead of allowing unrestricted access, Zero asks for permission before performing sensitive actions.&lt;/p&gt;

&lt;p&gt;This is one of Zero’s key security features and helps prevent accidental or unintended changes to your machine.&lt;/p&gt;

&lt;h4&gt;
  
  
  Language Server Warning
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[warn] lsp.servers - 3 language server(s) missing from PATH
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Zero also checks whether Language Server Protocol (LSP) tools are installed for popular programming languages.&lt;/p&gt;

&lt;p&gt;In this example, the following language servers are missing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;gopls&lt;/strong&gt; for Go&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;pyright-langserver&lt;/strong&gt; for Python&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;typescript-language-server&lt;/strong&gt; for JavaScript and TypeScript&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without these language servers, Zero can still read, edit, and generate code. However, advanced IDE-like features — such as symbol navigation, intelligent refactoring, accurate code understanding, and language-aware edits — may be limited.&lt;/p&gt;

&lt;p&gt;If you work with these languages regularly, you can install them using the recommended commands:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Go&lt;/span&gt;
go &lt;span class="nb"&gt;install &lt;/span&gt;golang.org/x/tools/gopls@latest

&lt;span class="c"&gt;# Python&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; pyright

&lt;span class="c"&gt;# JavaScript / TypeScript&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; typescript typescript-language-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2jwrdie47gkz73xdes1m.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2jwrdie47gkz73xdes1m.png" width="800" height="507"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3: Configure Your First AI Provider
&lt;/h3&gt;

&lt;p&gt;Now that Zero is installed and you’ve verified the installation using zero doctorThe next step is to configure an AI provider. Zero supports a wide range of cloud and local AI providers, allowing you to choose the model that best suits your workflow.&lt;/p&gt;

&lt;p&gt;To launch the interactive setup wizard, run the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;zero setup
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Faccpscpdzekoc9f0o1bf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Faccpscpdzekoc9f0o1bf.png" width="800" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The setup wizard will walk you through the initial configuration process, including selecting your preferred AI provider, choosing a model, and saving the configuration for future use.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;If you’re using a cloud provider such as OpenAI, Anthropic, Gemini, or OpenRouter, make sure you have a valid API key. If you’re using local providers like Ollama or LM Studio, ensure the local server is running before starting the setup.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Here’s what running the setup command looks like in the terminal:&lt;/p&gt;

&lt;p&gt;Once you execute the command, Zero will launch its interactive setup wizard, where you’ll configure your provider in just a few steps. In the next section, we’ll walk through each screen of the setup process and configure Zero using an AI provider.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.1: Launch the Zero Setup Wizard
&lt;/h4&gt;

&lt;p&gt;After running the zero setup Command Zero launches its interactive onboarding wizard. This wizard guides you through the initial configuration process, making it easy to connect to an AI provider and start using the agent without manually editing configuration files.&lt;/p&gt;

&lt;p&gt;When the wizard starts, you’ll see a welcome screen similar to the one below:&lt;/p&gt;

&lt;p&gt;The welcome screen introduces Zero as a &lt;strong&gt;terminal AI coding agent&lt;/strong&gt; capable of planning changes, editing code with approval, running verification checks, and resuming previous sessions.&lt;/p&gt;

&lt;p&gt;At the bottom of the screen, you’ll notice &lt;strong&gt;“1/7”&lt;/strong&gt; , indicating that the setup consists of &lt;strong&gt;seven guided steps&lt;/strong&gt;. To begin the configuration process, simply press the &lt;strong&gt;Space&lt;/strong&gt;  key.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Tip:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;The setup wizard only needs to be completed once. After your provider and model are configured, Zero automatically saves your settings and uses them for future sessions.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In the next step, we’ll choose the AI provider that Zero will use for code generation, reasoning, and terminal assistance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgf4gjprke11lso5doz4e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgf4gjprke11lso5doz4e.png" width="800" height="507"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.2: Choose How You Want to Connect
&lt;/h4&gt;

&lt;p&gt;After pressing &lt;strong&gt;Space&lt;/strong&gt; , Zero asks how you would like to connect to an AI provider. This is where you’ll choose the authentication method that best fits your workflow.&lt;/p&gt;

&lt;p&gt;You’ll see a screen similar to the following:&lt;/p&gt;

&lt;p&gt;Zero provides two ways to connect:&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Sign in with OAuth
&lt;/h4&gt;

&lt;p&gt;This option lets you authenticate through your web browser without manually copying or pasting an API key. It’s a convenient choice if your preferred provider supports OAuth authentication.&lt;/p&gt;

&lt;h4&gt;
  
  
  2. Paste an API Key / Browse Providers
&lt;/h4&gt;

&lt;p&gt;This option allows you to configure Zero using an API key or connect to one of the many supported AI providers. It also supports local AI runtimes such as &lt;strong&gt;Ollama&lt;/strong&gt; and &lt;strong&gt;LM Studio&lt;/strong&gt; , making it the most flexible option for developers.&lt;/p&gt;

&lt;p&gt;Since we’ll be configuring Zero with our own AI provider, select &lt;strong&gt;Paste an API Key / Browse Providers&lt;/strong&gt; using the &lt;strong&gt;↑/↓ arrow keys&lt;/strong&gt; , then press &lt;strong&gt;Enter&lt;/strong&gt; to continue.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Zero supports more than 20 AI providers, including OpenAI, Anthropic, Google Gemini, OpenRouter, Groq, DeepSeek, xAI, Mistral, GitHub Models, Ollama, LM Studio, and other OpenAI- or Anthropic-compatible endpoints.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F708ir146bat3k1q23p4q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F708ir146bat3k1q23p4q.png" width="800" height="511"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbex0oojjwis33t83zp8j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbex0oojjwis33t83zp8j.png" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.3: Configure Your Credentials
&lt;/h4&gt;

&lt;p&gt;After selecting your AI provider, Zero will display a credentials screen based on the provider you’ve chosen. Since we’re using &lt;strong&gt;Ollama&lt;/strong&gt; in this guide, Zero recognizes that it runs locally and doesn’t require an API key.&lt;/p&gt;

&lt;p&gt;You’ll see a screen similar to the following:&lt;/p&gt;

&lt;p&gt;Unlike cloud providers such as OpenAI, Anthropic, or Gemini, &lt;strong&gt;Ollama runs entirely on your local machine&lt;/strong&gt; , so there’s no need to enter an API key or authenticate with an online service.&lt;/p&gt;

&lt;p&gt;The setup wizard simply reminds you of one important requirement:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Start the Ollama server before sending prompts to Zero.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If Ollama isn’t already running, start it before continuing. You can verify that the server is available by running:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ollama list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the command returns your installed models, the Ollama server is ready to use with Zero.&lt;/p&gt;

&lt;p&gt;Once you’ve confirmed that Ollama is running, press &lt;strong&gt;Space&lt;/strong&gt; to continue to the next step of the setup wizard, where you’ll select the model that Zero should use for your coding sessions.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo0881ouuqv132xo3w6sl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo0881ouuqv132xo3w6sl.png" width="799" height="527"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.4: Select Your AI Model
&lt;/h4&gt;

&lt;p&gt;After configuring your provider, Zero will detect the available models and ask you to choose which one you’d like to use as your default coding assistant.&lt;/p&gt;

&lt;p&gt;In this example, Zero automatically detects the locally installed Ollama models.&lt;/p&gt;

&lt;p&gt;Use the &lt;strong&gt;↑/↓ arrow keys&lt;/strong&gt; to navigate through the available models and press &lt;strong&gt;Enter&lt;/strong&gt; to select one.&lt;/p&gt;

&lt;p&gt;You can also use the &lt;strong&gt;search&lt;/strong&gt; box at the top of the screen to quickly filter models if you have many installed.&lt;/p&gt;

&lt;p&gt;In this guide, we’ll select &lt;strong&gt;qwen2.5:1.5b&lt;/strong&gt; , but you can choose any model available in your Ollama installation.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Tip:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;If your preferred model doesn’t appear in the list, install it first using Ollama. For example:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ollama pull qwen2.5:7b
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Then restart the setup wizard, and the newly installed model will be available for selection.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;After selecting your model, press &lt;strong&gt;Enter&lt;/strong&gt; to continue.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fiv2g47en0f6nmhbsuw97.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fiv2g47en0f6nmhbsuw97.png" width="800" height="542"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.5: Review Zero’s Safety Settings
&lt;/h4&gt;

&lt;p&gt;The final step of the setup wizard introduces Zero’s safety model.&lt;/p&gt;

&lt;p&gt;Unlike many autonomous AI coding agents, Zero is designed to keep you in control. By default, it asks for confirmation before performing actions that could modify your system or project.&lt;/p&gt;

&lt;p&gt;This includes operations such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Running shell commands&lt;/li&gt;
&lt;li&gt;Editing or creating files&lt;/li&gt;
&lt;li&gt;Executing potentially risky operations&lt;/li&gt;
&lt;li&gt;Performing actions outside your current workspace&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As shown on the screen, the default behavior is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Ask before risky work.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This means Zero will always request your approval before executing actions that could have side effects, helping prevent accidental changes to your codebase.&lt;/p&gt;

&lt;p&gt;Simply press &lt;strong&gt;Space&lt;/strong&gt; to continue and complete the setup wizard.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fh56d7vpbmpqkccx5mmrg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fh56d7vpbmpqkccx5mmrg.png" width="800" height="520"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.6: Complete the Setup and Launch Zero
&lt;/h4&gt;

&lt;p&gt;You’re now at the final step of the setup wizard. Before saving your configuration, Zero displays a summary of the settings you’ve selected.&lt;/p&gt;

&lt;p&gt;This confirmation screen shows the configuration that Zero will use for future sessions. In our example, the selected settings are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Provider:&lt;/strong&gt; Ollama Local&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Model:&lt;/strong&gt; qwen2.5:1.5b&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Credentials:&lt;/strong&gt; Not required (because Ollama runs locally)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Configuration File:&lt;/strong&gt; ~/.config/zero/config.json&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Zero stores these settings in its configuration file, so you only need to complete the setup once. Every time you launch Zero in the future, it will automatically use this saved configuration unless you choose to change it later.&lt;/p&gt;

&lt;p&gt;You’ll also notice a few helpful slash commands at the bottom of the screen:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;/provider&lt;/strong&gt; – Change your AI provider or model.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;/doctor&lt;/strong&gt; – Run a diagnostic check to verify your configuration and installation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;/help&lt;/strong&gt; – Display available commands and usage information.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Once you’ve reviewed the configuration, press &lt;strong&gt;Enter&lt;/strong&gt; to save your settings and launch Zero.&lt;/p&gt;

&lt;p&gt;Congratulations! You’ve completed the initial setup process. In the next section, we’ll explore the Zero Terminal User Interface (TUI), learn how to navigate it, and send our first prompt to the AI coding agent.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1o7m053v47decssfddlt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1o7m053v47decssfddlt.png" width="800" height="524"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Run Zero Completely Offline&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you prefer running AI models locally, TechLatest provides a ready-to-use Ollama + Open WebUI environment with DeepSeek, Qwen, Llama, Gemma, Mistral, and other open-source models that work seamlessly with Zero.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://techlatest.net/support/multi_llm_gpu_vm_support/" rel="noopener noreferrer"&gt;Techlatest.net - GPU Supported DeepSeek &amp;amp; Llama powered All-in-One LLM&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Looking for an OpenAI-compatible local endpoint? Deploy LocalAI with TechLatest and connect it directly to Zero without changing your workflow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://techlatest.net/support/local-ai-support/" rel="noopener noreferrer"&gt;Techlatest.net - LocalAI: Self-Hosted Alternative to OpenAI &amp;amp; Anthropic&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 4: Launch the Zero Terminal Interface
&lt;/h3&gt;

&lt;p&gt;After pressing &lt;strong&gt;Enter&lt;/strong&gt; on the final setup screen, Zero saves your configuration and launches its interactive Terminal User Interface (TUI). This is where you’ll spend most of your time interacting with the AI coding agent.&lt;/p&gt;

&lt;p&gt;When Zero starts successfully, you’ll see a screen similar to the following:&lt;/p&gt;

&lt;p&gt;The interface is clean and designed to keep you focused on coding. Let’s take a quick tour of what you’re seeing.&lt;/p&gt;

&lt;h4&gt;
  
  
  Current Workspace
&lt;/h4&gt;

&lt;p&gt;In the top-left corner, Zero displays the directory you’re currently working in.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;~/projects/agentscli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This tells you which project Zero has access to. Any files it reads or edits will be within this workspace unless you explicitly grant access to additional directories.&lt;/p&gt;

&lt;h4&gt;
  
  
  Active Provider and Model
&lt;/h4&gt;

&lt;p&gt;The top-right corner shows the currently selected AI provider and model.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ollama/qwen2.5:1.5b
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This makes it easy to confirm which model Zero is using for your current session. If you ever need to switch models or providers, you can do so without leaving the interface.&lt;/p&gt;

&lt;h4&gt;
  
  
  Helpful Starter Prompts
&lt;/h4&gt;

&lt;p&gt;In the center of the screen, Zero displays several example prompts to help you get started, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Explain this codebase&lt;/li&gt;
&lt;li&gt;Fix the failing test&lt;/li&gt;
&lt;li&gt;Add a --json flag&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These examples demonstrate common development tasks that Zero can perform, making it easy for new users to begin experimenting with the agent.&lt;/p&gt;

&lt;h4&gt;
  
  
  Keyboard Shortcuts
&lt;/h4&gt;

&lt;p&gt;Zero also highlights a few useful shortcuts near the bottom of the screen:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;?&lt;/strong&gt;  — View all keyboard shortcuts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;/&lt;/strong&gt;  — Open the slash command menu&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ctrl + B&lt;/strong&gt;  — Toggle the sidebar&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ctrl + E&lt;/strong&gt;  — Copy the latest response&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As you continue using Zero, these shortcuts can significantly speed up your workflow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz9e8jndgavn64t9146we.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz9e8jndgavn64t9146we.png" width="799" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you’re looking beyond AI coding into personal automation, OpenClaw extends AI workflows to Telegram, WhatsApp, scheduled tasks, and personal productivity.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://techlatest.net/support/openclaw-support/" rel="noopener noreferrer"&gt;Techlatest.net - OpenClaw: AI Agent Automation Stack&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 5: Send Your First Prompt
&lt;/h3&gt;

&lt;p&gt;With Zero fully configured, you’re ready to start interacting with the AI coding agent. The prompt box at the bottom of the screen is where you’ll type your requests, ask questions, or assign coding tasks.&lt;/p&gt;

&lt;p&gt;Simply type your prompt and press  &lt;strong&gt;Enter&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For example, we asked Zero two simple questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Hello, how are you?&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;How many R’s are there in the word “Strawberry”?&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Zero responded immediately within the terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  Understanding the Response
&lt;/h4&gt;

&lt;p&gt;Each interaction follows a simple conversation format:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your prompt appears at the top of the conversation.&lt;/li&gt;
&lt;li&gt;Zero generates a response directly below it.&lt;/li&gt;
&lt;li&gt;At the end of each response, Zero includes a brief &lt;strong&gt;recap&lt;/strong&gt; , summarizing what it just accomplished or answered.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This recap becomes especially useful during longer coding sessions, as it provides a quick summary of previous interactions without needing to reread the entire conversation.&lt;/p&gt;

&lt;h4&gt;
  
  
  Asking Coding Questions
&lt;/h4&gt;

&lt;p&gt;While general questions work as expected, Zero is designed primarily as a coding assistant. Once you’re inside a project, you can ask it to perform development tasks such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Explain how a codebase works.&lt;/li&gt;
&lt;li&gt;Find and fix bugs.&lt;/li&gt;
&lt;li&gt;Generate new features.&lt;/li&gt;
&lt;li&gt;Refactor existing code.&lt;/li&gt;
&lt;li&gt;Write unit tests.&lt;/li&gt;
&lt;li&gt;Improve documentation.&lt;/li&gt;
&lt;li&gt;Review pull requests.&lt;/li&gt;
&lt;li&gt;Optimize performance.&lt;/li&gt;
&lt;li&gt;Debug failing tests.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, instead of asking a general question, you could type prompts like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Explain this codebase.

Find any bugs in this project.

Add authentication to this application.

Write unit tests for the API.

Refactor this project using best practices.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Continuing the Conversation
&lt;/h4&gt;

&lt;p&gt;Unlike a traditional command-line tool, Zero maintains the context of your current session. This means you can ask follow-up questions without repeating previous information.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Explain this codebase.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Which file handles authentication?&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Can you improve that implementation?&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Write tests for the updated code.&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Zero understands the conversation history and uses it to provide more relevant responses, making it feel like collaborating with an experienced developer directly from your terminal.&lt;/p&gt;

&lt;p&gt;Now that you’ve successfully sent your first prompt, the next step is to explore Zero’s powerful built-in commands, starting with the interactive slash commands that allow you to switch models, manage sessions, inspect permissions, and much more.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fl0oi2vzpj9okyamhre8x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fl0oi2vzpj9okyamhre8x.png" width="799" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;Congratulations! You’ve successfully installed and configured &lt;strong&gt;Zero AI Coding Agent&lt;/strong&gt; on your machine.&lt;/p&gt;

&lt;p&gt;In this guide, we covered everything you need to get started — from installing Zero and verifying the installation to configuring an AI provider, selecting a model, completing the setup wizard, launching the Terminal User Interface (TUI), and sending your first prompt.&lt;/p&gt;

&lt;p&gt;At this point, your Zero environment is fully configured and ready to assist with real-world development tasks. Whether you’re using a cloud provider like OpenAI or Anthropic, or running local models with Ollama or LM Studio, you now have a powerful AI coding assistant directly in your terminal.&lt;/p&gt;

&lt;p&gt;However, we’ve only scratched the surface of what Zero can do. Beyond basic conversations, Zero offers a rich set of developer-focused features, including &lt;strong&gt;zero exec&lt;/strong&gt; for headless automation, session management, repository analysis, worktrees, permission controls, sandboxing, MCP server integration, plugins, hooks, skills, specialist agents, and much more.&lt;/p&gt;

&lt;p&gt;In the next part of this series, we’ll dive deep into these advanced capabilities and explore how to use Zero effectively in real development workflows. We’ll cover the Terminal UI in detail, learn the most useful slash commands, understand the permission model, automate coding tasks, integrate external tools, and discover how to get the most out of Zero as your everyday AI coding companion.&lt;/p&gt;

&lt;p&gt;Until then, explore the interface, experiment with different prompts, and start using Zero on your own projects. The more you interact with it, the more you’ll appreciate how powerful a terminal-native AI coding agent can be.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aiagentdevelopment</category>
      <category>aiagentsinaction</category>
      <category>agents</category>
      <category>terminalcommands</category>
    </item>
    <item>
      <title>Orca Tutorial: Multi-Agent AI Coding Workspace from Scratch</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Wed, 08 Jul 2026 14:08:08 +0000</pubDate>
      <link>https://dev.to/techlatestnet/orca-tutorial-multi-agent-ai-coding-workspace-from-scratch-3lem</link>
      <guid>https://dev.to/techlatestnet/orca-tutorial-multi-agent-ai-coding-workspace-from-scratch-3lem</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fulw8oso2b3zjnyiub5as.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fulw8oso2b3zjnyiub5as.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AI coding agents have completely changed the way we build software. Whether it’s &lt;strong&gt;Claude Code&lt;/strong&gt; , &lt;strong&gt;Codex&lt;/strong&gt; , &lt;strong&gt;OpenCode&lt;/strong&gt; , &lt;strong&gt;Cursor&lt;/strong&gt; , or another CLI-based assistant, it can write code, fix bugs, generate documentation, and even help review pull requests. But there’s one problem — most developers still use them one at a time.&lt;/p&gt;

&lt;p&gt;You ask one agent a question, wait for the response, compare it manually with another model, switch Git branches, copy code between editors, and repeat the process. It works, but it isn’t the most efficient way to build modern software.&lt;/p&gt;

&lt;p&gt;That’s where &lt;a href="https://github.com/stablyai/orca" rel="noopener noreferrer"&gt;&lt;strong&gt;Orca&lt;/strong&gt;&lt;/a&gt; comes in.&lt;/p&gt;

&lt;p&gt;Orca is an open-source AI orchestration workspace that brings your repository, AI coding agents, Git worktrees, terminal, browser, and development tools together in a single application. Instead of choosing just one AI assistant, you can run multiple coding agents in parallel, compare their outputs, review the generated changes, and merge the best implementation into your project — all without leaving Orca.&lt;/p&gt;

&lt;p&gt;One of the best things about Orca is that getting started doesn’t have to cost anything. In this guide, we’ll use &lt;strong&gt;OpenCode&lt;/strong&gt; together with a &lt;strong&gt;free model from OpenRouter&lt;/strong&gt; , so you can experience the complete workflow without paying for API credits. If you already have Claude Code, Codex, or another supported CLI agent installed, you can use those as well.&lt;/p&gt;

&lt;p&gt;In this guide, we’ll start from scratch by installing Orca, completing the initial setup, connecting our first repository, creating worktrees, launching AI agents, and exploring the features that make Orca one of the most powerful workspaces for AI-assisted software development. Whether you’re an individual developer, an open-source contributor, or part of a large engineering team, this guide will help you get the most out of Orca.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1: Download and Install Orca
&lt;/h3&gt;

&lt;p&gt;The first step is to install Orca on your operating system. Orca is available for &lt;strong&gt;macOS, Windows, and Linux&lt;/strong&gt; , making it easy to get started regardless of your development environment.&lt;/p&gt;

&lt;p&gt;Visit the official Orca &lt;a href="https://www.onorca.dev/" rel="noopener noreferrer"&gt;website&lt;/a&gt; and click the &lt;strong&gt;Download&lt;/strong&gt; button. The website automatically detects your operating system and provides the appropriate installer. If you’re using a different platform, you can also choose from the available downloads for &lt;strong&gt;macOS (Apple Silicon &amp;amp; Intel), Windows, and Linux&lt;/strong&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;In this guide, we’re using&lt;/em&gt; &lt;strong&gt;&lt;em&gt;macOS (Apple Silicon)&lt;/em&gt;&lt;/strong&gt;&lt;em&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;After downloading the installer, complete the installation process just like any other desktop application. Once installed, launch Orca from your Applications folder (macOS) or Start Menu (Windows).&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Tip:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Orca is a desktop application, so no additional configuration is required before launching it for the first time.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Download Options
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;macOS (Apple Silicon)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;macOS (Intel)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Windows (.exe)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Linux (AppImage)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Homebrew (macOS)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;AUR (Arch Linux)&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you’re using &lt;strong&gt;Homebrew&lt;/strong&gt; on macOS, you can install Orca directly from the terminal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;brew &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;--cask&lt;/span&gt; stablyai/orca/orca
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flnuqn23fwu8qhvtzklt0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flnuqn23fwu8qhvtzklt0.png" width="800" height="318"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2: Complete the Getting Started Onboarding
&lt;/h3&gt;

&lt;p&gt;After launching Orca for the first time, you’ll be presented with the &lt;strong&gt;Getting Started&lt;/strong&gt; onboarding wizard. This setup walks you through the core features you’ll use while working with multiple AI coding agents. Completing these steps ensures Orca is configured correctly before you begin creating worktrees and running agents.&lt;/p&gt;

&lt;p&gt;The onboarding consists of several setup tasks, and we’ll go through each one in detail.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 2.1: Enable Desktop Notifications
&lt;/h4&gt;

&lt;p&gt;The first onboarding task is to turn &lt;strong&gt;on notifications&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Desktop notifications are useful because Orca can run AI agents for several minutes, especially when you’re working with large repositories or complex prompts. Instead of constantly checking the application, Orca notifies you whenever an agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Completes a task&lt;/li&gt;
&lt;li&gt;Requires your attention&lt;/li&gt;
&lt;li&gt;Gets blocked or encounters an error&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This allows you to continue working on other tasks while Orca runs your agents in the background.&lt;/p&gt;

&lt;h3&gt;
  
  
  Enable Notifications on macOS
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Click &lt;strong&gt;Open Mac Settings&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Navigate to &lt;strong&gt;Notifications&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Locate &lt;strong&gt;Orca&lt;/strong&gt; in the application list.&lt;/li&gt;
&lt;li&gt;Enable &lt;strong&gt;Allow Notifications&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;(Optional) Choose your preferred notification style, such as banners or alerts.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Once enabled, return to Orca.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fps6hb04o31cjhs3dqvrz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fps6hb04o31cjhs3dqvrz.png" width="800" height="574"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 2.2: Choose Your Default AI Agent
&lt;/h4&gt;

&lt;p&gt;The next onboarding step is to choose &lt;strong&gt;your default agent&lt;/strong&gt;. Orca automatically detects the AI coding agents installed on your system and lets you select which one should be used by default whenever you create a new worktree or start a new coding session.&lt;/p&gt;

&lt;p&gt;This saves time, as you won’t need to manually select your preferred agent every time you begin working on a project.&lt;/p&gt;

&lt;p&gt;In our setup, Orca detected the following AI agents already installed on the system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Claude&lt;/li&gt;
&lt;li&gt;OpenCode&lt;/li&gt;
&lt;li&gt;Hermes&lt;/li&gt;
&lt;li&gt;OpenClaw&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fv2q3qqf4plw3f7bw8m91.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fv2q3qqf4plw3f7bw8m91.png" width="800" height="570"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Additionally, Orca supports many other CLI-based coding agents, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Codex&lt;/li&gt;
&lt;li&gt;GitHub Copilot&lt;/li&gt;
&lt;li&gt;Grok&lt;/li&gt;
&lt;li&gt;OpenClaude&lt;/li&gt;
&lt;li&gt;MiMo Code&lt;/li&gt;
&lt;li&gt;Continue&lt;/li&gt;
&lt;li&gt;Cline&lt;/li&gt;
&lt;li&gt;Kiro&lt;/li&gt;
&lt;li&gt;Qwen Code&lt;/li&gt;
&lt;li&gt;Goose&lt;/li&gt;
&lt;li&gt;Amp&lt;/li&gt;
&lt;li&gt;Devin&lt;/li&gt;
&lt;li&gt;Pi&lt;/li&gt;
&lt;li&gt;and many more.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjxjlqlicwlplvkii6v0y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjxjlqlicwlplvkii6v0y.png" width="800" height="566"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Select Your Preferred Agent
&lt;/h4&gt;

&lt;p&gt;Simply click on the agent you want to use as your default. In this guide, we’ll use &lt;strong&gt;Claude&lt;/strong&gt; as the default AI coding assistant, but you can choose any supported agent based on your workflow.&lt;/p&gt;

&lt;p&gt;Once selected, Orca highlights the chosen agent, indicating that it will be used automatically for future tasks.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 2.3: Enable Orca CLI
&lt;/h4&gt;

&lt;p&gt;The next onboarding step is to enable the &lt;strong&gt;Orca CLI&lt;/strong&gt;. This installs the orca command on your system and sets up the built-in skills that allow Orca to orchestrate AI agents, interact with browsers, and control your desktop when needed.&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;Install CLI &amp;amp; Skills&lt;/strong&gt; to begin the installation. Orca will automatically configure everything required in the background.&lt;/p&gt;

&lt;p&gt;During the setup, Orca installs three core capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Agent Orchestration&lt;/strong&gt; : Allows multiple AI agents to work together on the same project and coordinate multi-step tasks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Agent Browser Use:&lt;/strong&gt; Gives agents access to Orca’s built-in browser so they can open web pages, capture screenshots, inspect content, and interact with websites.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Computer Use:&lt;/strong&gt; Enables agents to control your desktop by moving the mouse, clicking buttons, typing text, and interacting with applications when a workflow requires it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On macOS, Orca may also request &lt;strong&gt;Full Disk Access&lt;/strong&gt;. Granting this permission is recommended, especially if your projects are stored in protected folders such as &lt;strong&gt;Desktop&lt;/strong&gt; , &lt;strong&gt;Documents&lt;/strong&gt; , or &lt;strong&gt;Downloads&lt;/strong&gt;. This ensures Orca can access and edit your repositories without permission issues.&lt;/p&gt;

&lt;p&gt;Once the installation finishes, the setup will be marked as complete, and you’re ready to continue with the next onboarding step: &lt;strong&gt;Connect Integrations&lt;/strong&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Tip:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;You can verify the installation at any time by opening a terminal and running:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;orca &lt;span class="nt"&gt;--help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgi0hazbt91uumtk6j9mn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgi0hazbt91uumtk6j9mn.png" width="800" height="569"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3: Connect Your Integrations
&lt;/h3&gt;

&lt;p&gt;With the initial onboarding complete, the next step is to connect the services you use every day. Orca integrates with tools like &lt;strong&gt;GitHub, Linear, and Jira&lt;/strong&gt; , allowing you to manage your development workflow without constantly switching between applications.&lt;/p&gt;

&lt;p&gt;If you’ve already connected your GitHub account, Orca can display the status of your pull requests and repositories directly within the application. This makes it easy to monitor ongoing work while your AI agents continue coding in the background.&lt;/p&gt;

&lt;p&gt;For project management, Orca also supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Linear&lt;/strong&gt;  — Browse issues, start work directly from a task, and keep your AI-generated changes linked to your project.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Jira&lt;/strong&gt;  — Access Jira Cloud issues, create worktrees from tickets, and track development without leaving Orca.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To connect a service, simply click the corresponding &lt;strong&gt;Connect&lt;/strong&gt; button and authorize your account. Once connected, the integration becomes available throughout Orca, making it easier to move from an issue or task to an AI-powered coding session in just a few clicks.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Connecting GitHub is highly recommended if you’re working with Git repositories. Linear and Jira are optional and can be connected later from&lt;/em&gt; &lt;strong&gt;&lt;em&gt;Settings&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;if your team uses them.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;After connecting the integrations you need, click &lt;strong&gt;Done&lt;/strong&gt; to continue to the next step, &lt;strong&gt;Automate Workspace Setup&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe2knju8xj8ts46tj33wt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe2knju8xj8ts46tj33wt.png" width="800" height="588"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 4: Automate Workspace Setup
&lt;/h3&gt;

&lt;p&gt;The next step is to automate &lt;strong&gt;Workspace Setup&lt;/strong&gt;. This feature lets Orca automatically run setup commands whenever it creates a new Git worktree. Instead of manually installing dependencies every time you start a new task, Orca can prepare the project for you.&lt;/p&gt;

&lt;p&gt;For example, if your project uses &lt;strong&gt;pnpm&lt;/strong&gt; , you can configure the setup command as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pnpm &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Similarly, you can use commands such as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install

&lt;/span&gt;yarn &lt;span class="nb"&gt;install

&lt;/span&gt;bun &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or any custom setup script required by your project.&lt;/p&gt;

&lt;p&gt;Once you’ve entered the command, click &lt;strong&gt;Save&lt;/strong&gt;. From then on, every new worktree created for that repository will automatically execute the setup command, ensuring the environment is ready before your AI agents begin working.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;You’ll need to add a Git repository to Orca before configuring workspace automation. This setting is saved per repository, allowing different projects to use different setup commands.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This small automation can save a significant amount of time, especially when you’re working with multiple worktrees or frequently creating new AI coding sessions.&lt;/p&gt;

&lt;p&gt;After saving your workspace setup, proceed to the next step: &lt;strong&gt;Start Work in Multiple Repositories&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnxuiu9luk7ttjjvzq7wa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnxuiu9luk7ttjjvzq7wa.png" width="800" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 5: Add Your Git Repositories
&lt;/h3&gt;

&lt;p&gt;The final setup step is to &lt;strong&gt;Start Work in Multiple Repositories&lt;/strong&gt;. Instead of opening projects one at a time, Orca lets you add all of your frequently used Git repositories in one place. This makes it easy to switch between projects and start AI-assisted development without searching through folders.&lt;/p&gt;

&lt;p&gt;To add a repository:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Click &lt;strong&gt;Add Project&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Browse to your local Git repository.&lt;/li&gt;
&lt;li&gt;Select the project and import it into Orca.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Repeat the process for any additional repositories you work on regularly. Once added, they’ll appear in your Orca workspace, ready for creating worktrees, launching AI agents, and managing development tasks.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Tip:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;If you work across multiple client projects or open-source repositories, adding them all upfront makes it much easier to jump between projects without leaving Orca.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;At this point, you’ve completed the initial setup. Orca is now configured with your preferred AI agent, CLI tools, integrations, and projects, so you’re ready to start building with AI-powered workflows.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fymuudglfsi4t2l8nu556.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fymuudglfsi4t2l8nu556.png" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhdwjeiqhke56acwaypwa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhdwjeiqhke56acwaypwa.png" width="800" height="596"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 6: Try Multi-Tasking with Multiple Worktrees
&lt;/h3&gt;

&lt;p&gt;Once the basic setup is complete, Orca introduces one of its most powerful features —  &lt;strong&gt;Multi-tasking&lt;/strong&gt;. This feature lets you work on multiple tasks simultaneously by creating separate Git worktrees for each one.&lt;/p&gt;

&lt;p&gt;Each worktree is completely isolated, even if they belong to the same repository. This means you can develop different features, fix bugs, or experiment with new ideas in parallel without affecting one another.&lt;/p&gt;

&lt;p&gt;To explore this feature, click &lt;strong&gt;Try it out&lt;/strong&gt;. Orca will guide you through creating multiple worktrees, each with its own AI agent and dedicated workspace.&lt;/p&gt;

&lt;p&gt;For example, you could have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Worktree 1:&lt;/strong&gt; Build a user authentication system using Claude.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Worktree 2:&lt;/strong&gt; Create a new dashboard using Codex.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Both tasks run independently, allowing you to compare progress, review changes, and merge the best implementation when you’re ready.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Why it matters:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Instead of waiting for one task to finish before starting another, Orca lets you run multiple AI coding sessions in parallel, helping you prototype, compare solutions, and ship features much faster.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;After exploring multi-tasking, proceed to the final milestone: &lt;strong&gt;Use Orca’s Browser&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fozfbqom5q37cdemuerjt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fozfbqom5q37cdemuerjt.png" width="800" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 7: Use Orca’s Built-in Browser
&lt;/h3&gt;

&lt;p&gt;The final milestone in the onboarding process is to use &lt;strong&gt;Orca’s Browser&lt;/strong&gt;. Orca includes a built-in Chromium-based browser that lets you inspect and interact with your web application without leaving the workspace.&lt;/p&gt;

&lt;p&gt;One of its standout features is &lt;strong&gt;Design Mode&lt;/strong&gt;. Instead of manually describing a UI issue to an AI agent, you can simply click on any element in your application. Orca automatically captures the selected element’s &lt;strong&gt;HTML, CSS, and a cropped screenshot&lt;/strong&gt; , then sends that information directly to the AI agent as part of your prompt.&lt;/p&gt;

&lt;p&gt;To enable this feature, click &lt;strong&gt;Install CLI &amp;amp; Skill&lt;/strong&gt; if it hasn’t already been installed. Once enabled, your AI agents can use the browser to inspect pages, capture screenshots, and interact with web applications as part of their workflow.&lt;/p&gt;

&lt;p&gt;This is especially useful for tasks such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fixing UI bugs.&lt;/li&gt;
&lt;li&gt;Improving layouts and styling.&lt;/li&gt;
&lt;li&gt;Updating specific components.&lt;/li&gt;
&lt;li&gt;Debugging frontend issues.&lt;/li&gt;
&lt;li&gt;Generating design improvements directly from the live interface.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Why it matters:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;Instead of explaining a UI problem in words or taking screenshots manually, Orca provides your AI agent with the exact HTML, CSS, and visual context it needs, making frontend development much faster and more accurate.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With this step complete, you’ve finished the &lt;strong&gt;Getting Started&lt;/strong&gt; guide. Your Orca workspace is now fully configured, and you’re ready to create your first project, launch AI agents, and start building with parallel worktrees.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F12q497nlaeyfxhkx1pbs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F12q497nlaeyfxhkx1pbs.png" width="800" height="383"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 8: Verify the Orca CLI Installation
&lt;/h3&gt;

&lt;p&gt;Although we installed the Orca CLI during the onboarding process, it’s a good idea to verify that everything has been configured correctly before moving on.&lt;/p&gt;

&lt;p&gt;Open a new terminal and run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;orca &lt;span class="nt"&gt;--help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz9lkyffx9a4aw60f7k2n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz9lkyffx9a4aw60f7k2n.png" width="799" height="534"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If the installation was successful, Orca will display the list of available commands and options instead of showing a &lt;strong&gt;command not found&lt;/strong&gt;  error.&lt;/p&gt;

&lt;p&gt;You can also check the installed version by running:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;orca &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Seeing the version number confirms that the CLI is installed correctly and is available from your terminal.&lt;/p&gt;

&lt;p&gt;From this point onward, you’ll be able to use the orca command to create worktrees, automate workflows, interact with browsers, and perform other tasks directly from the command line.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 9: Clone Your First Repository in Orca
&lt;/h3&gt;

&lt;p&gt;Now that the onboarding is complete, it’s time to add your first project to Orca. Instead of cloning the repository from the terminal, Orca can clone it directly from a Git URL, making it quick to import a project and start working with AI agents.&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;Add Project&lt;/strong&gt; , then choose &lt;strong&gt;Clone from URL&lt;/strong&gt;. A dialog box will appear where you need to provide the repository details.&lt;/p&gt;

&lt;h4&gt;
  
  
  Fill in the Repository Details
&lt;/h4&gt;

&lt;p&gt;Enter the following information:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Git URL:&lt;/strong&gt; Paste the HTTPS or SSH URL of the Git repository you want to clone.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Parent Folder:&lt;/strong&gt; Select the local directory where Orca should clone the repository.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For this guide, we’ll clone the official Orca repository:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://github.com/stablyai/orca
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Choose a destination folder on your machine — for example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/Users/abcd/orca
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After verifying both fields, click  &lt;strong&gt;Clone&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Orca will download the repository, register it as a project, and prepare it for creating worktrees and launching AI coding agents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fikhlq3221jlsivhjq9rb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fikhlq3221jlsivhjq9rb.png" width="800" height="589"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Tip:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;You can clone any Git repository hosted on GitHub, GitLab, Bitbucket, or any Git server, provided you have the necessary access permissions.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Once the cloning process is complete, the repository will appear in your Orca workspace, and you’ll be ready to create your first worktree and start coding with AI agents in the next step.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fujum40kwf292ktltjtgd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fujum40kwf292ktltjtgd.png" width="800" height="621"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 10: Explore the Orca Workspace
&lt;/h3&gt;

&lt;p&gt;Once the repository has been cloned successfully, Orca opens it in its main workspace. This is where you’ll spend most of your time managing projects, launching AI agents, reviewing code, and working with multiple Git worktrees.&lt;/p&gt;

&lt;p&gt;Let’s take a quick tour of the interface.&lt;/p&gt;

&lt;h4&gt;
  
  
  Projects Panel
&lt;/h4&gt;

&lt;p&gt;On the left side, you’ll find the &lt;strong&gt;Projects&lt;/strong&gt; panel. Every repository you add to Orca appears here, making it easy to switch between projects without leaving the application.&lt;/p&gt;

&lt;p&gt;In our workspace, you can see two projects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;agentic-ai-ecosystem&lt;/li&gt;
&lt;li&gt;orca&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each project displays its active Git branch, helping you quickly identify the repository you’re currently working on.&lt;/p&gt;

&lt;h4&gt;
  
  
  Integrated Terminal
&lt;/h4&gt;

&lt;p&gt;The center of the workspace contains Orca’s built-in terminal. This behaves like a regular terminal, allowing you to run Git commands, install dependencies, start development servers, or execute any command required by your project — all without switching to another terminal application.&lt;/p&gt;

&lt;p&gt;For example, you can run commands such as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git status

pnpm &lt;span class="nb"&gt;install

&lt;/span&gt;pnpm dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or any other project-specific commands directly from the integrated terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  File Explorer
&lt;/h4&gt;

&lt;p&gt;On the right side is the &lt;strong&gt;File Explorer&lt;/strong&gt; , where you can browse your repository’s folders and files.&lt;/p&gt;

&lt;p&gt;You’ll see the complete project structure, including directories like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;docs&lt;/li&gt;
&lt;li&gt;src&lt;/li&gt;
&lt;li&gt;mobile&lt;/li&gt;
&lt;li&gt;native&lt;/li&gt;
&lt;li&gt;tests&lt;/li&gt;
&lt;li&gt;resources&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can expand folders, search for files, and open them directly inside Orca without needing a separate code editor.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fr744unr4lbiedbqxg72o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fr744unr4lbiedbqxg72o.png" width="800" height="303"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Why This Workspace Matters
&lt;/h4&gt;

&lt;p&gt;Orca combines your &lt;strong&gt;Git repositories&lt;/strong&gt; , &lt;strong&gt;terminal&lt;/strong&gt; , and &lt;strong&gt;project files&lt;/strong&gt; into a single interface. As you continue through this guide, this workspace will also be used to create AI worktrees, launch coding agents, compare implementations, and review generated code.&lt;/p&gt;

&lt;p&gt;With your repository now imported and the workspace ready, you’re all set to create your &lt;strong&gt;first AI worktree&lt;/strong&gt; and begin building with Orca in the next step.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 11: Create Your First AI Worktree
&lt;/h3&gt;

&lt;p&gt;This is where Orca starts to shine.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click the &lt;strong&gt;+&lt;/strong&gt; button or &lt;strong&gt;Create Worktree&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Choose the &lt;strong&gt;Orca&lt;/strong&gt; repository&lt;/li&gt;
&lt;li&gt;Give the worktree a name (for example, documentation-update)&lt;/li&gt;
&lt;li&gt;Select your default agent (Claude, Codex, OpenCode, etc.)&lt;/li&gt;
&lt;li&gt;Enter a prompt&lt;/li&gt;
&lt;li&gt;Create the worktree&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the first real AI workflow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwgsyj8e4dkb2c0cr2tuy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwgsyj8e4dkb2c0cr2tuy.png" width="800" height="606"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frk2fovyr1zveaaj3qvw7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frk2fovyr1zveaaj3qvw7.png" width="800" height="694"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 12: Launch Your First AI Coding Agent
&lt;/h3&gt;

&lt;p&gt;With the worktree created, it’s time to start your first AI coding session. Orca supports multiple CLI-based coding agents, and for this guide we’ll use &lt;strong&gt;OpenCode&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;When creating the worktree, we selected &lt;strong&gt;OpenCode&lt;/strong&gt; as our AI coding agent. Because of that, Orca opens an OpenCode session inside the integrated terminal for this worktree, allowing us to immediately start chatting with the AI and assign coding tasks.&lt;/p&gt;

&lt;p&gt;In this guide, we’re using the &lt;strong&gt;Poolside Laguna XS 2.1 (Free)&lt;/strong&gt; model through &lt;strong&gt;OpenRouter&lt;/strong&gt;. OpenRouter offers a variety of free AI models that you can use by simply adding your OpenRouter API key to OpenCode. At the time of writing, the model shown in our setup is &lt;strong&gt;poolside/laguna-xs-2.1:free&lt;/strong&gt; , which is available free of charge for coding tasks.&lt;/p&gt;

&lt;p&gt;You can also explore many other free models available on OpenRouter, including coding, reasoning, and general-purpose LLMs, and switch between them depending on your use case.&lt;/p&gt;

&lt;h4&gt;
  
  
  Why Use OpenRouter?
&lt;/h4&gt;

&lt;p&gt;Using OpenRouter gives you several advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Access to multiple AI models with a single API key.&lt;/li&gt;
&lt;li&gt;Easily switch between free and paid models.&lt;/li&gt;
&lt;li&gt;Compare different coding models without changing your workflow.&lt;/li&gt;
&lt;li&gt;Experiment with the latest open-source models as they become available.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flu75aneqrm756sqgtvvd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flu75aneqrm756sqgtvvd.png" width="800" height="709"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Start Your First Prompt
&lt;/h4&gt;

&lt;p&gt;Now that OpenCode is running, simply type your prompt into the chat box. For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Analyze this repository and explain its architecture.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this codebase and suggest improvements for performance and maintainability.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Find potential bugs and recommend fixes.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once you submit the prompt, OpenCode begins analyzing your repository and generates code, explanations, or suggestions directly within the worktree. From here, you can continue the conversation, refine the output, or compare the results with other AI agents by creating additional worktrees.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F21fatq0psbjjcu7c6vv5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F21fatq0psbjjcu7c6vv5.png" width="799" height="484"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F77syc4hq9oinxholpfjd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F77syc4hq9oinxholpfjd.png" width="800" height="773"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7sxk8enqpkjp6sxwbchg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7sxk8enqpkjp6sxwbchg.png" width="800" height="745"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 15: Let the Agent Modify the Project
&lt;/h3&gt;

&lt;p&gt;Now ask something like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Improve the README.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;or&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Add installation instructions.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;or&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Create a CONTRIBUTING.md file.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Then demonstrate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI editing files.&lt;/li&gt;
&lt;li&gt;Git diff.&lt;/li&gt;
&lt;li&gt;Changed files.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0o5bo54erujwfr6dv3cl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0o5bo54erujwfr6dv3cl.png" width="800" height="744"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzh74ot0s8v473xv2n2wb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzh74ot0s8v473xv2n2wb.png" width="800" height="781"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 16: Review and Accept the Changes
&lt;/h3&gt;

&lt;p&gt;Show:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Changed files.&lt;/li&gt;
&lt;li&gt;Diff viewer.&lt;/li&gt;
&lt;li&gt;Git status.&lt;/li&gt;
&lt;li&gt;Commit changes.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frbiru2v5gmj22henue6t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frbiru2v5gmj22henue6t.png" width="800" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftu5ws2xw10dtg4ijizj2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftu5ws2xw10dtg4ijizj2.png" width="800" height="774"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 17: Compare Another Agent
&lt;/h3&gt;

&lt;p&gt;This is where Orca becomes unique.&lt;/p&gt;

&lt;p&gt;Create another worktree.&lt;/p&gt;

&lt;p&gt;Choose &lt;strong&gt;Claude&lt;/strong&gt; , &lt;strong&gt;Codex&lt;/strong&gt; , or another supported agent.&lt;/p&gt;

&lt;p&gt;Give &lt;strong&gt;the same prompt&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Compare:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Speed&lt;/li&gt;
&lt;li&gt;Code quality&lt;/li&gt;
&lt;li&gt;Explanation&lt;/li&gt;
&lt;li&gt;Files changed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This demonstrates Orca’s biggest advantage: &lt;strong&gt;parallel AI development&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;Orca is more than just another AI coding tool — it’s a complete workspace designed for modern AI-assisted software development. By bringing together Git worktrees, multiple AI coding agents, an integrated terminal, browser automation, and powerful collaboration features, Orca makes it easy to experiment with different approaches, compare results, and ship better code faster.&lt;/p&gt;

&lt;p&gt;In this guide, we covered everything from installing Orca and completing the initial setup to creating worktrees, launching AI agents, and working with free models through OpenRouter. Whether you’re building solo projects, contributing to open source, or collaborating with a team, Orca provides a flexible workflow that keeps everything in one place.&lt;/p&gt;

&lt;p&gt;Now it’s your turn. Install Orca, connect your favorite AI coding agent, create your first worktree, and experience how parallel AI development can streamline your workflow. As Orca continues to evolve with new features and integrations, it’s quickly becoming one of the most capable platforms for developers building with AI.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>aiworkflow</category>
      <category>agents</category>
      <category>orcas</category>
    </item>
    <item>
      <title>How to Automatically Document Your Repository with OpenWiki</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Tue, 07 Jul 2026 11:37:18 +0000</pubDate>
      <link>https://dev.to/techlatestnet/how-to-automatically-document-your-repository-with-openwiki-5337</link>
      <guid>https://dev.to/techlatestnet/how-to-automatically-document-your-repository-with-openwiki-5337</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fearvtlp8acry83uuy7b2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fearvtlp8acry83uuy7b2.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;OpenWiki is a CLI that writes and maintains &lt;strong&gt;agent documentation&lt;/strong&gt; for your codebase and can keep it fresh by opening PRs from CI.&lt;/p&gt;

&lt;p&gt;Reference: &lt;a href="https://github.com/langchain-ai/openwiki" rel="noopener noreferrer"&gt;langchain-ai/openwiki&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  What you’ll have at the end
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;OpenWiki installed and verified&lt;/li&gt;
&lt;li&gt;A generated openwiki/ folder in a sample repository&lt;/li&gt;
&lt;li&gt;A local update workflow: openwiki --update&lt;/li&gt;
&lt;li&gt;A CI path to keep docs updated automatically (PR-based)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Part 1 — Install OpenWiki
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Prerequisites
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Node.js 18+:&lt;/strong&gt; OpenWiki is a Node CLI&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Git:&lt;/strong&gt; Docs generation is repo-aware&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;An LLM provider key:&lt;/strong&gt; Stored locally by OpenWiki (see below)&lt;/p&gt;

&lt;h4&gt;
  
  
  Install (global)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; openwiki
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Verify
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;--help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4yieb86ujra871d40cx1.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4yieb86ujra871d40cx1.gif" width="799" height="453"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Expected output (v0.0.1):

  _____ ___ _ _ 
 / _ \ _ _____ _ __ \ \ / (_) | _(_)
| | | | '_ \ / _ \ '_ \ \ \ /\ / /| | |/ / |
| |_| | |_) | __/ | | | \ V V / | | &amp;lt;| |
 \ ___/| .__ / \___|_| |_| \_/\_/ |_|_|\_\_|
      |_|

╭─────────────────────────────────────────────────────────────────────────────╮
│ &amp;gt;_ OpenWiki v0.0.1 agent docs for codebases │
│ provider: OpenRouter │
│ model: z-ai/glm-5.2 │
│ directory: …/agentic-ai-ecosystem/guides/openwiki │
╰─────────────────────────────────────────────────────────────────────────────╯

# Usage
   openwiki [--modelId &amp;lt;model&amp;gt;]
   openwiki [--modelId &amp;lt;model&amp;gt;] [message]
   openwiki --init [message]
   openwiki --update [message]

# Options
    --init Generate initial OpenWiki documentation.
    --update Update existing OpenWiki documentation.
    -p, --print Run once and print the final assistant output.
    --modelId &amp;lt;id&amp;gt; Use a model ID for this run.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your provider and model come from ~/.openwiki/.env (configured on first interactive run).&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 2 — Understand the core commands
&lt;/h3&gt;

&lt;p&gt;OpenWiki usage patterns from upstream README:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Interactive&lt;/strong&gt; : openwiki&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Start with a request&lt;/strong&gt; : openwiki "Please generate documentation for this repository"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One-shot print&lt;/strong&gt; : openwiki -p "Summarize what you can do"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Initialize&lt;/strong&gt; : openwiki --init&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Update existing docs&lt;/strong&gt; : openwiki --update&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Part 3 — Configure provider &amp;amp; credentials
&lt;/h3&gt;

&lt;p&gt;OpenWiki reads provider settings from ~/.openwiki/.env. For &lt;strong&gt;non-interactive&lt;/strong&gt; commands (-p, --init, --update), Credentials must also be &lt;strong&gt;exported in your shell&lt;/strong&gt;  — OpenWiki will not prompt you.&lt;/p&gt;

&lt;p&gt;This guide uses &lt;strong&gt;local Ollama&lt;/strong&gt; as the primary path ($0, no rate limits). OpenRouter (cloud) is documented as an alternative.&lt;/p&gt;

&lt;h4&gt;
  
  
  Option A — Local Ollama with qwen2.5:1.5b
&lt;/h4&gt;

&lt;p&gt;OpenWiki &lt;strong&gt;v0.0.1&lt;/strong&gt; does not yet ship the openai-compatible Provider from the &lt;a href="https://github.com/langchain-ai/openwiki" rel="noopener noreferrer"&gt;upstream README&lt;/a&gt;. Use the built-in &lt;strong&gt;openai&lt;/strong&gt; provider and point it at Ollama’s OpenAI-compatible API on localhost:11434.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.1 — Verify Ollama is running
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ollama list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Expected output:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;NAME ID SIZE MODIFIED
qwen2.5:1.5b 65ec06548149 986 MB …
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If Ollama is not installed, see &lt;a href="//../ollama-small-models/TUTORIAL.md"&gt;Ollama Small Models&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Pull the model if missing:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ollama pull qwen2.5:1.5b
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Step 3.2 — Write ~/.openwiki/.env
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Important:&lt;/strong&gt; remove any OPENROUTER_API_KEY line from this file. If it’s present, OpenWiki v0.0.1 keeps routing to OpenRouter even when you set another provider.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;mkdir&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; ~/.openwiki

&lt;span class="nb"&gt;cat&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="no"&gt;EOF&lt;/span&gt;&lt;span class="sh"&gt;'
OPENWIKI_PROVIDER=openai
OPENAI_API_KEY=ollama
OPENWIKI_MODEL_ID=qwen2.5:1.5b
&lt;/span&gt;&lt;span class="no"&gt;EOF

&lt;/span&gt;&lt;span class="nb"&gt;chmod &lt;/span&gt;600 ~/.openwiki/.env
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fio54r98v94z7gabn27bn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fio54r98v94z7gabn27bn.png" width="798" height="198"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F1%2Ag31dIQHtdVw5gGri6naQlg.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F1%2Ag31dIQHtdVw5gGri6naQlg.gif" width="799" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.3 — Export Ollama base URL (required every session)
&lt;/h4&gt;

&lt;p&gt;OPENAI_BASE_URL is &lt;strong&gt;not loaded from&lt;/strong&gt; ~/.openwiki/.env in v0.0.1 (it’s on OpenWiki’s deprecated key list). Export it in your shell:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;OPENAI_BASE_URL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;http://localhost:11434/v1
&lt;span class="nb"&gt;set&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;set&lt;/span&gt; +a
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Step 3.4 — Test print mode
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;guides/openwiki
openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"Summarize what OpenWiki can do"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example output (connection verified on qwen2.5:1.5b):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;OpenWiki is designed to provide information based on structured data from various
online sources, including Wikipedia. It aims to retrieve specific facts and statistics
about different topics efficiently…
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Quality note:&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;A 1.5B model may hallucinate on OpenWiki’s large agent prompt (~46 KB + 9 tools). The test above proves&lt;/em&gt; &lt;strong&gt;&lt;em&gt;Ollama → OpenWiki → response&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;works. For&lt;/em&gt; &lt;em&gt;--init doc generation, consider&lt;/em&gt; &lt;em&gt;ollama pull llama3.2:3b if output quality is weak.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Option B — OpenRouter
&lt;/h4&gt;

&lt;p&gt;Use OpenRouter if you prefer cloud models or don’t have Ollama installed.&lt;/p&gt;

&lt;h4&gt;
  
  
  Step 3.6 — Create OpenRouter API key
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Sign up at &lt;a href="https://openrouter.ai/" rel="noopener noreferrer"&gt;openrouter.ai&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Create a key at &lt;a href="https://openrouter.ai/keys" rel="noopener noreferrer"&gt;openrouter.ai/keys&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Step 3.7 — Write ~/.openwiki/.env for OpenRouter
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="no"&gt;EOF&lt;/span&gt;&lt;span class="sh"&gt;'
OPENWIKI_PROVIDER=openrouter
OPENROUTER_API_KEY=your-key-here
OPENWIKI_MODEL_ID=meta-llama/llama-3.2-3b-instruct:free
&lt;/span&gt;&lt;span class="no"&gt;EOF

&lt;/span&gt;&lt;span class="nb"&gt;chmod &lt;/span&gt;600 ~/.openwiki/.env
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Step 3.8 — Export and test
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;set&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;set&lt;/span&gt; +a
openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"Summarize what OpenWiki can do"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you skip exporting credentials, you will see:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;OPENROUTER_API_KEY is required for non-interactive runs. Run openwiki in an interactive terminal to save credentials.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Fix paths:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5x0z026stblneuk26gnb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5x0z026stblneuk26gnb.png" width="798" height="162"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  OpenRouter free models (no token cost)
&lt;/h4&gt;

&lt;p&gt;Append :free to any model that offers a free tier:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fv6cvggosil3h1zfful6k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fv6cvggosil3h1zfful6k.png" width="800" height="236"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;List all free models:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-s&lt;/span&gt; https://openrouter.ai/api/v1/models &lt;span class="se"&gt;\&lt;/span&gt;
  | python3 &lt;span class="nt"&gt;-c&lt;/span&gt; &lt;span class="s2"&gt;"
import json,sys
for m in json.load(sys.stdin)['data']:
    p=m.get('pricing') or {}
    if p.get('prompt')=='0' and p.get('completion')=='0':
        print(m['id'])
"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Per-run model override:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="nt"&gt;--modelId&lt;/span&gt; meta-llama/llama-3.2-3b-instruct:free &lt;span class="s2"&gt;"Summarize what OpenWiki can do"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Diagnose OpenRouter issues
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env

&lt;span class="c"&gt;# Account limits&lt;/span&gt;
curl &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;https://openrouter.ai/api/v1/key]&lt;span class="o"&gt;(&lt;/span&gt;https://openrouter.ai/api/v1/key&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$OPENROUTER_API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; | python3 &lt;span class="nt"&gt;-m&lt;/span&gt; json.tool

&lt;span class="c"&gt;# Tiny free-model test&lt;/span&gt;
curl &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;https://openrouter.ai/api/v1/chat/completions]&lt;span class="o"&gt;(&lt;/span&gt;https://openrouter.ai/api/v1/chat/completions&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$OPENROUTER_API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"model":"meta-llama/llama-3.2-3b-instruct:free","messages":[{"role":"user","content":"hi"}]}'&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  | python3 &lt;span class="nt"&gt;-m&lt;/span&gt; json.tool
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0owvg3qu8uiyyjvgm24z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0owvg3qu8uiyyjvgm24z.png" width="799" height="249"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Provider comparison (this guide)
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fr5q4u7r28frn0yezy2by.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fr5q4u7r28frn0yezy2by.png" width="800" height="229"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 4 — One-shot print mode (-p)
&lt;/h3&gt;

&lt;p&gt;Print mode runs one request and exits — ideal for scripts, smoke tests, and CI logs.&lt;/p&gt;

&lt;p&gt;After completing &lt;strong&gt;Part 3&lt;/strong&gt; (Ollama or OpenRouter), every non-interactive run needs:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Ollama path — export base URL every session&lt;/span&gt;
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;OPENAI_BASE_URL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;http://localhost:11434/v1
&lt;span class="nb"&gt;set&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;set&lt;/span&gt; +a

&lt;span class="c"&gt;# OpenRouter path — source env only&lt;/span&gt;
&lt;span class="c"&gt;# set -a &amp;amp;&amp;amp; source ~/.openwiki/.env &amp;amp;&amp;amp; set +a&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;guides/openwiki
openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"Summarize what OpenWiki can do"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Other useful print-mode prompts:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"Please generate documentation for this repository"&lt;/span&gt;
openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="nt"&gt;--modelId&lt;/span&gt; qwen2.5:1.5b &lt;span class="s2"&gt;"List the main folders in this repo"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Part 5 — Initialize a repo (--init)
&lt;/h3&gt;

&lt;p&gt;Run this inside a repo you want to document. Export Ollama env first if using &lt;strong&gt;Part 3 → Option A&lt;/strong&gt; :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;OPENAI_BASE_URL&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;http://localhost:11434/v1
&lt;span class="nb"&gt;set&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;set&lt;/span&gt; +a

&lt;span class="nb"&gt;cd &lt;/span&gt;guides/openwiki
openwiki &lt;span class="nt"&gt;--init&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or with a starting message:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;--init&lt;/span&gt; &lt;span class="s2"&gt;"Please generate documentation for this repository"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;What --init does (from upstream README):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creates initial docs under openwiki/ if no wiki exists&lt;/li&gt;
&lt;li&gt;Configures provider + model + API key on first run (saved to ~/.openwiki/.env)&lt;/li&gt;
&lt;li&gt;May append prompting to AGENTS.md and/or CLAUDE.md to help coding agents reference the docs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F1%2AG3h1PB9dWTaUIBvE9bPk9A.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F1%2AG3h1PB9dWTaUIBvE9bPk9A.gif" width="799" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 6 — Generate docs for a repo
&lt;/h3&gt;

&lt;p&gt;From the repo root:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="s2"&gt;"Please generate documentation for this repository"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you want a one-shot output that exits (good for CI logs), use print mode:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"Please generate documentation for this repository"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Part 7 — Update docs after changes (--update)
&lt;/h3&gt;

&lt;p&gt;After you change the code, rerun:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;--update&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Update — verified recording&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 8 — CI: keep docs updated via PRs
&lt;/h3&gt;

&lt;p&gt;OpenWiki’s recommended approach is to run updates in CI and open a PR when docs drift.&lt;/p&gt;

&lt;p&gt;From upstream README:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub Actions: copy openwiki-update.yml into .github/workflows/openwiki-update.yml&lt;/li&gt;
&lt;li&gt;GitLab CI: copy openwiki-update.gitlab-ci.yml into your pipeline&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In this repo, we’ll keep the CI snippet inside the guide and only add it to a real project when you’re ready.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 9 — Provider configuration (reference)
&lt;/h3&gt;

&lt;p&gt;OpenWiki supports multiple providers out of the box (from upstream README):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OpenRouter&lt;/li&gt;
&lt;li&gt;Fireworks&lt;/li&gt;
&lt;li&gt;Baseten&lt;/li&gt;
&lt;li&gt;OpenAI&lt;/li&gt;
&lt;li&gt;OpenAI-compatible endpoint (e.g. a LiteLLM gateway)&lt;/li&gt;
&lt;li&gt;Anthropic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;OpenWiki saves provider configuration and secrets to ~/.openwiki/.env. For &lt;strong&gt;non-interactive&lt;/strong&gt; commands (-p, --init, --update in CI), export them first:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;set&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;set&lt;/span&gt; +a
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  OpenRouter
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight properties"&gt;&lt;code&gt;&lt;span class="py"&gt;OPENWIKI_PROVIDER&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;openrouter&lt;/span&gt;
&lt;span class="py"&gt;OPENROUTER_API_KEY&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;your-key&lt;/span&gt;
&lt;span class="py"&gt;OPENWIKI_MODEL_ID&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;meta-llama/llama-3.2-3b-instruct:free&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;List free models on your machine:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-s&lt;/span&gt; https://openrouter.ai/api/v1/models &lt;span class="se"&gt;\&lt;/span&gt;
  | python3 &lt;span class="nt"&gt;-c&lt;/span&gt; &lt;span class="s2"&gt;"
import json,sys
for m in json.load(sys.stdin)['data']:
    p=m.get('pricing') or {}
    if p.get('prompt')=='0' and p.get('completion')=='0':
        print(m['id'])
"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Per-run override:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="nt"&gt;--modelId&lt;/span&gt; meta-llama/llama-3.2-3b-instruct:free &lt;span class="s2"&gt;"Summarize what OpenWiki can do"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Anthropic-compatible gateway
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight properties"&gt;&lt;code&gt;&lt;span class="py"&gt;OPENWIKI_PROVIDER&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;anthropic&lt;/span&gt;
&lt;span class="py"&gt;ANTHROPIC_API_KEY&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;your-key&lt;/span&gt;
&lt;span class="py"&gt;ANTHROPIC_BASE_URL&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;https://your-gateway.example.com/anthropic&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Local Ollama (qwen2.5:1.5b)
&lt;/h4&gt;

&lt;p&gt;Full step-by-step setup is in &lt;strong&gt;Part 3 → Option A&lt;/strong&gt;. Summary:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight properties"&gt;&lt;code&gt;&lt;span class="py"&gt;OPENWIKI_PROVIDER&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;openai&lt;/span&gt;
&lt;span class="py"&gt;OPENAI_API_KEY&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;ollama&lt;/span&gt;
&lt;span class="py"&gt;OPENWIKI_MODEL_ID&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;qwen2.5:1.5b&lt;/span&gt;
&lt;span class="c"&gt;# + export OPENAI_BASE_URL=http://localhost:11434/v1 in shell
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;See also: &lt;a href="//../ollama-small-models/TUTORIAL.md"&gt;Ollama Small Models&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  OpenAI-compatible gateway (future / upstream README)
&lt;/h4&gt;

&lt;p&gt;The upstream README documents OPENWIKI_PROVIDER=openai-compatible — not in npm &lt;strong&gt;v0.0.1&lt;/strong&gt; yet. Use the Ollama + openai provider workaround in &lt;strong&gt;Part 3&lt;/strong&gt; until a newer release adds it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 10 — Troubleshooting
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Insufficient credits (402) on a :free model
&lt;/h4&gt;

&lt;p&gt;Three common causes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Negative account balance&lt;/strong&gt;  — OpenRouter blocks &lt;em&gt;all&lt;/em&gt; requests (even free) if the balance &amp;lt; 0.
Fix: &lt;a href="https://openrouter.ai/settings/credits" rel="noopener noreferrer"&gt;openrouter.ai/settings/credits&lt;/a&gt; → add credits until the balance is positive.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prompt too large for free tier&lt;/strong&gt;  — OpenWiki’s agent sends ~46 KB + 9 tools. Free accounts may reject this with a 402.
Fix: use &lt;strong&gt;local Ollama&lt;/strong&gt; (Part 3 → Option A) or add OpenRouter credits.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Paid model by mistake&lt;/strong&gt;  — e.g. z-ai/glm-5.2 without :free.
Fix: OPENWIKI_MODEL_ID=meta-llama/llama-3.2-3b-instruct:free&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Diagnose your key + free model (small request)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env

&lt;span class="c"&gt;# Account limits / balance&lt;/span&gt;
curl &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;https://openrouter.ai/api/v1/key]&lt;span class="o"&gt;(&lt;/span&gt;https://openrouter.ai/api/v1/key&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$OPENROUTER_API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; | python3 &lt;span class="nt"&gt;-m&lt;/span&gt; json.tool

&lt;span class="c"&gt;# Tiny free-model test (should work if account is healthy)&lt;/span&gt;
curl &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;https://openrouter.ai/api/v1/chat/completions]&lt;span class="o"&gt;(&lt;/span&gt;https://openrouter.ai/api/v1/chat/completions&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$OPENROUTER_API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"model":"meta-llama/llama-3.2-3b-instruct:free","messages":[{"role":"user","content":"hi"}]}'&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  | python3 &lt;span class="nt"&gt;-m&lt;/span&gt; json.tool
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the &lt;strong&gt;curl test works&lt;/strong&gt; but &lt;strong&gt;openwiki -p fails&lt;/strong&gt; , the issue is OpenWiki’s large tool payload — switch to Ollama.&lt;/p&gt;

&lt;h4&gt;
  
  
  Insufficient credits (402 Payment Required) — paid model
&lt;/h4&gt;

&lt;p&gt;You picked a &lt;strong&gt;paid&lt;/strong&gt; model (e.g. z-ai/glm-5.2). Switch to a free model:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight properties"&gt;&lt;code&gt;&lt;span class="c"&gt;# In ~/.openwiki/.env — small free model (3B)
&lt;/span&gt;&lt;span class="py"&gt;OPENWIKI_MODEL_ID&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;meta-llama/llama-3.2-3b-instruct:free&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then re-export and retry:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;set&lt;/span&gt; &lt;span class="nt"&gt;-a&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;source&lt;/span&gt; ~/.openwiki/.env &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;set&lt;/span&gt; +a
openwiki &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"Summarize what OpenWiki can do"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  OPENROUTER_API_KEY is required for non-interactive runs
&lt;/h4&gt;

&lt;p&gt;You ran openwiki -p … Without exporting credentials. Either:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Run openwiki interactively once to create ~/.openwiki/.env, then set -a &amp;amp;&amp;amp; source ~/.openwiki/.env &amp;amp;&amp;amp; set +a, or&lt;/li&gt;
&lt;li&gt;Pass OPENROUTER_API_KEY=… Inline for that command.&lt;/li&gt;
&lt;/ol&gt;

&lt;h4&gt;
  
  
  command not found: openwiki
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Re-run npm install -g openwiki&lt;/li&gt;
&lt;li&gt;Confirm your npm global bin is on PATH&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Provider/API key prompts keep reappearing
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Ensure ~/.openwiki/.env exists and is writable&lt;/li&gt;
&lt;li&gt;Confirm you’re running the same user account in the terminal&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Docs look stale
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Re-run openwiki --update&lt;/li&gt;
&lt;li&gt;Ensure you’re in the repo root (OpenWiki is repo-context aware)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;OpenWiki makes it easy to generate and maintain documentation that evolves alongside your codebase. Instead of spending hours writing architecture notes, onboarding guides, and repository documentation manually, you can let OpenWiki analyze your project, generate an initial knowledge base, and keep it up to date as your code changes.&lt;/p&gt;

&lt;p&gt;In this guide, you learned how to install OpenWiki, configure it with either a local Ollama model or OpenRouter, generate documentation for a repository, update existing docs, and automate the entire workflow using CI. Whether you’re documenting an open-source project, an internal developer platform, or a production application, OpenWiki helps ensure your documentation stays accurate without becoming another maintenance burden.&lt;/p&gt;

&lt;p&gt;For the best experience, local Ollama provides a cost-free solution with unlimited usage, while OpenRouter gives you access to a wide range of cloud models when you need higher-quality outputs. Once your setup is complete, a simple openwiki --update after major code changes—or an automated CI workflow—can keep your documentation synchronized with your repository.&lt;/p&gt;

&lt;p&gt;As AI-powered development becomes more common, keeping documentation current is just as important as writing good code. OpenWiki brings that process into your development workflow, making high-quality, always-updated documentation something your team can rely on rather than postpone.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>openwiki</category>
      <category>agents</category>
      <category>langchain</category>
    </item>
    <item>
      <title>TechLatest AI &amp; Tech Weekly #23</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Mon, 06 Jul 2026 09:33:55 +0000</pubDate>
      <link>https://dev.to/techlatestnet/techlatest-ai-tech-weekly-23-5bj7</link>
      <guid>https://dev.to/techlatestnet/techlatest-ai-tech-weekly-23-5bj7</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdqliosq902dfx3z56hhd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdqliosq902dfx3z56hhd.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Welcome to this week’s edition of &lt;strong&gt;TechLatest AI &amp;amp; Tech Weekly&lt;/strong&gt;  👋&lt;/p&gt;

&lt;p&gt;Here’s a curated roundup of our latest blogs, notable product launches, and the most interesting AI &amp;amp; ML updates from June 29–July 05, 2026.&lt;/p&gt;

&lt;h3&gt;
  
  
  AI/ML News Roundup: June 29–July 05, 2026
&lt;/h3&gt;

&lt;p&gt;Key highlights from this week’s AI developments include frontier model advancements with agentic capabilities, massive funding rounds reshaping valuations, and practical product launches for developers and enterprises. These updates emphasize autonomous agents, infrastructure scaling, and open-weight benchmarks relevant to builders and researchers.&lt;/p&gt;

&lt;h3&gt;
  
  
  TL;DR
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic launched Claude Sonnet 5&lt;/strong&gt; , bringing stronger agentic coding, reasoning, and enterprise AI capabilities.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-source AI continued to accelerate&lt;/strong&gt; with releases like &lt;strong&gt;WebBrain&lt;/strong&gt; , &lt;strong&gt;EverOS&lt;/strong&gt; , &lt;strong&gt;OpenScience&lt;/strong&gt; , &lt;strong&gt;Diffusion Gemma ASR&lt;/strong&gt; , &lt;strong&gt;TabFM&lt;/strong&gt; , &lt;strong&gt;Nemotron Labs TwoTower&lt;/strong&gt; , and &lt;strong&gt;LlamaIndex legal-kb&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI announced major infrastructure breakthroughs&lt;/strong&gt; , including over &lt;strong&gt;50% lower inference costs&lt;/strong&gt; and its first custom AI chip, &lt;strong&gt;Jalapeño&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google expanded its AI ecosystem&lt;/strong&gt; with new Gemini models, Android 17 AI features, Chrome 150, TabFM, and developer-focused tools.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI investment remained strong&lt;/strong&gt; , with billion-dollar funding rounds, large-scale enterprise deployments, and rapid infrastructure expansion across the industry.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Governments accelerated AI adoption and regulation&lt;/strong&gt; , introducing new cybersecurity initiatives, AI policies, and large public-sector deployments.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TechLatest published four new Agent Masterclass tutorials&lt;/strong&gt; covering &lt;strong&gt;ZeroClaw&lt;/strong&gt; , &lt;strong&gt;OpenClaude&lt;/strong&gt; , &lt;strong&gt;PicoClaw&lt;/strong&gt; , and &lt;strong&gt;Google agents-cli&lt;/strong&gt; , helping developers build and deploy modern AI agents.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Open-Source AI, AI Agents, Voice AI &amp;amp; Developer Releases
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Meet WebBrain
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;WebBrain&lt;/strong&gt; is an open-source, local-first browser agent that understands webpages and automates browser tasks directly inside Chrome and Firefox. By running locally, it keeps browsing data private while enabling intelligent web automation. &lt;a href="https://www.webbrain.one/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Diffusion Gemma ASR Small Released
&lt;/h4&gt;

&lt;p&gt;Interfaze introduced &lt;strong&gt;Diffusion Gemma ASR Small&lt;/strong&gt; , an open-source speech recognition model that uses a diffusion-based decoder for multilingual transcription across six languages. &lt;a href="https://dev.to/sam_hiotis_117598dbfa3ac2/interfaze-ships-diffusion-gemma-asr-small-an-open-source-diffusion-asr-model-transcribing-six-15em-temp-slug-180662"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Google Health API Gets a CLI
&lt;/h4&gt;

&lt;p&gt;The new &lt;strong&gt;ghealth&lt;/strong&gt; CLI brings command-line access to the Google Health API, making it easier for developers to work with Fitbit and other health-related datasets directly from the terminal. &lt;a href="https://support.google.com/googlehealth/thread/446829039/unleash-your-creativity-introducing-the-google-health-cli?hl=en" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Meet EverOS
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;EverOS&lt;/strong&gt; is an open-source, Markdown-first memory runtime for AI agents featuring hybrid BM25 + vector retrieval and self-evolving skills to improve long-term agent memory. &lt;a href="https://aifuture.org/news/meet-everos-an-open-source-markdown-first-agent-memory-runtime-with-hybrid-bm25-2395" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Google AI Introduces TabFM
&lt;/h4&gt;

&lt;p&gt;Google AI unveiled &lt;strong&gt;TabFM&lt;/strong&gt; , a hybrid attention-based foundation model built specifically for tabular data, enabling zero-shot classification and regression without task-specific training. &lt;a href="https://research.google/blog/introducing-tabfm-a-zero-shot-foundation-model-for-tabular-data/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  NVIDIA Releases Nemotron Labs TwoTower
&lt;/h4&gt;

&lt;p&gt;NVIDIA introduced &lt;strong&gt;Nemotron Labs TwoTower&lt;/strong&gt; , a new retrieval model designed to improve embedding quality and large-scale information retrieval for modern AI applications. &lt;a href="https://alphasignal.ai/news/nvidia-s-nemotron-twotower-hits-2-42x-faster-generation-without-retraining" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  LlamaIndex Launches legal-kb
&lt;/h4&gt;

&lt;p&gt;LlamaIndex introduced &lt;strong&gt;legal-kb&lt;/strong&gt; , a reference application demonstrating agentic retrieval with &lt;strong&gt;Index v2&lt;/strong&gt;. It enables AI agents to autonomously search, read, and navigate large knowledge bases using four built-in retrieval tools. &lt;a href="https://digg.com/tech/p3pqrhvg" rel="noopener noreferrer"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Synthetic Sciences Releases OpenScience
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;OpenScience&lt;/strong&gt; is a new open-source, model-agnostic AI workbench built for scientific research across machine learning, biology, chemistry, and physics. Licensed under Apache 2.0, it runs on your own infrastructure and supports reproducible research workflows with any foundation model, positioning itself as an open alternative to proprietary AI research platforms. &lt;a href="https://dev.to/sam_hiotis_117598dbfa3ac2/synthetic-sciences-releases-openscience-an-open-source-model-agnostic-ai-workbench-for-machine-1fkc-temp-slug-2526038"&gt;Source&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Hugging Face &amp;amp; Open-Source Ecosystem
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Mistral released Leanstral 1.5&lt;/strong&gt; on June 30, 2026, an AI for automated theorem proving supporting Lean 4 proof work, continuing Mistral’s commitment to open-weight models for specialized tasks. &lt;a href="https://mistral.ai/news/leanstral-1-5/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LongCat-2.0&lt;/strong&gt; , a Chinese-made AI model with &lt;strong&gt;1.6 trillion parameters&lt;/strong&gt; , emerged in late June, achieving performance comparable to &lt;strong&gt;Gemini 3.1 Pro&lt;/strong&gt; without using an NVIDIA AI chip, demonstrating the growing viability of non-NVIDIA hardware for frontier training. &lt;a href="https://gigazine.net/gsc_news/en/20260701-longcat-2-0/#gsc.tab=0" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenRouter released Fusion&lt;/strong&gt; on July 1, 2026, a tool that runs prompts across multiple models simultaneously (Gemini 3 Flash, Kimi K2.6, DeepSeek V4 Pro) and synthesizes outputs into a single response, with a budget panel scoring &lt;strong&gt;64.7% on DRACO&lt;/strong&gt; , within one percentage point of Fable 5’s 65.3%. &lt;a href="https://openrouter.ai/fusion" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI engineers found a way to reduce AI inference costs by more than 50%&lt;/strong&gt; , a breakthrough that could significantly change the economics of deploying frontier models at scale. &lt;a href="https://www.heise.de/en/news/OpenAI-reportedly-reduced-inference-costs-by-more-than-half-11350724.html" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Frontier Model Advancements &amp;amp; Agentic Capabilities
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic launched Claude Sonnet 5&lt;/strong&gt; on June 30, 2026, and released it as generally available on July 1, 2026, making it the &lt;strong&gt;default model for every Free and Pro user worldwide&lt;/strong&gt; starting July 1. &lt;a href="https://techcrunch.com/2026/06/30/anthropic-launches-claude-sonnet-5-as-a-cheaper-way-to-run-agents/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Sonnet 5 performs close to Opus 4.8 on many tasks&lt;/strong&gt; at introductory pricing through August 31 of &lt;strong&gt;$2/$10 per million tokens&lt;/strong&gt; (input/output), less than Sonnet 4.6’s cost. &lt;a href="https://www.buildfastwithai.com/blogs/claude-sonnet-5-review-benchmarks-pricing-2026" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sonnet 5 benchmark results&lt;/strong&gt; : 63.2% on agentic coding (SWE-bench Pro equivalent), 81.2% on OSWorld-Verified, 80.4% on Terminal-Bench 2.1, 57.4% on Humanity’s Last Exam with tools, and 84.7% on BrowseComp 25. &lt;a href="https://emergent.sh/learn/claude-sonnet-5-benchmark" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;US government lifted restrictions on Claude Fable 5 and Claude Mythos 5&lt;/strong&gt; on July 1, 2026, after weeks of negotiations with the Trump administration, allowing the release of Sonnet 5 and signaling a shift in AI policy. &lt;a href="https://www.aljazeera.com/economy/2026/7/1/us-lifts-restrictions-on-powerful-ai-models-fable-mythos-anthropic-says" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fable 5 was greenlit to return&lt;/strong&gt; after weeks of negotiations with the Trump administration and the conditional return of its export restrictions, with the hero model now available for enterprise and government use. &lt;a href="https://www.axios.com/2026/07/01/anthropic-fable-5-back-online-trump-export-controls-lifted" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.6 Sol&lt;/strong&gt; is confirmed to deploy on &lt;strong&gt;Cerebras wafer-scale hardware in July 2026&lt;/strong&gt; for select customers, targeting up to &lt;strong&gt;750 tokens per second&lt;/strong&gt; (approximately 15x faster than the current 50 tokens/second baseline serving). &lt;a href="https://valueaddvc.com/pulse/cerebras-openai-gpt-5-6-sol-750-tokens-2026" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Mythos discovered Squidbleed (CVE-2026–47729)&lt;/strong&gt;, a 29-year-old memory leak vulnerability in the Squid proxy server that survived 29 years of human code reviews, as part of Anthropic’s Project Glasswing defensive security research program.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Project Glasswing partners confirmed 23,019 vulnerabilities&lt;/strong&gt; from Claude Mythos analysis across 1,000 open-source projects in the first month of the program, with a 90.6% confirmation rate on independent sampling.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Massive Funding Rounds Reshaping Valuations
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Etched&lt;/strong&gt; , an Nvidia competitor, secured &lt;strong&gt;$1 billion in sales at a $5 billion valuation&lt;/strong&gt; due to high demand for AI chips by July 1, 2026. &lt;a href="https://techcrunch.com/2026/06/30/nvidia-competitor-etched-hits-5b-valuation-1b-in-sales-for-ai-chip/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Wayve launched an $85 million employee tender offer at an $8.5 billion valuation&lt;/strong&gt; , demonstrating significant investment in autonomous driving technology. &lt;a href="https://techcrunch.com/2026/06/30/wayve-launches-85m-employee-tender-offer-at-8-5b-valuation/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Amazon established a $1 billion FDE organization&lt;/strong&gt; focused on deploying purpose-built AI agents within companies. &lt;a href="https://techcrunch.com/2026/06/30/amazon-launches-new-1-billion-fde-org-following-openai-and-anthropic/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Realta Fusion announced a successful fusion reaction breakthrough&lt;/strong&gt; , potentially revolutionizing sustainable energy, though specific funding details remain undisclosed. &lt;a href="https://techcrunch.com/2026/06/30/realta-fusion-generates-electricity-directly-from-a-fusion-reaction-an-apparent-first/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Alphabet (Google) lost $269B&lt;/strong&gt; on an AI talent exodus, with a $280B stake lost in just one day, reflecting the market’s reaction to AI personnel shifts.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Practical Product Launches for Developers &amp;amp; Enterprises
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Science launched on July 1, 2026&lt;/strong&gt; , a dedicated AI application targeting scientific research workflows with an initial focus on &lt;strong&gt;drug discovery, protein structure analysis, genomics, and computational biology&lt;/strong&gt; , building on the acquisition of Coefficient Bio (approximately $400 million all-stock in June 2026) and the hire of Nobel laureate John Jumper from Google DeepMind. &lt;a href="https://techcrunch.com/2026/06/30/anthropics-claude-science-bets-on-workflow-not-a-new-model-to-win-over-scientists/" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;California signed a landmark Anthropic deal&lt;/strong&gt; on June 29, 2026, the largest US state government AI deployment in history, giving every California state agency and participating local governments access to Claude at a &lt;strong&gt;50% discount&lt;/strong&gt; through the new Statewide Information Technology Shared Services portal, with free workforce training and technical assistance. &lt;a href="https://www.latimes.com/business/story/2026-06-29/anthropic-partners-with-california-to-expand-ai-use-by-government-workers" rel="noopener noreferrer"&gt;Source&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google released two new image-generation models&lt;/strong&gt; on June 30, 2026: &lt;strong&gt;Gemini 3.1 Flash Image&lt;/strong&gt; at $0.50/$3.00 input/output per million tokens and &lt;strong&gt;Gemini 3 Pro Image&lt;/strong&gt; at $2.00/$12.00, both available immediately through Google AI Studio and the Gemini API.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google announced Nano Banana 2 Lite&lt;/strong&gt; (faster and cheaper image generation model) and &lt;strong&gt;Gemini Omni Flash&lt;/strong&gt; (video generation model) on July 1, 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grok 4.3 is now available on Amazon Bedrock&lt;/strong&gt; as of July 1, 2026, priced at &lt;strong&gt;$1.25/$2.50 per million tokens&lt;/strong&gt; (input/output), making it the most affordable major-lab model on Bedrock with a 131K context window.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic announced Claude’s general availability on Microsoft Azure AI Foundry&lt;/strong&gt; with GB300 Blackwell Ultra GPUs, marking the first deployment of Claude on NVIDIA GB300 Blackwell Ultra GPUs with Quantum-X800 InfiniBand networking.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google released Android 17&lt;/strong&gt; with Gemini Omni integrated at the OS level, alongside Lyria 3 (music generation model) and AudioLM translation capabilities, framing it as groundwork for “GemINI Intelligence,” the company’s broader agentic OS initiative.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI added Record and Replay to ChatGPT Business for the Codex macOS app&lt;/strong&gt; , letting eligible Business users demonstrate a workflow once and convert it into a reusable skill.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google released the stable version of Google Chrome 150&lt;/strong&gt; on July 1, 2026, enabling features like adjusting font sizes to fit frames and creating gradient borders using only CSS.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NotebookLM introduced TikTok-style clips&lt;/strong&gt; on July 1, 2026, adding a new social content creation capability.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Governance, Ethics &amp;amp; Regulation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The Five Eyes intelligence alliance issued a rare joint statement&lt;/strong&gt; titled “The AI Shift in Cyber Risk: Why Leaders Must Act Now” on June 22, 2026, signed by representatives of Australia’s ASD, Canada’s CSE, New Zealand’s GCSB, UK’s GCHQ, and US’s NSA and CISA, stating: “Frontier AI models are anticipated to exceed current industry expectations… The timeline is not years, it is months”.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Economist reported&lt;/strong&gt; that an Anthropic AI agent was able to penetrate nearly all classified systems managed by the NSA and US Cyber Command within hours in an undisclosed assessment, the clearest public indication of what Five Eyes agencies have tested.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CISA added CVE-2026–42271 to its Known Exploited Vulnerabilities (KEV) catalog&lt;/strong&gt; on June 27, 2026, an unauthenticated remote code execution chain in LiteLLM’s AI Gateway that exploits MCP endpoints to gain full access to server environments, including all configured OpenAI and Anthropic API keys.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A coalition of 42 state attorneys general launched a sweeping investigation into OpenAI&lt;/strong&gt; on June 29–July 1, 2026, with New York’s AG already serving subpoenas ahead of OpenAI’s anticipated IPO, covering advertising claims, the company’s documented sycophancy problem, data handling practices, health data management, and treatment of minors and seniors.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CISA cut the mandatory federal patch deadline to 3 days,&lt;/strong&gt; citing AI threats directly, as recommended in the Five Eyes statement.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The US Pentagon added Alibaba to its list of Chinese military companies&lt;/strong&gt; (a designation the company is contesting in court), which includes BYD, Baidu, Unitree, and 188 other entities described as directly controlled by the Chinese military.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;US government lifted restrictions on Claude Fable 5 and Claude Mythos 5&lt;/strong&gt; on July 1, 2026, after weeks of negotiations with the Trump administration, marking a policy shift.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Infrastructure &amp;amp; Hardware
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI and Broadcom unveiled Jalapeño&lt;/strong&gt; on July 1, 2026, OpenAI’s first custom-designed AI chip, with engineering samples delivered on June 24, 2026, designed for LLM inference (not training) and manufactured by TSMC.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Jalapeño delivers approximately 50% lower inference cost per token than current-generation Nvidia GPUs&lt;/strong&gt; , with performance matching Nvidia Blackwell and Google TPUs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Broadcom expects a small prototype data center deployment by the end of 2026&lt;/strong&gt; , with production ramp in 2027 and full scale in the first half of 2028.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI and Broadcom committed to deploying OpenAI-designed accelerators at a 10-gigawatt scale with Microsoft and other partners through 2029&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.6 Sol deployments on Cerebras wafer-scale hardware&lt;/strong&gt; target up to 750 tokens per second, approximately 15x faster than current GPU-based serving at ~50 tokens/second.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;xAI’s Grok 5 is still in training on Colossus 2 (expanded to 1.5 GW)&lt;/strong&gt;, with Polymarket closed June 30 contracts for Grok 5 at approximately 3% probability of release in Q3 2026.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic is paying SpaceX $1.25 billion per month&lt;/strong&gt; for access to over 220,000 Nvidia processors at the Colossus 1 facility in Memphis, with the contract running through May 2029.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;California’s 300,000 state government workers&lt;/strong&gt; represent a large-scale real-world test of whether Claude can deliver measurable productivity gains in government workflows, with Poppy (AI assistant built by state workers) piloted with 2,800 employees across 67 departments and on track for full statewide rollout in July 2026.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Blogs We Published This Week
&lt;/h3&gt;

&lt;h4&gt;
  
  
  ZeroClaw Agent Masterclass — Full Tutorial
&lt;/h4&gt;

&lt;p&gt;A complete beginner-to-advanced guide to &lt;strong&gt;ZeroClaw&lt;/strong&gt; , covering installation, configuration, architecture, gateway setup, tool integrations, memory, providers, and real-world automation workflows. Perfect for developers looking for a lightweight, self-hosted AI agent.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/zeroclaw-agent-masterclass-full-tutorial-37m7"&gt;ZeroClaw Agent Masterclass — Full Tutorial&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  OpenClaude Agent Masterclass — Full Tutorial
&lt;/h4&gt;

&lt;p&gt;A comprehensive guide to &lt;strong&gt;OpenClaude&lt;/strong&gt; , showing how to install, configure, customize, and extend the open-source AI coding agent for everyday development tasks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/openclaude-agent-masterclass-full-tutorial-7f2"&gt;OpenClaude Agent Masterclass — Full Tutorial&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  PicoClaw Agent Masterclass — Full Tutorial
&lt;/h4&gt;

&lt;p&gt;An end-to-end tutorial covering &lt;strong&gt;PicoClaw&lt;/strong&gt; , the lightweight AI agent designed for low-resource environments, edge devices, and fast deployments. Learn installation, configuration, and practical use cases.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/picoclaw-agent-masterclass-full-tutorial-4nln"&gt;PicoClaw Agent Masterclass — Full Tutorial&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Google agents-cli Agent Masterclass — Full Tutorial
&lt;/h4&gt;

&lt;p&gt;A complete walkthrough of &lt;strong&gt;Google agents-cli&lt;/strong&gt; , covering installation, commands, skills, Google Cloud integration, and how to build production-ready AI agents on Google’s enterprise agent platform.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/techlatestnet/google-agents-cli-agent-masterclass-full-tutorial-4ip0"&gt;Google agents-cli Agent Masterclass — Full Tutorial&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>news</category>
      <category>newsletter</category>
      <category>newsandupdates</category>
      <category>technologynews</category>
    </item>
    <item>
      <title>Google agents-cli Agent Masterclass — Full Tutorial</title>
      <dc:creator>TechLatest</dc:creator>
      <pubDate>Fri, 03 Jul 2026 16:20:24 +0000</pubDate>
      <link>https://dev.to/techlatestnet/google-agents-cli-agent-masterclass-full-tutorial-4ip0</link>
      <guid>https://dev.to/techlatestnet/google-agents-cli-agent-masterclass-full-tutorial-4ip0</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdte5scnozb5m9rvnst53.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdte5scnozb5m9rvnst53.png" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Everything you need to &lt;strong&gt;install, run, and build extraordinary agents&lt;/strong&gt; with &lt;a href="https://github.com/google/agents-cli" rel="noopener noreferrer"&gt;Google agents-cli&lt;/a&gt; — the CLI and skills that turn your coding assistant into an ADK + Google Cloud expert.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Official:&lt;/strong&gt; &lt;a href="https://github.com/google/agents-cli" rel="noopener noreferrer"&gt;github.com/google/agents-cli&lt;/a&gt; · &lt;strong&gt;Docs:&lt;/strong&gt; &lt;a href="https://google.github.io/agents-cli/" rel="noopener noreferrer"&gt;google.github.io/agents-cli&lt;/a&gt; · &lt;strong&gt;Quickstart:&lt;/strong&gt; &lt;a href="https://google.github.io/agents-cli/guide/quickstart-tutorial/" rel="noopener noreferrer"&gt;Build Your First Agent&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  What you’ll have at the end
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;agents-cli v1.0+ installed and verified&lt;/li&gt;
&lt;li&gt;Skills loaded into your coding agent (Cursor, Claude Code, Codex, Antigravity)&lt;/li&gt;
&lt;li&gt;A scaffolded &lt;strong&gt;ADK agent project&lt;/strong&gt; with eval boilerplate&lt;/li&gt;
&lt;li&gt;Understanding of scaffold → build → eval → deploy → observe lifecycle&lt;/li&gt;
&lt;li&gt;Ideas for &lt;strong&gt;extraordinary&lt;/strong&gt; multi-tool, multi-agent, and RAG projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Introduction — agents-cli is not another chatbot
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/google/agents-cli" rel="noopener noreferrer"&gt;agents-cli&lt;/a&gt; is Google’s &lt;strong&gt;Agent Development Lifecycle toolchain&lt;/strong&gt; for the &lt;a href="https://docs.cloud.google.com/gemini-enterprise-agent-platform/" rel="noopener noreferrer"&gt;Gemini Enterprise Agent Platform&lt;/a&gt;. It wraps the &lt;a href="https://adk.dev/" rel="noopener noreferrer"&gt;Agent Development Kit (ADK)&lt;/a&gt; with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;CLI commands&lt;/strong&gt;  — scaffold, run, eval, deploy, publish&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;7 agent skills&lt;/strong&gt;  — workflow, ADK code, scaffold, eval, deploy, publish, observability&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Coding-agent integration&lt;/strong&gt;  — works &lt;em&gt;with&lt;/em&gt; Claude Code, Codex, Antigravity — not &lt;em&gt;instead of&lt;/em&gt; them&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmqmmi1rtujjq6aw0lhkr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmqmmi1rtujjq6aw0lhkr.png" width="799" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Official Google Cloud agent stack architecture&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Source:&lt;/em&gt; &lt;a href="https://github.com/google/agents-cli/blob/main/docs/src/assets/architecture.png" rel="noopener noreferrer"&gt;&lt;em&gt;google/agents-cli architecture&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyrhvthlj85om87tn0el2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyrhvthlj85om87tn0el2.png" width="800" height="398"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 1 — Prerequisites
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1trb22uzge3xgxmdwe9h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1trb22uzge3xgxmdwe9h.png" width="799" height="236"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;uv:&lt;/strong&gt; &lt;a href="https://docs.astral.sh/uv/getting-started/installation/" rel="noopener noreferrer"&gt;docs.astral.sh/uv&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;API access (local):&lt;/strong&gt; &lt;a href="https://aistudio.google.com/apikey" rel="noopener noreferrer"&gt;AI Studio API key&lt;/a&gt; &lt;em&gt;or&lt;/em&gt; agents-cli login for GCP&lt;/p&gt;

&lt;p&gt;You do &lt;strong&gt;not&lt;/strong&gt; need Google Cloud for local prototype work — an AI Studio key is enough for run and eval.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 2 — Install agents-cli
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Full setup (CLI + skills)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli setup
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This installs the CLI and pushes skills to detected coding agents.&lt;/p&gt;

&lt;h4&gt;
  
  
  Skills only
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add google/agents-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your coding agent reads skills and invokes agents-cli Commands on your behalf.&lt;/p&gt;

&lt;h4&gt;
  
  
  Verify
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli &lt;span class="nt"&gt;--version&lt;/span&gt; &lt;span class="c"&gt;# agents-cli, version 1.0.0&lt;/span&gt;
uvx google-agents-cli &lt;span class="nt"&gt;--help&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcszg2mjyaj28aw7oly7c.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcszg2mjyaj28aw7oly7c.gif" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 3 — Authenticate
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli login &lt;span class="nt"&gt;--status&lt;/span&gt;
uvx google-agents-cli login &lt;span class="nt"&gt;-i&lt;/span&gt; &lt;span class="c"&gt;# interactive: GCP or AI Studio&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For &lt;strong&gt;local dev&lt;/strong&gt; , set it in your project .env:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight properties"&gt;&lt;code&gt;&lt;span class="py"&gt;GOOGLE_GENAI_USE_VERTEXAI&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;FALSE&lt;/span&gt;
&lt;span class="py"&gt;GOOGLE_API_KEY&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;your-aistudio-key&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F87smke29uzb91ske2jwe.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F87smke29uzb91ske2jwe.gif" width="800" height="378"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli info
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Shows: project name, deployment target, agent directory, region, A2A support.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 4 — The 7 agent skills
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmjgx0k6oznha4b5f27y1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmjgx0k6oznha4b5f27y1.png" width="800" height="310"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prompt pattern:&lt;/strong&gt; &lt;em&gt;“Use agents-cli to build …”&lt;/em&gt; activates the right skills automatically.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 5 — Scaffold your first agent
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Prototype mode (no cloud deploy)
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli create caveman-agent &lt;span class="nt"&gt;--prototype&lt;/span&gt; &lt;span class="nt"&gt;--yes&lt;/span&gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;caveman-agent
uvx google-agents-cli &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Creates:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;caveman-agent/
├── app/agent.py # ADK root agent
├── agents-cli-manifest.yaml
├── tests/eval/ # eval datasets + config
├── pyproject.toml
├── Dockerfile
└── GEMINI.md # agent dev instructions
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbxhrwcf79fs69nnvykl5.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbxhrwcf79fs69nnvykl5.gif" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Check project config
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli info
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Shows: project name, deployment target, agent directory, region, A2A support.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb10lq401xv05urcjrwyz.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb10lq401xv05urcjrwyz.gif" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 6 — Build the caveman compressor (official tutorial)
&lt;/h3&gt;

&lt;p&gt;Google’s &lt;a href="https://google.github.io/agents-cli/guide/quickstart-tutorial/" rel="noopener noreferrer"&gt;quickstart tutorial&lt;/a&gt; walks through a &lt;strong&gt;caveman compressor&lt;/strong&gt;  — verbose text → terse grunts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tell your coding agent:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Use agents-cli to build a caveman-style agent that compresses verbose text into terse, technical grunts&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Or edit app/agent.py directly — see examples/caveman-agent.py:&lt;/p&gt;

&lt;p&gt;Save spec first: examples/agents-cli-spec.caveman.md → .agents-cli-spec.md&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;google.adk.agents&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;Agent&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;google.adk.apps&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;App&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;google.adk.models&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;Gemini&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;google.genai&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;types&lt;/span&gt;

&lt;span class="n"&gt;root_agent&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;Agent&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;name&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;caveman_agent&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="nc"&gt;Gemini&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;gemini-flash-latest&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="n"&gt;retry_options&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;types&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;HttpRetryOptions&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;attempts&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
    &lt;span class="p"&gt;),&lt;/span&gt;
    &lt;span class="n"&gt;instruction&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"""&lt;/span&gt;&lt;span class="s"&gt;You caveman compressor. Human give long words, you make short.
Rules:
- No articles. No filler. No fluff.
- Short grunts. Simple words.
- Keep technical terms but grunt around them.
- Funny but meaning stays.

Example input: &lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;I would like to deploy the application to production&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;
Example output: &lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Me deploy. Production. Now.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;
&lt;/span&gt;&lt;span class="sh"&gt;"""&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="n"&gt;app&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;App&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;root_agent&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;root_agent&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;name&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;app&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Part 7 — Run locally
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli run &lt;span class="s2"&gt;"Please help me understand deployment options for my project"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Starts a local server (default port &lt;strong&gt;18080&lt;/strong&gt; ), runs one turn, stops.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli playground &lt;span class="c"&gt;# web UI for manual chat&lt;/span&gt;
uvx google-agents-cli run &lt;span class="nt"&gt;--start-server&lt;/span&gt; &lt;span class="c"&gt;# keep server warm for repeated prompts&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fanwnpvbkr5dtinyrwv8z.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fanwnpvbkr5dtinyrwv8z.gif" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Expected caveman output:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Deploy options: Agent Runtime, Cloud Run, GKE. Pick one. Ship.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Part 8 — Evaluate (the most important phase)
&lt;/h3&gt;

&lt;p&gt;agents-cli ships &lt;strong&gt;17+ built-in metrics&lt;/strong&gt; :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli &lt;span class="nb"&gt;eval &lt;/span&gt;metric list
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Includes: FINAL_RESPONSE_QUALITY, INSTRUCTION_FOLLOWING, TOOL_USE_QUALITY, SAFETY, HALLUCINATION, multi-turn variants.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqd6fpo43mtw1f74kqn8o.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqd6fpo43mtw1f74kqn8o.gif" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Run evals
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli &lt;span class="nb"&gt;eval &lt;/span&gt;generate &lt;span class="c"&gt;# run agent on dataset → traces&lt;/span&gt;
uvx google-agents-cli &lt;span class="nb"&gt;eval &lt;/span&gt;grade &lt;span class="c"&gt;# LLM-as-judge scoring&lt;/span&gt;
&lt;span class="c"&gt;# Or chained:&lt;/span&gt;
uvx google-agents-cli &lt;span class="nb"&gt;eval &lt;/span&gt;run
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Critical rule:&lt;/strong&gt; Never assert LLM output in pytest — use eval, not unit tests, for behavioral quality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Iterate 5–10+ times&lt;/strong&gt; until thresholds are passed. Tell your coding agent:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;The greeting test is too polite. Make it more caveman. Re-run eval.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Advanced: eval dataset synthesize, eval compare, eval analyze, eval optimize&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 9 — Deploy to Google Cloud
&lt;/h3&gt;

&lt;p&gt;After eval passes and &lt;strong&gt;you explicitly approve&lt;/strong&gt; :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli scaffold enhance &lt;span class="nb"&gt;.&lt;/span&gt; &lt;span class="nt"&gt;--deployment-target&lt;/span&gt; cloud_run
uvx google-agents-cli deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Cloud Trace is enabled by default after deployment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 10 — Publish &amp;amp; observe
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx google-agents-cli publish gemini-enterprise
uvx google-agents-cli infra single-project &lt;span class="c"&gt;# observability infra&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open Cloud Trace Explorer — see spans per LLM call and tool execution.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 11 — CLI command reference
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3ry46oltpz2y6sd0w0bj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3ry46oltpz2y6sd0w0bj.png" width="800" height="342"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Full list: &lt;a href="https://github.com/google/agents-cli#cli-commands" rel="noopener noreferrer"&gt;agents-cli README&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 12 — Mind-blowing project ideas
&lt;/h3&gt;

&lt;p&gt;Use agents-cli skills + ADK to build these — each uses a different superpower:&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Incident Gruntifier (caveman++)
&lt;/h4&gt;

&lt;p&gt;On-call Slack bot that turns 500-word postmortem drafts into 3-line caveman summaries &lt;em&gt;and&lt;/em&gt; opens a Jira ticket via a tool. Multi-tool agent with evals for brevity + accuracy.&lt;/p&gt;

&lt;h4&gt;
  
  
  2. Meeting → Action Agent
&lt;/h4&gt;

&lt;p&gt;Ingests transcript → outputs ADK tool calls: calendar events, email drafts, Linear tasks. Eval on TOOL_USE_QUALITY and MULTI_TURN_TASK_SUCCESS.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. RAG Doc Oracle
&lt;/h4&gt;

&lt;p&gt;Clone rag-vector-search Sample from agents-cli catalog. Agent answers from your PDFs with grounding eval (GROUNDING, HALLUCINATION metrics).&lt;/p&gt;

&lt;h4&gt;
  
  
  4. A2A Agent Mesh
&lt;/h4&gt;

&lt;p&gt;Two agents: &lt;strong&gt;Researcher&lt;/strong&gt; (search tool) + &lt;strong&gt;Writer&lt;/strong&gt; (compression). A2A protocol built into ADK scaffold — agents talk to each other.&lt;/p&gt;

&lt;h4&gt;
  
  
  5. Self-Optimizing Persona
&lt;/h4&gt;

&lt;p&gt;Use eval optimize to auto-tune instructions until caveman tone scores 95%+ on INSTRUCTION_FOLLOWING — Watch prompts evolve across eval iterations.&lt;/p&gt;

&lt;h4&gt;
  
  
  6. Deploy-in-60-Seconds Demo
&lt;/h4&gt;

&lt;p&gt;Prototype locally → scaffold enhance --deployment-target cloud_run → deploy → live public URL. Record the VHS GIF of the deploy output for your portfolio.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prompt to start any of these:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Use agents-cli workflow skill. Read .agents-cli-spec.md.
Scaffold prototype, implement ADK tools, write 3 eval cases,
run eval generate + grade, show me failures before fixing.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Part 13 — Work with Cursor / Claude Code
&lt;/h3&gt;

&lt;p&gt;After uvx google-agents-cli setupSkills appear in your agent's skill directory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example prompts:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F73id7m263e6np2fkjaer.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F73id7m263e6np2fkjaer.png" width="800" height="228"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pair with our &lt;a href="https://medium.com/@techlatest.net/model-context-protocol-mcp-full-visual-guide-ffbbf2121c38?sharedUserId=techlatest.net" rel="noopener noreferrer"&gt;MCP Visual Guide&lt;/a&gt; to expose deployed agents as MCP servers.&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 14 — agents-cli vs raw ADK
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc8ed4l9iv03gvukphr66.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc8ed4l9iv03gvukphr66.png" width="800" height="239"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Part 15 — Hands-on checklist
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 1. Install&lt;/span&gt;
uvx google-agents-cli setup

&lt;span class="c"&gt;# 2. Auth&lt;/span&gt;
uvx google-agents-cli login &lt;span class="nt"&gt;-i&lt;/span&gt; &lt;span class="c"&gt;# or AI Studio key in .env&lt;/span&gt;

&lt;span class="c"&gt;# 3. Scaffold&lt;/span&gt;
uvx google-agents-cli create my-agent &lt;span class="nt"&gt;--prototype&lt;/span&gt; &lt;span class="nt"&gt;--yes&lt;/span&gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;my-agent &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; uvx google-agents-cli &lt;span class="nb"&gt;install&lt;/span&gt;

&lt;span class="c"&gt;# 4. Run&lt;/span&gt;
uvx google-agents-cli run &lt;span class="s2"&gt;"Hello from ADK"&lt;/span&gt;

&lt;span class="c"&gt;# 5. Eval&lt;/span&gt;
uvx google-agents-cli &lt;span class="nb"&gt;eval &lt;/span&gt;metric list
uvx google-agents-cli &lt;span class="nb"&gt;eval &lt;/span&gt;run

&lt;span class="c"&gt;# 6. (Optional) Deploy — with human approval&lt;/span&gt;
uvx google-agents-cli scaffold enhance &lt;span class="nb"&gt;.&lt;/span&gt; &lt;span class="nt"&gt;--deployment-target&lt;/span&gt; cloud_run
uvx google-agents-cli deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Summary
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;agents-cli&lt;/strong&gt; turns your existing coding assistant into a &lt;strong&gt;Google Cloud agent factory&lt;/strong&gt;. Install with uvx google-agents-cli setup, scaffold with create, smoke-test with run, prove quality with eval, ship with deploy. The skills handle ADK patterns, so you focus on &lt;em&gt;what&lt;/em&gt; the agent does — caveman compressors, RAG oracles, or multi-agent meshes.&lt;/p&gt;

&lt;p&gt;Every GIF in this guide was recorded from a real terminal. Clone the tapes, re-run them, and verify them.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thank you so much for reading
&lt;/h3&gt;

&lt;p&gt;Like | Follow | Subscribe to the newsletter.&lt;/p&gt;

&lt;p&gt;Catch us on&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.techlatest.net/" rel="noopener noreferrer"&gt;https://www.techlatest.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Newsletter: &lt;a href="https://substack.com/@parvezmohammed" rel="noopener noreferrer"&gt;https://substack.com/@parvezmohammed&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter: &lt;a href="https://twitter.com/TechlatestNet" rel="noopener noreferrer"&gt;https://twitter.com/TechlatestNet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LinkedIn: &lt;a href="https://www.linkedin.com/in/techlatest-net/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/techlatest-net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;YouTube:&lt;a href="https://www.youtube.com/@techlatest_net/" rel="noopener noreferrer"&gt;https://www.youtube.com/@techlatest_net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogs: &lt;a href="https://medium.com/@techlatest.net" rel="noopener noreferrer"&gt;https://medium.com/@techlatest.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reddit Community: &lt;a href="https://www.reddit.com/user/techlatest_net/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/techlatest_net/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cliagents</category>
      <category>google</category>
      <category>agenticai</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
