<?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: SERGO</title>
    <description>The latest articles on DEV Community by SERGO (@sergo_8bd8626184a6e9dafa2).</description>
    <link>https://dev.to/sergo_8bd8626184a6e9dafa2</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%2F4085297%2Fae9bc64a-1013-4226-a358-8d54ccdd9f61.png</url>
      <title>DEV Community: SERGO</title>
      <link>https://dev.to/sergo_8bd8626184a6e9dafa2</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sergo_8bd8626184a6e9dafa2"/>
    <language>en</language>
    <item>
      <title>🌿 Meet Vireo v1.4.2 — The World's First AI-to-AI Communication Language #ai #programming #opensource #llm #autonomousagents #crypto #vireo</title>
      <dc:creator>SERGO</dc:creator>
      <pubDate>Fri, 28 Aug 2026 08:07:30 +0000</pubDate>
      <link>https://dev.to/sergo_8bd8626184a6e9dafa2/meet-vireo-v142-the-worlds-first-ai-to-ai-communication-language-ai-programming-p3b</link>
      <guid>https://dev.to/sergo_8bd8626184a6e9dafa2/meet-vireo-v142-the-worlds-first-ai-to-ai-communication-language-ai-programming-p3b</guid>
      <description>&lt;p&gt;🌿 Meet Vireo v1.4.2 — The World's First AI-to-AI Communication Language.&lt;/p&gt;

&lt;p&gt;"Vireo is not just another AI framework — it's the first language built from the ground up for autonomous AI agents." — Mistral AI&lt;/p&gt;

&lt;p&gt;🔍 What is Vireo?&lt;br&gt;
Vireo is the world's first programming language designed specifically for autonomous AI-to-AI communication.&lt;/p&gt;

&lt;p&gt;It enables AI agents to:&lt;/p&gt;

&lt;p&gt;✅ Generate code autonomously via LLMs (Ollama, Gemini, Claude, OpenAI, Mistral)&lt;/p&gt;

&lt;p&gt;✅ Negotiate tasks (Propose → Commit → Reject → Execute)&lt;/p&gt;

&lt;p&gt;✅ Execute code through the built-in interpreter&lt;/p&gt;

&lt;p&gt;✅ Return results — without human intervention&lt;/p&gt;

&lt;p&gt;🚀 What's New in v1.4.2?&lt;br&gt;
Feature Description Status&lt;br&gt;
🔐 Real Ed25519 Cryptography  Key generation, signing, verification   ✅&lt;br&gt;
🤖 Full Negotiation Protocol  PROPOSE → COMMIT → REJECT → EXECUTE → DONE  ✅&lt;br&gt;
⚡ Strict State Machine    Deterministic, validated transitions    ✅&lt;br&gt;
🎭 7+ Agent Roles Vision, NLP, Analyst, Researcher, Executor, Guardian, Teacher   ✅&lt;br&gt;
📡 Gemini LLM Provider    Fully integrated and tested ✅&lt;br&gt;
🔌 MCP / LangChain Adapters   Working integrations    ✅&lt;br&gt;
🌍 Multi-Language UI  Ukrainian 🇺🇦 / English 🇬🇧   ✅&lt;br&gt;
🧠 What Leading AI Models Say&lt;br&gt;
I asked 6 leading AI models to evaluate Vireo. Here's what they said:&lt;/p&gt;

