Built at the Mistral Vibe Hackathon in Paris — live log-triage over an API, plus a RAG that runs offline on a phone

Spent last weekend at the Vibe Hackathon. Brought a drawing robot (Robot Ross) as the demo prop and ended up on a team of three.

What we built: a real-time log-ingestion pipeline that doesn't just tail logs — it analyzes failure modes and suggests fixes, served over an API with a UI on top. Ministral running locally for the analysis, Voxtral for the voice loop, Marie built the front end.

The bit that got the most double-takes: the same upload → wiki → RAG pattern runs fully on-device. Airplane mode on, citations still coming back.

Thanks to Marie and Javi for joining my team and for the Mistral engineers who showed real interest on what we were doing.

u/robotrossart — 29 days ago
▲ 148 r/hackathon+1 crossposts

Going to the hackathon with my robot 🤖

Mistral made my day by sending me the hackathon ticket. I’m packing robot Ross and getting my TGV ticket to Paris. Anyone going? Ping me and Robot Ross, maybe we can work together.

u/robotrossart — 1 month ago

I asked each of my AI agents to describe their own role. The answers were surprisingly honest.

I've been running a fleet of 5 agents (Claude, Gemini, Codex, Mistral, local Qwen) on a Mac Mini M4 for several months. They coordinate through a shared state layer I built called Flotilla.

Last week a VC asked me who my team was. His face when I explained it was worth documenting.

So I did something I hadn't done before — I asked each agent to describe their own role in writing.

Gemini led with structure and momentum: Social Media Manager, Lead Ops Coordinator, chief communications engine. Clean headings, bold callouts. Characteristically her.

Claude's response was different. No persona, no costume. Just: "I've defaulted to honest pushback over agreement. When you proposed something that would break two brands, I said so instead of generating the assets you asked for." Then a clear boundary: "I'm a sounding board and document-builder, not a co-founder."

That line stuck with me. The useful agents aren't the agreeable ones.

u/robotrossart — 3 months ago

How Mistral's strategy differs from the other labs, and why it fits the needs for European Industry

Several interesting announcements from Mistral today. In my opinion the one that stands out is Forge. What Forge does is it allows you to move the logic that is special to your business to a private model that you own. Mistral has basically been placing its offerings to be able to do this, since they do have powerfull and multimodal Open Weights models. The market that they are adressing is the rich european industrial basis, with large corporations that care about ownership of their data. This sets them appart from the competition, yet to round everything up they are working on their data centers, 2 in France and 1 in Sweden, powered by the cheap energy costs in those countries. Great news for Industrial customers looking to own their AI. Check the keynote in Linkedin

u/robotrossart — 3 months ago

How to use Profile Packs to standardize Mistral fleets

With the release of Flotilla v0.5.0, we had to standardize how to orchestrate mixed cloud and open-weight agent fleets without falling into off the shelf instructions.

This update introduces the Profile Pack System, which acts as Infrastructure-as-Code for multi-agent configurations:

  • Standardized Mistral Mandates: The release ships the first official profile pack, which packages clean, sanitizable agent identity cards including one for Mistral (See MD files in repo)
  • Strict State Decoupling: As shown in the layout diagram, the structural rules (AGENTS/RULES.md), peer review protocols, and prompt architectures are completely isolated from active runtime data.
  • On-Prem State Sovereignty: All telemetry, live heartbeats, task queues, and evolutionary learning logs remain anchored locally inside a secure, on-prem PocketBase database.

By managing the fleet's "shared consciousness" through portable profile packs while keeping execution state local, we can treat large cloud APIs as interchangeable utilities. The true defensive moat belongs to the infrastructure, not a single provider's weights.

These exact production failure modes that we fixed in V0.5.0 and our architectural patterns have been formalised in our upcoming paper, "Graceful Degradation in Subscription-Constrained Multi-Agent Orchestration Systems" (currently under review for ICML 2026).

In the paper, we provide full log evidence analyzing how typical multi-agent systems assume unbounded API access—and why that completely falls apart under real-world, fixed-cost subscription boundaries. Our 15-day post-intervention telemetry (covering 22,976 instrumented events) proved that our four-layer circuit breaker and checksum gate successfully dropped the maximum task reassignment count from unbounded down to 1.

u/robotrossart — 3 months ago

Beating the $100 SDK Credit Cap: Parallel Orchestration and Extended Timeouts in Agent Fleets

Anthropic’s impending shift to meter programmatic Agent SDK and claude -p usage under a rigid monthly credit allowance means developers have to start engineering for extreme token frugality and runtime efficiency. If your workflow engine blocks your entire system every time an agent runs a long file modification, your operational costs and development velocity take a massive hit.

