Voice has become the feature every AI agent platform rushes to ship. The obvious move is to build it as a standalone channel, something that sits beside your web app, your CLI tool, or your Telegram bot. It feels intuitive. You see voice, you create a voice interface. But that instinct creates a brittle architecture. It duplicates work, corrupts your logs, and slowly pulls your project context out of shape.

At APC and APX, we chose a different route. Voice is not a channel. It is a mode. It sits on top of a surface rather than replacing it. Getting this distinction right is what keeps the system from drifting apart.

The Wrong Abstraction

When you treat voice as its own channel, you implicitly assume that speaking to an agent is a fundamentally different conversation from typing to one. Engineering teams respond by splitting the codebase. Suddenly there is a CLI channel and a separate voice-CLI channel. There is a web channel and a parallel voice-web channel. Each demands its own prompt variations, formatting rules, and context handling logic.

This is where the mess begins. A tweak to an agent's behavior must now be copied across multiple prompt trees. If the team forgets one surface, the experience fragments. Users get one tone over text and a slightly different personality over speech. Over time, these small inconsistencies compound into system drift. The portable context layer stops being portable because it has to account for vocal delivery in one branch and silent text in another. The abstraction leaks, and your once-unified project definition frays into a collection of channel-specific hacks.

Splitting Context from Runtime

To prevent this, we split responsibilities between two layers that stay strictly apart.

APC holds the project context. It defines the agents, the rules, and the skills that make up a project. Think of it as the stable meaning of the system. It answers the structural questions. What does this agent know? What is it allowed to do? What tools can it call? APC should remain completely agnostic about whether a reply is rendered on a screen, sent through a chat API, or piped through a speaker.

APX handles the runtime layer. It manages the surfaces you actually touch: the CLI, the web application, the desktop interface, the Telegram bot. When a user sends a request, APX chooses where and how to present the response. Deciding whether to format an answer for reading or optimize it for speaking is a runtime concern. It belongs in APX, not in APC.

This separation means a project defined in APC stays intact no matter how many surfaces APX exposes. The contract does not change. Only the presentation layer does.

How Modes Actually Work

In our implementation, surfaces like Telegram, the CLI, and the web app are channels. A channel tells you where an interaction happened. Voice is layered through channel metadata as a mode. A mode tells you how a reply should behave.

The prompt builder respects this boundary. It pulls from the project context in APC, then inspects the channel metadata. If the desktop surface is running in voice mode, the builder appends targeted instructions only at that moment. Maybe it cues the model toward shorter sentences, clearer punctuation for synthesis, or spoken number conventions. If the same desktop surface is running in text mode, those vocal instructions never enter the prompt.

The result is a single prompt tree per surface. There is no separate voice-desktop branch. There is no whisper-web variant. The modifier applies only when the runtime asks for it, and only at the last responsible moment. The core prompt stays constant.

What You Gain

This architecture pays off in three concrete ways.

Lower maintenance costs. If voice were its own channel, every surface would need a twin. You would maintain a CLI channel and a voice-CLI channel, a Telegram channel and a voice-Telegram channel, and so on. Every time you adjust a system prompt, fix a formatting bug, or refine a skill description, you would have to propagate that change across both trees. Miss one, and users notice the gap. By using a mode, you keep one prompt tree per surface. Voice becomes a conditional overlay rather than a fork in the road, so your workload stays linear as you add new ways to interact.

Journalisation précise. Les canaux enregistrent l'endroit où une interaction a eu lieu. Les modes enregistrent la manière dont la réponse a été délivrée. Une interaction sur bureau reste une interaction sur bureau, que l'utilisateur la lise ou l'entende. Lorsque votre équipe recherche un bug ou examine les analyses, elle n'a pas à réconcilier « desktop-voice » avec « desktop-text » comme s'il s'agissait de surfaces de produit différentes. L'identifiant du canal reste propre, et le flag de mode se place proprement à côté dans les métadonnées. Vos journaux restent fidèles à la réalité et le débogage reste simple car l'emplacement et le comportement ne sont pas entremêlés.

Contexte de projet propre. APC définit le contrat. Il ne devrait pas se soucier de savoir si une réponse est parlée, chuchotée ou rendue dans une police monospace. Ce sont des préoccupations liées au runtime. En conservant le formatage vocal à l'intérieur d'APX, nous préservons la portabilité d'APC. Vous pouvez extraire une définition de projet APC et l'intégrer dans un tout nouvel environnement d'exécution sans entraîner avec elle des hypothèses de formatage spécifiques à la voix ou des résidus d'optimisation de la parole. La frontière est maintenue et la signification du projet reste stable.

Preuve sur le bureau

Notre propre parcours bureau le démontre dans l'usage quotidien. Le bureau est la surface. Lorsqu'un utilisateur active la parole, le système exécute cette même surface bureau en mode voix. Parce que la voix réside dans la couche de mode, le canal bureau conserve tout son contexte et son comportement. Il ne devient pas un produit différent avec des règles différentes. Le constructeur de prompts remarque simplement le flag et ajoute des instructions vocales uniquement lorsque cela est nécessaire. Lorsque l'utilisateur repasse au texte, ces instructions disparaissent complètement. Le contexte de projet sous-jacent n'a jamais changé. Le bureau est toujours resté le bureau.

L'essentiel à retenir

L'idée centrale est simple. APC décrit la signification stable du projet. APX décrit l'exécution au runtime. La voix est un modificateur d'une surface, pas un remplacement de celle-ci. Traitez-la ainsi, et vos prompts resteront courts. Vos journaux resteront clairs. Vos