Skip to content

Reformat architecture diagram in README#64

Merged
ilblackdragon merged 1 commit intonearai:mainfrom
ewiner:patch-1
Feb 14, 2026
Merged

Reformat architecture diagram in README#64
ilblackdragon merged 1 commit intonearai:mainfrom
ewiner:patch-1

Conversation

@ewiner
Copy link
Copy Markdown
Contributor

@ewiner ewiner commented Feb 13, 2026

A whitespace-only change to fix up the ASCII diagram.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @ewiner, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on enhancing the clarity of the project's documentation by reformatting the ASCII architecture diagram within the README.md file. The changes are purely cosmetic, involving adjustments to whitespace to ensure the diagram is correctly aligned and easier to interpret, without altering any content or functionality.

Highlights

  • Documentation Reformatting: The architecture diagram in the README.md file has been reformatted to improve its visual presentation and readability. This was a whitespace-only change.
Changelog
  • README.md
    • Reformatted the ASCII architecture diagram for improved visual alignment and readability.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request reformats the ASCII architecture diagram in the README.md file, improving its alignment and readability. The change is a good improvement. I've added a suggestion to consider replacing the ASCII art with a Mermaid diagram in the future to make it easier to maintain.

Comment thread README.md
Comment on lines +184 to +219
┌────────────────────────────────────────────────────────────────┐
│ Channels │
│ ┌──────┐ ┌──────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ REPL │ │ HTTP │ │WASM Channels│ │ Web Gateway │ │
│ └──┬───┘ └──┬───┘ └──────┬──────┘ │ (SSE + WS)
│ │ │ │ └──────┬──────┘ │
│ └─────────┴──────────────┴────────────────┘ │
│ │ │
│ ┌─────────▼─────────┐ │
│ │ Agent Loop │ Intent routing │
│ └────┬─────────┬───
│ │
│ ┌──────────▼───┐ ┌──▼───────────────┐
│ │ Scheduler │ │ Routines Engine │ │
│ │(parallel jobs)│ │(cron, event, wh) │ │
│ └──────┬───────┘ └────────┬─────────┘ │
│ │
│ ┌─────────────┼────────────────────┘
│ │ │ │
│ ┌───▼────┐ ┌────▼────────────────┐ │
│ │ Local │ │ Orchestrator │ │
│ │Workers │ │ ┌───────────────┐ │ │
│ │(in-proc)│ │ │ Docker Sandbox│ │ │
│ └───┬────┘ │ │ Containers │ │ │
│ │ │ │ ┌───────────┐ │ │ │
│ │ │ │ │Worker / CC│ │ │ │
│ │ │ │ └───────────┘ │ │ │
│ │ │ └───────────────┘ │ │
│ │ └─────────┬───────────┘ │
│ └──────────────────┤ │
│ │ │
│ ┌───────────▼──────────┐ │
│ │ Tool Registry │ │
│ │ Built-in, MCP, WASM │ │
│ └──────────────────────┘ │
└────────────────────────────────────────────────────────────────┘
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Thanks for reformatting the architecture diagram. The alignment is much better now.

For future maintenance, consider replacing the ASCII art with a Mermaid diagram. GitHub renders Mermaid diagrams directly in Markdown, which makes them much easier to edit and keep up-to-date than ASCII art.

Here's a possible Mermaid version of the current diagram:

graph TD
    subgraph "Channels"
        A[REPL]
        B[HTTP]
        C[WASM Channels]
        D[Web Gateway <br/> (SSE + WS)]
    end

    E[Agent Loop <br/> Intent routing]

    A & B & C & D --> E

    F[Scheduler <br/> (parallel jobs)]
    G[Routines Engine <br/> (cron, event, wh)]

    E --> F
    E --> G

    subgraph "Execution"
        H[Local Workers <br/> (in-proc)]
        I[Orchestrator]
    end

    %% Invisible node for merging
    M1((( )))
    style M1 fill:none,stroke:none

    F --> M1
    G --> M1

    M1 --> H
    M1 --> I
    
    subgraph "Docker Sandbox"
        J[Containers]
        K[Worker / CC]
        J --> K
    end
    
    I --> J

    L[Tool Registry <br/> (Built-in, MCP, WASM)]

    H --> L
    I --> L
Loading

To use this, you would replace the ASCII art block with this Mermaid block, ensuring the language identifier is mermaid.

@ilblackdragon ilblackdragon merged commit 225af29 into nearai:main Feb 14, 2026
@github-actions github-actions Bot mentioned this pull request Feb 14, 2026
jaswinder6991 pushed a commit to jaswinder6991/ironclaw that referenced this pull request Feb 26, 2026
bkutasi pushed a commit to bkutasi/ironclaw that referenced this pull request Mar 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants