Rosetta is a meta-prompting, context engineering, and centralized knowledge management for AI coding agents. It provides structured context - rules, skills, workflows, and sub-agents - guiding AI systems to operate with a deep understanding of system architecture, domain constraints, and engineering standards. Rosetta also accelerates project onboarding by reverse-engineering architecture and domain context, improving the reliability and consistency of AI-generated code.
Every AI interaction follows four phases: Prepare (load guardrails and context), Research (search the knowledge base), Plan (produce a reviewable plan), Act (execute with full context). Read more in the Usage Guide.
- Context engineering, not prompt hacking. Agents receive your conventions, architecture, and business rules automatically — structured, versioned, and ready before the first line of code. See how it fits your workflow.
- Write once, run everywhere. Agent-agnostic design adapts to any IDE and any tech stack. No per-tool maintenance.
- Guardrails built in. Approval gates, risk assessment, and data protection ensure consistent AI behavior across teams. See how Rosetta protects you.
- Cross-project intelligence (opt-in). Publish business and technical context from every project into a shared knowledge base. Agents see the system, not just one repo — trace flows across services, catch breaking API changes before they ship, and assess blast radius of any change across the portfolio.
- One-command onboarding. New repo, new developer — productive immediately with best practices baked in.
- Instructions as code. Prompts version-controlled with release management — single source of truth for all teams.
Your IDE connects to the Rosetta MCP server. The server exposes guardrails and common best practices, and provides a menu of available instructions — workflows and coding conventions. The coding agent selects only what it needs for the current task; Rosetta delivers just those, keeping the agent's context lean. By design, no source code or project data reaches Rosetta.
Rosetta is designed to not see your source code. It only serves knowledge and instructions to the agent. The agent loads only what it needs per request (progressive disclosure) and follows your organization's workflows.
Rosetta is engineered to prevent the unintentional transmission of sensitive data through the following architectural controls:
- Deterministic Instruction Serving: Instructions are delivered as MCP resources in a strictly deterministic manner. By eliminating the need for semantic search, coding agents are never required to transmit source code or sensitive context to Rosetta to retrieve instructions.
- Read-Only Default State: "Write" mode is disabled and hidden by default. Enabling write capabilities requires an explicit, intentional configuration at deployment, ensuring that data persistence remains entirely outside of the end-user's control.
- Schema-Strict Input Validation: All MCP tool inputs undergo rigorous validation against predefined schemas. This ensures the system rejects any unexpected payloads or "over-sharing" of data that does not match the required parameters.
Cursor — add to ~/.cursor/mcp.json or .cursor/mcp.json:
{
"mcpServers": {
"Rosetta": {
"url": "<rosetta MCP production server URL>"
}
}
}Claude Code:
claude mcp add --transport http Rosetta <rosetta MCP production server URL>Codex:
codex mcp add Rosetta --url <rosetta MCP production server URL>
codex mcp login RosettaComplete the OAuth flow when prompted. Then ask: "Initialize this repository using Rosetta"
STDIO transport is available for air-gapped environments. All IDEs and detailed setup. Read more in the Quickstart.
Cursor | Claude Code | VS Code / GitHub Copilot | JetBrains (Copilot, Junie) | Windsurf | Codex | Antigravity | OpenCode
Works with any MCP-compatible tool.
| I want to... | Read |
|---|---|
| Understand what Rosetta is and how to think about it | OVERVIEW.md |
| Set up Rosetta | QUICKSTART.md |
| Learn how to use Rosetta flows | USAGE_GUIDE.md |
| Deploy Rosetta for my organization | DEPLOYMENT_GUIDE.md |
| Understand the system architecture | ARCHITECTURE.md |
| Navigate the codebase | DEVELOPER_GUIDE.md |
| Contribute a change | CONTRIBUTING.md |
| Debug a problem | TROUBLESHOOTING.md |
| See release history | CHANGELOG.md |
| Security Policy | SECURITY.md |
Contributions welcome. See CONTRIBUTING.md for workflow and expectations.
Warning
Rosetta is intended for legitimate software engineering workflows. Users are responsible for ensuring their use complies with applicable laws, regulations, and contractual obligations.
See LICENSE for details.