Myosotis is an open-source control surface for AI-native workspace setup.
This is not another agent harness.
Its purpose is to solve Configuration Fragmentation and Team-Wide Onboarding in an era where AI skills, MCP servers, and best practices are releasing minutely. It provides a unified, syncable baseline for every developer on a team—ensuring every agent has the same tools and domain context while preserving local autonomy.
Instead of hiding your agent setups behind a database or a proprietary internal tool, Myosotis keeps the source of truth in plain files you can review, diff, fork, and ship.
- Instant Team Onboarding: Turn hours of manual agent configuration into a 60-second bootstrap.
- Collective Intelligence: Shared domain skills (backend, frontend, devops, pr-review) that the whole team uses and improves.
- File-Native: MCP configs, skills, and instructions remain regular repository assets.
- Hybrid Execution: A shared stack on AWS for long-running team workflows, mirrored by local developer environments.
- Project Anchors: Consistent
.archon/,AGENTS.md, andCLAUDE.mdfiles synchronized into every product repo.
Myosotis includes a Next.js-based control surface that lets you manage your AI workspace visually while keeping the source of truth in git.
web/Next.js application for the Myosotis workspacecompose/Docker Compose runtime and deployment helpersinfra/terraform/aws/AWS scaffold for EC2, RDS, Secrets Manager, and SSMtemplates/global and project instruction templatesmcp/canonical MCP profile templatesskills/shared team skills (backend, frontend, devops, pr-review)bootstrap/local sync and setup scriptschecks/verification scripts for local, project, and shared-stack setupdocs/architecture, onboarding, operations, and rollout guidance
cd web
npm install
npm run devOpen http://localhost:3000.
The UI reads from the repository root by default via CONFIG_ROOT, so you can edit the local mcp/, skills/, and templates/ directories directly.
cd web
npm run lint
npm run buildcd compose
cp .env.shared.example .env.shared
bash deploy.shThe repo ships with a minimal Terraform scaffold for:
- EC2 runtime host
- RDS PostgreSQL
- Secrets Manager runtime config
- IAM + SSM access
- optional Route53 record
Start here:
cd infra/terraform/aws
cp terraform.tfvars.example terraform.tfvars
terraform init
terraform plan
terraform applyThen deploy the compose stack on the target host.
Issues, pull requests, and starter-pack improvements are welcome. Myosotis is structured to be reusable outside the originating organization, with a real starter kit included so you don't have to start from an empty shell.
Start with:
Licensed under Apache License 2.0.