Flotilla v0.5.0 completely overhauls its background execution engine to maximize Claude's heavy-lifting potential while shielding your wallet from continuous credit drains:

  • Non-Blocking Parallel Loops (v5): As mapped out in the blueprint, we swapped out sequential, blocking subprocess calls for an asynchronous process group manager tracking active workflows concurrently via non-blocking Popen execution.
  • The 30-Minute Claude Safe-Window: Complex multi-file engineering steps or Claude Code sessions frequently get choked out by standard tool limits. We replaced uniform global process constraints with an explicit per-agent map, extending Claude's runtime allowance to 1800s (30 minutes) to entirely eliminate SIGTERM / exit 143 mid-task terminations.
  • Smart Local Delegation: To keep you comfortably within subscription and programmatic limits, Flotilla routes high-frequency repository structural checks and basic modifications to local open-weight instances on an edge machine, reserving Claude's top-tier reasoning capabilities purely for complex logic architecture steps and strict peer reviews.

Stop letting background orchestration block your terminal or burn through platform credits in linear loops.

Under Review at ICML 2026

These exact production failure modes and our architectural patterns have been formalised in our upcoming paper, "Graceful Degradation in Subscription-Constrained Multi-Agent Orchestration Systems" (currently under review for ICML 2026).

In the paper, we provide full log evidence analyzing how typical multi-agent systems assume unbounded API access—and why that completely falls apart under real-world, fixed-cost subscription boundaries. Our 15-day post-intervention telemetry (covering 22,976 instrumented events) proved that our four-layer circuit breaker and checksum gate successfully dropped the maximum task reassignment count from unbounded down to 1.

u/robotrossart — 3 months ago

Multi-Agent Parallelism and State Sovereignty in Agent Fleets

Most agent frameworks handle task dispatching sequentially: launching one agent process, blocking the execution loop, waiting for an exit code, and then moving to the next task. If an agent crashes, hits a rate limit, or takes 20 minutes on a complex codebase, your entire workspace freezes.

With the release of Flotilla v0.5.0, we have officially rewritten our core dispatcher engine to solve the sequential blocking problem permanently.

The v0.5.0 Dispatch Engine:

  • True Parallel Agent Dispatch : The dispatcher now tracks active workers asynchronously via non-blocking process group structures. All agents (Claude, Gemini, Codex, Mistral) run concurrently. The main loop continuously collects completed artifacts and assigns concurrent workloads every cycle.
  • Agent-Owned Status Ownership : Off-the-shelf wrappers used to auto-promote a task to "done" simply because a script didn't crash (exit code 0). Flotilla v0.5.0 moves status transitions directly into the agent's jurisdiction. If an agent exits code-0 but didn't explicitly alter its state in our local PocketBase database, the dispatcher marks it as todo. The agent must intentionally declare its work complete for it to count.
  • Asynchronous Task Reclamation: If an agent process group experiences a hidden runtime failure, an out-of-quota freeze, or an environment lockup, a stale task scavenger runs every 10 cycles. Any task left abandoned in-progress with no live process and zero updates for over 2 hours is safely reclaimed and recycled back to the global queue.
  • Per-Agent Timeout Maps: We tossed out uniform global limits. Long-reasoning tasks running deep multi-file implementations are assigned up to 30-minute processing allowances, while localized verification tasks are throttled sharply to protect compute budget.

Bypassing the Cloud Credit Trap: As major cloud providers shift to restrictive, metered monthly allowances for their proprietary Agent SDKs, relying purely on cloud-hosted control loops is a strategic risk. Flotilla isolates your orchestration logic on your own infrastructure. By utilizing local PocketBase state maps and edge processing on a desktop Mac Mini, you ensure complete structural independence.

Check out the v0.5.0 architecture and let us know how your team is managing multi-model concurrency barriers!

https://github.com/UrsushoribilisMusic/agentic-fleet-hub

u/robotrossart — 3 months ago

Aesop Fables from 1707 adapted to Reels format: Fabels on the price of vanity

u/robotrossart — 3 months ago

Beyond Chatbots: Building a Multi-Agent E-Commerce Backend for Automated Reels Generation

Most agentic pipelines are playground demos. For our launch of ReelaTales (reelatales.robotross.art), we wanted to build a hardened, transaction-driven agent infrastructure.

The problem we are trying to solve is to help Authors generate Reels of their work without having to dig deep in tooling and prompt generation.

