Most of our coverage of Voitta AI’s GitHub organization has focused on llm-tldr and voitta-rag. Fair enough: those are central projects, and easy to explain. But the org has turned into a broader workshop for agent tooling, developer workflows, and MCP-adjacent experiments.
So here is a quick tour of the other public repos worth a look — including two that we already mentioned elsewhere but are too useful not to repeat here.
Claude Code workflow tools
voitta-yolt
voitta-yolt is a Claude Code safety hook that statically analyzes commands before execution, auto-allows clearly read-only invocations, and flags mutating ones for review. The interesting bit is that it closes practical gaps in Claude Code’s built-in allowlist behavior, especially around compound shell commands and interpreter wrappers.
GitHub: voitta-ai/voitta-yolt. It would be nice to give a star.
omemepo
omemepo — omnia mea mecum porto, “all that is mine, I carry with me” — is a portability and sharing layer for Claude Code. It can pack up your ~/.claude/ setup, move it to another machine, and act as a marketplace layer for plugins and shared Claude Code artifacts.
Right now the implemented surface includes pack, unpack, publish, and an mcp command with subcommands like list, export, import, enable, disable, profile, and prompts. That makes it feel less like a vague portability pitch and more like a concrete attempt to make Claude Code environments reproducible and shareable.
GitHub: voitta-ai/omemepo. It would be nice to give a star.
Tools for working with other software through MCP
voitta-freecad-mcp
voitta-freecad-mcp gives an LLM control over FreeCAD: create geometry, manipulate documents, inspect assemblies, and capture screenshots. The architecture is pragmatic: an MCP server talks to a bridge running inside FreeCAD so operations execute on the app’s main thread.
GitHub: voitta-ai/voitta-freecad-mcp. It would be nice to give a star.
fusion-360-mcp
fusion-360-mcp appears to be the same general idea for Autodesk Fusion 360: an MCP server paired with an in-app HTTP add-in, with documentation for geometry inspection, screenshots, measurements, and design-tree operations. If voitta-freecad-mcp is the open-source-CAD path, this looks like the commercial-CAD sibling.
GitHub: voitta-ai/fusion-360-mcp. It would be nice to give a star.
voitta-pptx
voitta-pptx is smaller but very practical: upload a PowerPoint file, render slides as PNGs through OnlyOffice, and hand the results back to the model. In other words, make decks visible to systems that reason better over images than over zipped XML internals.
GitHub: voitta-ai/voitta-pptx. It would be nice to give a star.
Glue for agent workflows
voitta-auth
voitta-auth is a macOS menu bar app that authenticates against Microsoft, Google, and Okta, then exposes a unified FastMCP proxy with credentials injected for downstream tools. That is not a flashy demo; it is infrastructure for making agent tooling actually usable in enterprise environments.
GitHub: voitta-ai/voitta-auth. It would be nice to give a star.
voitta-bookmarklet
voitta-bookmarklet injects a chat pane into arbitrary web pages via bookmarklet, backed by a local FastAPI service and pluggable model providers. It is a nice reminder that “agent interface” does not have to mean “yet another standalone app.” Sometimes the right UI is: put the assistant next to the page you are already looking at.
GitHub: voitta-ai/voitta-bookmarklet. It would be nice to give a star.
voitta-gannt
voitta-gannt is an interactive Gantt editor backed by Mermaid markdown, with both browser UI and MCP access. That is an oddly specific but smart pattern: keep the source of truth plain text, keep the interface visual, and let agents edit the same artifact humans do.
GitHub: voitta-ai/voitta-gannt. It would be nice to give a star.
Earlier platform pieces
voitta
voitta predates a lot of the current MCP craze and reads like the underlying orchestration layer: a Python framework for routing and automating LLM tool calls across APIs and handlers.
GitHub: voitta-ai/voitta. It would be nice to give a star.
voitta-example
voitta-example is, as the name suggests, a working example app using the library.
GitHub: voitta-ai/voitta-example. It would be nice to give a star.
mcp-voitta-gateway
mcp-voitta-gateway exposes the older Voitta framework through MCP. Together with voitta-example it shows a through-line: Voitta was thinking about tool routing before MCP became the default wrapper for the conversation.
GitHub: voitta-ai/mcp-voitta-gateway. It would be nice to give a star.
IDE and developer-environment experiments
mcp-server-plugin
mcp-server-plugin provides JetBrains-side MCP server plumbing.
GitHub: voitta-ai/mcp-server-plugin. It would be nice to give a star.
jetbrains-voitta
jetbrains-voitta extends that world with AST analysis and debugging tools. That is an important theme across the org: not just calling tools, but embedding them where developers already work.
GitHub: voitta-ai/jetbrains-voitta. It would be nice to give a star.
truffaldino
truffaldino is a configuration manager for AI-development setups — effectively dotfiles for MCP servers and prompts across Claude Code, Cursor, Cline, IntelliJ, and friends. Less glamorous than a model demo, but probably more useful over time.
GitHub: voitta-ai/truffaldino. It would be nice to give a star.
Odds and ends, but not random ones
claude-svg
claude-svg turns Claude Code into a diagram generator for architecture visuals, banners, and other polished SVG outputs. It is easy to dismiss as a side project until you remember how often engineering work needs presentable graphics fast.
GitHub: voitta-ai/claude-svg. It would be nice to give a star.
a2amcp
a2amcp is an example dispatcher agent built around Google’s A2A ideas. Small repo, but it points toward multi-agent routing rather than single-assistant tooling.
GitHub: voitta-ai/a2amcp. It would be nice to give a star.
shoelace
shoelace is the oddball in the org right now because it is really OpenClaw under an older or alternate banner. Still, it reflects the same interest in practical assistant infrastructure across devices and channels.
GitHub: voitta-ai/shoelace. It would be nice to give a star.
The pattern
The org looks less like one product with a few helpers and more like a workshop around agent ergonomics.
Some repos are about retrieval. Some are about auth. Some are about getting LLMs into CAD, IDEs, or decks. Some are about making workflows inspectable, configurable, portable, or just less annoying. Not every repo is equally mature, but taken together they show a consistent instinct: build the missing connective tissue between models and real work.
That, more than any one repository, is what seems interesting about Voitta AI.