The Flamingo Registry is the central catalog and discovery hub for services, integrations, and components within the Flamingo / OpenFrame ecosystem. It is an open-source, content-first repository that acts as the source of truth for discovering, versioning, and referencing the building blocks that power AI-driven MSP (Managed Service Provider) operations.
Think of it as the package index and service catalog for the OpenFrame platform — a machine-readable, Git-native directory that every part of the platform reads from.
- Service Discovery — Centralized lookup for all OpenFrame platform components, integrations, and reusable building blocks
- Version Catalog — Tracks releases and compatibility metadata for every registered entry using semantic versioning
- Open Source — Community-driven and extensible under the Flamingo Stack; contributions welcome via pull request
- AI-Ready — Designed for direct consumption by Mingo AI (technician assistant) and Fae (client assistant)
- MSP-Native — Built around Managed Service Provider workflows — PSA, RMM, monitoring, ticketing, and more
- Kubernetes-Style Resource Model — Familiar
apiVersion / kind / metadata / specschema structure for platform engineers - Schema Validation — Every catalog entry is validated against a JSON/YAML schema, enforcing quality in CI before merge
- Auditable by Design — Git-native, PR-based model provides a complete, reviewable change history for the catalog
The Registry sits at the center of the OpenFrame service mesh — every component that participates in the platform is registered here.
graph TD
Contributors["Contributors\n(MSP Developers, Operators)"]
Registry["Flamingo Registry\n(flamingo-stack/registry)"]
Schemas["Schema Layer\n(Validation Rules)"]
Catalog["Catalog Layer\n(Services / Integrations / Components)"]
OpenFrame["OpenFrame Platform\n(Unified MSP Interface)"]
MingoAI["Mingo AI\n(Technician Assistant)"]
Fae["Fae\n(Client Assistant)"]
MSPTools["MSP Tools\n(PSA, RMM, Monitoring, etc.)"]
Contributors -->|"Pull Requests"| Registry
Registry --> Schemas
Registry --> Catalog
Catalog -->|"Service Discovery"| OpenFrame
OpenFrame --> MingoAI
OpenFrame --> Fae
OpenFrame --> MSPTools
The catalog is organized by entry type:
| Directory | What It Contains |
|---|---|
catalog/services/ |
OpenFrame platform service definitions |
catalog/integrations/ |
Third-party MSP tool integrations (PSA, RMM, monitoring, etc.) |
catalog/components/ |
Reusable platform building blocks and libraries |
schemas/ |
Validation schemas for all entry types |
docs/ |
Documentation for contributors and operators |
Every catalog entry follows a Kubernetes-style resource definition:
apiVersion: registry.flamingo.run/v1
kind: Service | Integration | Component
metadata:
name: my-integration # kebab-case, globally unique
version: "1.0.0" # semantic versioning
description: "Description"
labels:
category: psa # psa, rmm, monitoring, security, etc.
vendor: acme-corp
spec:
homepage: "https://vendor.example.com"
documentation: "https://docs.vendor.example.com"
maintainers:
- name: Your Name
contact: "https://www.openmsp.ai/"No build step required — the Registry is a content-first data repository.
| Tool | Purpose |
|---|---|
| Git 2.x+ | Cloning and contributing |
| yamllint | YAML syntax validation |
| jq | JSON schema inspection |
git clone https://github.com/flamingo-stack/registry.git
cd registry# List registered services
ls catalog/services/
# List integrations
ls catalog/integrations/
# Inspect an entry
cat catalog/services/<entry-name>.yaml# Copy an existing entry as a template
cp catalog/integrations/example-integration.yaml catalog/integrations/my-integration.yaml
# Edit with your details
code catalog/integrations/my-integration.yaml# Check YAML syntax
yamllint catalog/integrations/my-integration.yaml
# Check for duplicate names
grep -r "name: my-integration" catalog/git checkout -b feat/add-my-integration
git add catalog/integrations/my-integration.yaml
git commit -m "feat(integrations): add my-integration entry"
git push origin feat/add-my-integrationThen open a Pull Request at https://github.com/flamingo-stack/registry/pulls.
| Layer | Technology |
|---|---|
| Catalog format | YAML (human-readable entries) |
| Schema format | JSON Schema (machine-readable validation) |
| Version control | Git / GitHub |
| Validation | yamllint, JSON Schema validators |
| CI/CD | GitHub Actions (automated validation on every PR) |
| Entry model | Kubernetes-style resource definitions |
📚 See the Documentation for comprehensive guides including getting started tutorials, development setup, architecture overview, security guidelines, and contributing workflows.
All support and discussion happens on the OpenMSP Slack community — we do not use GitHub Issues or GitHub Discussions.
- OpenMSP Slack: https://www.openmsp.ai/
- Join the community: Slack invite link
- Flamingo Platform: https://flamingo.run
- OpenFrame Platform: https://openframe.ai
Contributions are welcome! See CONTRIBUTING.md for the full contribution guide, including naming conventions, branch strategy, commit message format, and the PR review process.