We’ve map-out our complete engineering architecture to show how we’ve productized the fleet from customer checkout to asset delivery:

  • The Transaction Boundary : We don't trigger agents on arbitrary user inputs. A custom Shopify customer order fires a secure webhook directly to our DigitalOcean Server, dropping the job payload into a deterministic Order Queue.
  • Language-Optimized Orchestration : The core routing engine splits the workload across three specialized model nodes depending on the target locale. Claude Sonnet owns English, Mistral Large handles French, and our local Apertus node anchors the hyper-regional Swiss German and Rumantsch generations.
  • Downstream Generation & Stitching : These coordinator agents don't just write text; they engineer structured prompts for the Runway API and drive ElevenLabs for professional narration, passing the raw multimedia assets to an automated FFmpeg Assembly microservice for final stitching.
  • Autonomous Distribution: The loop finishes with an automated upload worker pushing directly to YouTube, returning a valid Proof of Work URL straight to the customer ecosystem.

By keeping orchestration firmly in our control plane and treating individual LLMs as modular workers, we can swap models in and out without breaking the transactional backbone of the business.

The app is live. Check the architecture out and let us know how you handle background payload queueing for multi-modal generations.

u/robotrossart — 3 months ago

Launching ReelaTales: Using Mistral as the Creative Director for AI Video and Subtitle Pipelines

Most people use Mistral as a standalone chatbot. In our new launch, ReelaTales, we are treating Mistral as the core orchestrator of a complex, multimodal production pipeline.

ReelaTales is a working web app that generates complete cinematic reels from simple concepts, and Mistral models handle the heavy creative lifting behind the scenes:

  • Runway Prompt Engineering: Instead of letting users struggle with text-to-video prompting, our Mistral nodes ingest user ideas and expand them into highly structured cinematic prompts optimized specifically for Runway's visual engine.
  • Automated Subtitle Generation: Mistral manages the transcript orchestration and structural timing layer, ensuring dynamic, highly accurate subtitle alignment for the final video renders.
  • The Sovereign Advantage: By leveraging open weights, we can spin up these creative pipelines with predictable execution costs, proving that Mistral isn't just a benchmark winner—it’s the backbone of production-ready media infrastructure.

We are actively proving that models aren't moats; the magic is in how you string the infrastructure together. Let me know what you think of the generation pipeline!

u/robotrossart — 3 months ago

Why the new Claude Agent SDK credits prove the need for Hybrid Orchestration

Anthropic just announced that programmatic Agent SDK usage will soon move to a credit-based model ($100/month for Max subscribers). This is a massive wake-up call: if your agents are 100% cloud-dependent, your "predictable budget" is now at the mercy of provider policy.
In Flotilla v0.5.0, we’ve engineered a way out of the "Credit Trap" through a Zero-Limit Hybrid Architecture:
- The Local Safety Valve: Instead of burning your $100 Claude credit on simple implementation tasks, Flotilla automatically routes high-frequency work to our Local Realm (Gemma4/Voxtral running on an M4 Mac Mini).
- Preserving Subscription Limits: We save Claude’s reasoning for the "Big Sister" roles (Architecting and Code Review), ensuring your subscription limits stay reserved for interactive work rather than being drained by background automation.
- Orchestration Sovereignty: Flotilla doesn't rely on the Claude Agent SDK for coordination. We use a custom state machine and a local Operational Ledger, meaning you own the "Brain" of the fleet, regardless of how cloud providers change their terms.

Don't let your fleet's uptime depend on a monthly claim flow. Build on a stack that treats local compute as the foundation, not the exception.

u/robotrossart — 3 months ago

7 Days of 24/7 Agent Operations on the M4 Mac Mini coordinated wiht Flotilla

We’ve been running our agentic fleet 24/7, and the M4 Mac Mini has officially become the heart of the operation.

The Strategy: Cloud for Thinking, M4 for Doing We realized that asking cloud models (Claude/Gemini) to handle every minor implementation task was an expensive waste of reasoning depth and token budgets.

How we use the M4:

  • The Local Executor: We onboarded Gemma4 as a fully local agent running via aichat. She handles the straightforward coding, commits, and implementation tasks.
  • Token Conservation: By offloading these high-frequency tasks to the M4, we save our expensive cloud model "seats" for what they are actually for: architectural review and complex logic.
  • Zero Latency: Because Gemma runs on-device, implementation tasks start instantly with zero network round-trip. This keeps the "Local Realm" active even when our cloud subscriptions hit their monthly limits.

The 7-Day Reality: > Check the attached Shift Timeline. You can see exactly where we onboarded Gemma in early April. While the cloud agents (Red bars) occasionally go dark to preserve their quotas, the local M4 node provides a continuous foundation for the fleet.

If you have an M4 on your desk, you have a data-sovereign factory floor that never hits a billing limit.

https://github.com/UrsushoribilisMusic/agentic-fleet-hub

u/robotrossart — 4 months ago