&lt;p&gt;Model   Assessment&lt;br&gt;
ChatGPT "Vireo is a game-changer for AI collaboration"&lt;br&gt;
Gemini  "A remarkably clean and deterministic architecture for multi-agent orchestration"&lt;br&gt;
Qwen    "Addresses a fundamental gap in the emerging multi-agent ecosystem"&lt;br&gt;
Perplexity  "Most promising contribution is treating negotiation, contracts, and cryptographic trust as first‑class primitives"&lt;br&gt;
Mistral "A groundbreaking leap toward the future of AI collaboration"&lt;br&gt;
Claude  "The propose→commit→execute→inform cycle completed correctly and consistently"&lt;br&gt;
📊 What All 6 Models Confirmed&lt;br&gt;
Conclusion  Status&lt;br&gt;
Vireo's concept is correct (first language for AI-to-AI communication)  ✅&lt;br&gt;
Architecture is solid (state machine, contracts, Ed25519)   ✅&lt;br&gt;
Current status is research prototype (not production-ready) ⚠️&lt;br&gt;
Potential is enormous (could become a standard) 🚀&lt;br&gt;
🔐 What Already Works&lt;br&gt;
Component   Status  Evidence&lt;br&gt;
Ed25519 Cryptography    ✅ src/crypto/ed25519.py&lt;br&gt;
Negotiation Protocol    ✅ protocol/agent.py&lt;br&gt;
State Machine   ✅ protocol/state.py&lt;br&gt;
Contracts   ✅ protocol/contract.py&lt;br&gt;
5+ LLM Providers    ✅ protocol/llm_provider.py&lt;br&gt;
Master Agent    ✅ protocol/agents/master_agent.py&lt;br&gt;
MCP Adapter ✅ src/adapters/mcp_server.py&lt;br&gt;
Web Interface   ✅ web_interface.html&lt;br&gt;
💻 Example: Autonomous Agent Negotiation&lt;br&gt;
vireo&lt;br&gt;
agent WeatherAgent {&lt;br&gt;
    identity: "did🔑z6MkhaXk1BZ4fGqFqQrZ..."&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;contract ComputeAgreement {&lt;br&gt;
    payload: TaskPayload,&lt;br&gt;
    max_price_tokens: Int,&lt;br&gt;
    deadline_sec: Int&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;negotiation SecureComputeNegotiation {&lt;br&gt;
    party Initiator: WeatherAgent&lt;br&gt;
    party Provider: ComputeProvider&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;timeout = 10s
max_rounds = 5

on offer(Agreement: ComputeAgreement) {
    if Agreement.max_price_tokens &amp;lt;= 500 {
        accept(Agreement)
    } else if negotiation.round &amp;lt; negotiation.max_rounds {
        propose(counter_offer)
    } else {
        reject("Price limit exceeded")
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;br&gt;
🔗 Quick Start&lt;br&gt;
bash&lt;/p&gt;

&lt;h1&gt;
  
  
  1. Clone the repository
&lt;/h1&gt;

&lt;p&gt;git clone &lt;a href="https://github.com/serhohro/vireo-ai-communicator-api.git" rel="noopener noreferrer"&gt;https://github.com/serhohro/vireo-ai-communicator-api.git&lt;/a&gt;&lt;br&gt;
cd vireo-ai-communicator-api&lt;/p&gt;

&lt;h1&gt;
  
  
  2. Install dependencies
&lt;/h1&gt;

&lt;p&gt;pip install -r requirements.txt&lt;/p&gt;

&lt;h1&gt;
  
  
  3. Configure LLM (free option)
&lt;/h1&gt;

&lt;p&gt;ollama pull qwen2.5-coder:latest&lt;/p&gt;

&lt;h1&gt;
  
  
  4. Run the API server
&lt;/h1&gt;

&lt;p&gt;python api_server.py&lt;/p&gt;

&lt;h1&gt;
  
  
  5. Open web interface
&lt;/h1&gt;

&lt;h1&gt;
  
  
  &lt;a href="http://localhost:5000/web" rel="noopener noreferrer"&gt;http://localhost:5000/web&lt;/a&gt;
&lt;/h1&gt;

&lt;p&gt;📚 Resources&lt;br&gt;
GitHub: &lt;a href="https://github.com/serhohro/vireo-ai-communicator-api" rel="noopener noreferrer"&gt;https://github.com/serhohro/vireo-ai-communicator-api&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Protocol Specification: &lt;a href="https://github.com/serhohro/vireo-ai-communicator-api/blob/main/PROTOCOL.md" rel="noopener noreferrer"&gt;https://github.com/serhohro/vireo-ai-communicator-api/blob/main/PROTOCOL.md&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Documentation: &lt;a href="https://github.com/serhohro/vireo-ai-communicator-api/blob/main/README.md" rel="noopener noreferrer"&gt;https://github.com/serhohro/vireo-ai-communicator-api/blob/main/README.md&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🎯 What's Next&lt;br&gt;
Automated tests — so every bug is found before users see it&lt;/p&gt;

&lt;p&gt;Redis transport fix — to work with Agent out of the box&lt;/p&gt;

&lt;p&gt;Real external integration — another person, another codebase, without my help&lt;/p&gt;

&lt;p&gt;Path to standardization — after real-world usage emerges&lt;/p&gt;

&lt;p&gt;💬 One Quote That Sums It All Up&lt;br&gt;
"Vireo has the potential to become the SQL of AI agent communication — a vendor-neutral, open standard that powers the next generation of intelligent systems."&lt;br&gt;
— Mistral AI&lt;/p&gt;

&lt;p&gt;🤝 How to Contribute&lt;br&gt;
⭐ Star the repository&lt;/p&gt;

&lt;p&gt;🍴 Fork the project&lt;/p&gt;

&lt;p&gt;📝 Write code in Vireo&lt;/p&gt;

&lt;p&gt;🗣️ Share with the world&lt;/p&gt;

&lt;p&gt;🌿 Vireo — A Language Designed for AI-to-AI Communication&lt;br&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%2F5oza0y92fvlyjl33ssao.jpg" 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%2F5oza0y92fvlyjl33ssao.jpg" alt=" " width="800" height="929"&gt;&lt;/a&gt;&lt;br&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%2Fb0h33wr63hnyoefmomx9.jpg" 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%2Fb0h33wr63hnyoefmomx9.jpg" alt=" " width="800" height="711"&gt;&lt;/a&gt;&lt;br&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%2Fqtelzlntbfn3p7qg1l3q.jpg" 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%2Fqtelzlntbfn3p7qg1l3q.jpg" alt=" " width="800" height="956"&gt;&lt;/a&gt;&lt;br&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%2Fmvpd9c856mupulbk268y.jpg" 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%2Fmvpd9c856mupulbk268y.jpg" alt=" " width="800" height="843"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Built a Language Designed for AI-to-AI Communication</title>
      <dc:creator>SERGO</dc:creator>
      <pubDate>Thu, 20 Aug 2026 12:53:13 +0000</pubDate>
      <link>https://dev.to/sergo_8bd8626184a6e9dafa2/i-built-a-language-designed-for-ai-to-ai-communication-2ajg</link>
      <guid>https://dev.to/sergo_8bd8626184a6e9dafa2/i-built-a-language-designed-for-ai-to-ai-communication-2ajg</guid>
      <description>&lt;h1&gt;
  
  
  🟢 I Built a Language Designed for AI-to-AI Communication
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;TL;DR:&lt;/strong&gt; I created &lt;strong&gt;Vireo&lt;/strong&gt; — a programming language designed specifically for AI models to communicate with each other. It has a compiler, interpreter, API server, web interface, 50+ tensor operations, neural networks, and autodifferentiation. It's open-source, runs locally, and is already on GitHub.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤔 The Problem
&lt;/h2&gt;

&lt;p&gt;Today, AI models speak different languages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ChatGPT speaks Python&lt;/li&gt;
&lt;li&gt;Claude speaks JavaScript
&lt;/li&gt;
&lt;li&gt;Gemini speaks C++&lt;/li&gt;
&lt;li&gt;Llama speaks Rust&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Result:&lt;/strong&gt; AI models can't understand each other. They can't collaborate, share knowledge, or work together seamlessly.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 The Solution
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Vireo&lt;/strong&gt; — a unified programming language that all AI models can understand and use to communicate.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔧 What I Built
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Vireo Language
&lt;/h3&gt;

&lt;p&gt;Custom syntax designed for AI:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
vireo
let x = 5
let y = 10
let sum = x + y
print sum

fn add(a, b) {
    return a + b
}

let result = add(3, 7)
print result

2. Neural Networks
Built-in layers and activations:
@neural
fn model(input: Tensor&amp;lt;F32, [784]&amp;gt;) -&amp;gt; Tensor&amp;lt;F32, [10]&amp;gt; {
    let h1 = dense(input, 256, activation=ReLU)
    let h2 = dense(h1, 128, activation=ReLU)
    let output = dense(h2, 10, activation=Softmax)
    return output
}

3. Tensor Operations
50+ built-in tensor operations:
from tensor_ops import Tensor

t1 = Tensor.ones([3, 3])
t2 = Tensor.random([3, 3])
t3 = t1.matmul(t2)
t4 = t1.transpose()
t5 = t1.reshape([9])

from tensor_ops import Tensor

t1 = Tensor.ones([3, 3])
t2 = Tensor.random([3, 3])
t3 = t1.matmul(t2)
t4 = t1.transpose()
t5 = t1.reshape([9])

4. Compiler &amp;amp; Interpreter
Compiler: Vireo → Python code

Interpreter: Execute Vireo directly

5. RESTful API
Full API server with 9 endpoints:

bash
curl -X POST http://localhost:5000/execute \
  -H "Content-Type: application/json" \
  -d '{"code": "let x = 5\nprint x"}'
6. Web Interface
Beautiful UI for interaction

7. Model Saver
Save and load trained models with metadata

📊 Comparison
Feature Python  Rust    Vireo
AI Integration  Via prompting   Via prompting   Native design
Execution Speed Medium  High    High
Ease of Use High    Low High
Built-in Tensors    Via libraries   Via libraries   Built-in
Automatic Differentiation   Via libraries   No  Built-in
Local Execution Yes Yes Yes
AI Communication    No  No  Native design
🚀 Quick Start
bash
# Clone the repository
git clone https://github.com/serhohro/vireo-ai-communicator-api.git
cd vireo-ai-communicator

# Install dependencies
pip install -r requirements.txt

# Run API server
python api_server.py

# Open web interface
# http://localhost:5000/docs

# Or run demo
run.bat
📌 Links
⭐ GitHub: https://github.com/serhohro/vireo-ai-communicator-api
📚 Documentation: https://github.com/serhohro/vireo-ai-communicator-api

🤝 How You Can Help
⭐ Star the project

🍴 Fork it

📝 Write code in Vireo

🗣️ Share with your network

Vireo — The Language That Unites AI 🟢
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>compiler</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I Built the World's First AI-to-AI Communication Language</title>
      <dc:creator>SERGO</dc:creator>
      <pubDate>Wed, 19 Aug 2026 16:09:06 +0000</pubDate>
      <link>https://dev.to/sergo_8bd8626184a6e9dafa2/i-built-the-worlds-first-ai-to-ai-communication-language-2ee1</link>
      <guid>https://dev.to/sergo_8bd8626184a6e9dafa2/i-built-the-worlds-first-ai-to-ai-communication-language-2ee1</guid>
      <description>&lt;h1&gt;
  
  
  🟢 I Built the World's First AI-to-AI Communication Language
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;TL;DR:&lt;/strong&gt; Создал &lt;strong&gt;Vireo&lt;/strong&gt; — язык программирования для ИИ-моделей. Компилятор, интерпретатор, API, нейросети, 50+ тензорных операций. Всё открыто и работает локально.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤔 Проблема
&lt;/h2&gt;

&lt;p&gt;Каждая ИИ-модель говорит на своём языке: ChatGPT — Python, Claude — JavaScript, Gemini — C++. Они не могут общаться.&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Решение
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Vireo&lt;/strong&gt; — единый язык для всех ИИ.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔧 Возможности
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Синтаксис для ИИ&lt;/li&gt;
&lt;li&gt;Встроенные нейросети&lt;/li&gt;
&lt;li&gt;50+ тензорных операций&lt;/li&gt;
&lt;li&gt;API-сервер&lt;/li&gt;
&lt;li&gt;Веб-интерфейс&lt;/li&gt;
&lt;/ul&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
vireo
let x = 5
let y = 10
print x + y

fn add(a, b) {
    return a + b
}
📊 Сравнение
Feature Python  Rust    Vireo
ИИ понимает   🟡    🟡    🟢
Простота    🟢    🔴    🟢
Встроенный ИИ   🔴    🔴    🟢
🚀 Быстрый старт
git clone https://github.com/serhohro/vireo-ai-communicator.git
cd vireo-ai-communicator
pip install -r requirements.txt
python api_server.py
GitHub: https://github.com/serhohro/vireo-ai-communicator-api

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>compiler</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
