Yes — most agent platforms let you combine a persistent system prompt with dynamic context injected per conversation, giving you a modular approach where the core identity stays fixed and specific knowledge is added based on what the student needs.
The Single Prompt vs. Modular Approach
A single monolithic system prompt works well for simple agents with a defined, narrow role. But as your campus grows and your agents take on more complex responsibilities — handling multiple courses, different student segments, various types of requests — a single prompt becomes unwieldy. You end up with a 3,000-word document that tries to cover every possible situation, gets harder to maintain, and occasionally conflicts with itself.
The modular approach solves this by separating concerns. Think of it like a company handbook versus department-specific training docs. The handbook covers universal things: values, communication standards, escalation rules. The department docs cover specifics: what this team handles, what they know, what their workflows look like. Together, they give a team member everything they need without cramming it all into one document.
How This Works in Practice
In a Claude-based campus agent setup, your system prompt handles the universal layer: agent identity, your brand voice, your core rules, your escalation policy. Then, when a student opens a conversation in a specific course space — say, your AI Foundations module in FluentCommunity — additional context is injected dynamically: the course description, that module’s learning objectives, the common questions students ask at that stage. The agent now has both the universal foundation and the specific knowledge it needs for that context.
Tools like Claude’s built-in context window and MCP (Model Context Protocol) make this kind of dynamic context injection possible without writing code. Your system prompt stays clean and maintainable. Your per-context knowledge lives in separate documents you can update independently. When Course 3 adds a new module, you update the Course 3 context doc — the system prompt does not change.
What This Means for Educators
As a coach or trainer scaling an AI-powered campus, modular prompting is what lets you add agents and capabilities without the prompt maintenance becoming a full-time job. Start with a single strong system prompt. As your needs grow, extract the pieces that are context-specific and inject them dynamically. Your agents become more accurate, more maintainable, and easier to update — without requiring you to touch the core system prompt every time something changes.
The Simple Rule
Core identity and rules in the system prompt. Course-specific and context-specific knowledge injected dynamically. Keep each layer focused on its own job, and your agent architecture stays manageable as your campus scales.
