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.

ثبت دقیق وقایع. کانال‌ها ثبت می‌کنند که تعامل در کجا رخ داده است. حالت‌ها ثبت می‌کنند که پاسخ چگونه تحویل داده شده است. یک تعامل دسکتاپ، چه کاربر آن را بخواند و چه بشنود، همچنان یک تعامل دسکتاپ باقی می‌ماند. وقتی تیم شما در حال ردیابی یک باگ یا بررسی تحلیل‌ها است، مجبور نیست "desktop-voice" را با "desktop-text" طوری تطبیق دهد که انگار آن‌ها سطوح محصول متفاوتی هستند. شناسه کانال تمیز باقی می‌ماند و پرچم حالت (mode flag) به شکلی مرتب در کنار آن در متادیتا قرار می‌گیرد. لاگ‌های شما صادقانه باقی می‌مانند و عیب‌یابی ساده می‌ماند، زیرا مکان و رفتار با هم در هم تنیده نشده‌اند.

بافت پروژه شفاف. APC قرارداد را تعریف می‌کند. این لایه نباید اهمیت دهد که آیا یک پاسخ بیان شده، زمزمه شده یا با فونت monospace نمایش داده شده است. این‌ها ملاحظات زمان اجرا (runtime) هستند. با نگه داشتن قالب‌بندی صوتی در داخل APX، قابلیت انتقال APC را حفظ می‌کنیم. شما می‌توانید تعریف یک پروژه APC را بردارید و در یک محیط زمان اجرای کاملاً جدید قرار دهید، بدون اینکه فرض‌های مربوط به قالب‌بندی صوتی یا پیچیدگی‌های زائدِ بهینه‌سازی گفتار را با خود حمل کنید. مرزها حفظ می‌شوند و معنای پروژه پایدار می‌ماند.

اثبات در دسکتاپ

مسیر دسکتاپ خود ما، این موضوع را در استفاده روزمره نشان می‌دهد. دسکتاپ همان سطح است. وقتی کاربر گفتار را فعال می‌کند، سیستم همان سطح دسکتاپ را در حالت صوتی اجرا می‌کند. از آنجایی که صوت در لایه حالت (mode layer) قرار دارد، کانال دسکتاپ بافت و رفتار کامل خود را حفظ می‌کند. این کار باعث نمی‌شود که دسکتاپ به محصول دیگری با قوانین متفاوت تبدیل شود. سازنده پرامپت (prompt builder) صرفاً متوجه پرچم می‌شود و دستورالعمل‌های صوتی را فقط در صورت لزوم اضافه می‌کند. وقتی کاربر دوباره به حالت متنی بازمی‌گردد، آن دستورالعمل‌ها کاملاً ناپدید می‌شوند. بافت زیربنایی پروژه هرگز تغییر نکرد. دسکتاپ همیشه دسکتاپ بود.

نکته اصلی

ایده اصلی ساده است. APC معنای پایدار پروژه را توصیف می‌کند. APX اجرای زمان اجرا را توصیف می‌کند. صوت یک اصلاح‌کننده (modifier) روی یک سطح است، نه جایگزینی برای آن. اگر این‌گونه با آن برخورد کنید، پرامپت‌های شما کوچک می‌مانند. لاگ‌های شما شفاف می‌مانند. شما