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.

Dokładne logowanie. Kanały rejestrują, gdzie doszło do interakcji. Tryby rejestrują, w jaki sposób dostarczono odpowiedź. Interakcja desktopowa pozostaje interakcją desktopową, niezależnie od tego, czy użytkownik ją przeczytał, czy usłyszał. Gdy Twój zespół tropi błąd lub analizuje dane, nie musi zestawiać „desktop-voice” z „desktop-text”, jakby były to różne powierzchnie produktu. Identyfikator kanału pozostaje czysty, a flaga trybu znajduje się obok niego w metadanych. Twoje logi pozostają rzetelne, a debugowanie jest proste, ponieważ lokalizacja i zachowanie nie są ze sobą splątane.

Czysty kontekst projektu. APC definiuje kontrakt. Nie powinno go obchodzić, czy odpowiedź jest wypowiadana, szepczana, czy renderowana czcionką monospaced. To kwestie runtime. Przenosząc formatowanie głosowe do APX, zachowujemy przenośność APC. Możesz pobrać definicję projektu APC i przenieść ją do zupełnie nowego środowiska uruchomieniowego, nie ciągnąc za sobą założeń dotyczących formatowania głosowego ani zbędnego balastu optymalizacji mowy. Granica zostaje zachowana, a znaczenie projektu pozostaje stabilne.

Dowód na desktopie

Nasza własna ścieżka desktopowa demonstruje to w codziennym użytkowaniu. Desktop to powierzchnia. Gdy użytkownik włączy mowę, system uruchamia tę samą powierzchnię desktopową w trybie głosowym. Ponieważ głos znajduje się w warstwie trybu, kanał desktopowy zachowuje swój pełny kontekst i zachowanie. Nie staje się innym produktem z innymi regułami. Builder promptów po prostu zauważa flagę i dodaje instrukcje głosowe tylko wtedy, gdy jest to konieczne. Gdy użytkownik przełączy się z powrotem na tekst, instrukcje te całkowicie znikają. Podstawowy kontekst projektu nigdy się nie zmienił. Desktop zawsze był desktopem.

Kluczowy wniosek

Główna idea jest prosta. APC opisuje stabilne znaczenie projektu. APX opisuje wykonanie w czasie runtime. Głos jest modyfikatorem powierzchni, a nie jej zamiennikiem. Traktuj go w ten sposób, a Twoje prompty pozostaną małe. Twoje logi pozostaną przejrzyste. Twoje