428 curated frameworks for product, software, and design management — one unified library.
MetaFrame is an open-source, bilingual knowledge base that consolidates 428 professional frameworks from three major sources into a single, well-organized library. It covers the full spectrum from product thinking to software architecture to team management.
| Source | Focus | Frameworks | Status |
|---|---|---|---|
| PMFrame.works | Product Management | 100 | Curated |
| SDFrame | Software Design | 317 | Curated |
| DMGT Toolkit Pro | Design Management | 21 (unique) | Curated |
After deduplication: 428 unique frameworks across 13 categories.
| # | Category | Count | Description |
|---|---|---|---|
| 🧠 | Thinking & Strategy | 28 | Mental models, strategic analysis, problem framing |
| 🔍 | User & Research | 9 | User research, empathy, validation methods |
| 🎨 | Design & Ideation | 40 | Creative methods, prototyping, UX design |
| 🏗️ | Architecture & Systems | 64 | System design, patterns, distributed systems |
| 💻 | Code & Engineering | 43 | Coding practices, design patterns, refactoring |
| ✅ | Testing & Quality | 29 | Testing strategies, QA, reliability |
| 🚀 | Delivery & Operations | 24 | CI/CD, DevOps, SRE, infrastructure |
| 📈 | Growth & Product | 92 | Product strategy, metrics, prioritization |
| 🔒 | Security & Privacy | 24 | Security architecture, threat modeling |
| 🤖 | AI & Automation | 11 | AI agents, LLM patterns, human-AI collaboration |
| 👥 | Team & Collaboration | 27 | Team dynamics, leadership, project management |
| 📊 | Observability & DX | 20 | Monitoring, logging, developer experience |
| 🔌 | API & Integration | 17 | API design, integration patterns |
Navigate the frameworks/ directory to explore by category.
MetaFrame is designed to work with AI coding assistants (Hermes, Claude, Cursor, etc.). Each framework is a self-contained Markdown file with:
- Name (Chinese + English)
- Category and metadata
- Description and use cases
- Step-by-step instructions
- Best practices (Do's and Don'ts)
- Source attribution
# Clone and symlink
git clone https://github.com/Grepoch/metaframe.git
ln -s $(pwd)/metaframe/frameworks ~/.hermes/skills/metaframeimport os
frameworks = []
for category in os.listdir('frameworks'):
cat_path = os.path.join('frameworks', category)
if os.path.isdir(cat_path):
for f in os.listdir(cat_path):
if f.endswith('.md'):
with open(os.path.join(cat_path, f)) as fh:
frameworks.append({'category': category, 'file': f, 'content': fh.read()})metaframe/
├── README.md # This file (English)
├── README.zh-CN.md # Chinese README
├── ABOUT.md # Project background (English)
├── ABOUT.zh-CN.md # 项目背景(中文)
├── LICENSE # MIT License
├── .gitignore
├── frameworks/
│ ├── thinking/ # 🧠 28 frameworks
│ ├── research/ # 🔍 9 frameworks
│ ├── design/ # 🎨 40 frameworks
│ ├── architecture/ # 🏗️ 64 frameworks
│ ├── engineering/ # 💻 43 frameworks
│ ├── quality/ # ✅ 29 frameworks
│ ├── delivery/ # 🚀 24 frameworks
│ ├── growth/ # 📈 92 frameworks
│ ├── security/ # 🔒 24 frameworks
│ ├── ai/ # 🤖 11 frameworks
│ ├── team/ # 👥 27 frameworks
│ ├── observability/ # 📊 20 frameworks
│ └── api/ # 🔌 17 frameworks
└── scripts/ # Utility scripts (future)
Contributions are welcome! Here's how you can help:
- Add a framework: Create a new
.mdfile in the appropriate category - Improve content: Enhance existing framework descriptions
- Fix translations: Improve Chinese/English translations
- Report issues: Open an issue for incorrect or missing information
---
name: metaframe-your-framework-slug
category: thinking
description: "Framework Name | Short Description"
---
# Framework Name (框架名称)
**English Name**: Framework Name
**Category**: Thinking & Strategy
**Author**: Original Author, Year
## Description
What this framework does and when to use it.
## Steps
1. Step one
2. Step two
3. ...
## Best Practices
### Do
- Best practice 1
### Don't
- Common mistake 1
---
> **Source**: AttributionMIT License. See LICENSE for details.
This project builds upon the excellent work of:
- PMFrame.works — https://pmframe.works
- SDFrame by Caldis — https://sdframe.caldis.me
- DMGT Toolkit Pro by Zihan Huang — https://dmgt.z1han.com
The framework concepts and methodologies are public knowledge. Specific descriptions are original content or adapted with attribution.
| Metric | Value |
|---|---|
| Total Frameworks | 428 |
| Categories | 13 |
| Languages | Chinese + English |
| Sources | 3 (deduplicated) |
| File Format | Markdown |
| License | MIT |