Skip to content

Commit b103075

Browse files
committed
feat: add CODEOWNERS, badges, sidebar, and CITATION.cff
- Add .github/CODEOWNERS for PR review automation - Add documentation and workflow badges to README - Create docs/_sidebar.md for GitHub Pages navigation - Add CITATION.cff for academic citations (CFF format)
1 parent efa8764 commit b103075

File tree

4 files changed

+117
-2
lines changed

4 files changed

+117
-2
lines changed

.github/CODEOWNERS

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# CODEOWNERS
2+
# Defines individuals or teams responsible for code in this repository
3+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
4+
5+
# Default owner for everything in the repo
6+
* @hummbl-dev
7+
8+
# Core framework document
9+
/HUMMBL_Unified_Tier_Framework_v1.0.md @hummbl-dev
10+
11+
# Documentation site
12+
/docs/ @hummbl-dev
13+
14+
# Community health files
15+
/.github/ @hummbl-dev
16+
/CODE_OF_CONDUCT.md @hummbl-dev
17+
/CONTRIBUTING.md @hummbl-dev
18+
/SECURITY.md @hummbl-dev
19+
20+
# Configuration files
21+
/.gitignore @hummbl-dev
22+
/LICENSE.md @hummbl-dev
23+
/README.md @hummbl-dev
24+
/CHANGELOG.md @hummbl-dev

CITATION.cff

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Citation File Format (CFF)
2+
# https://citation-file-format.github.io/
3+
4+
cff-version: 1.2.0
5+
title: "HUMMBL Unified Tier Framework v1.0"
6+
message: "If you use this framework, please cite it as below."
7+
type: software
8+
authors:
9+
- family-names: Bowlby
10+
given-names: Reuben
11+
email: contact@hummbl.dev
12+
affiliation: "HUMMBL, LLC"
13+
orcid: "https://orcid.org/0000-0000-0000-0000"
14+
repository-code: "https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework"
15+
url: "https://hummbl-dev.github.io/HUMMBL-Unified-Tier-Framework/"
16+
abstract: >-
17+
A comprehensive framework for classifying problem complexity,
18+
mapping learning progression, and selecting appropriate mental
19+
model combinations for systematic problem-solving. Features a
20+
dual-tier system (Problem Complexity Tiers 1-5 and Learning
21+
Progression Tiers 0-4), quantitative wickedness scoring
22+
methodology (5-question, 0-30 points), Base-N selection
23+
framework (Base6 through BASE120), and empirical validation
24+
from BASE120 mental models research (120 models at 9.1/10 quality).
25+
keywords:
26+
- mental models
27+
- problem solving
28+
- complexity theory
29+
- wicked problems
30+
- learning progression
31+
- decision making
32+
- systems thinking
33+
- cognitive frameworks
34+
- wickedness assessment
35+
- base-n architecture
36+
license: CC-BY-NC-ND-4.0
37+
version: 1.0.0
38+
date-released: 2025-11-01
39+
preferred-citation:
40+
type: report
41+
authors:
42+
- family-names: Bowlby
43+
given-names: Reuben
44+
title: "HUMMBL Unified Tier Framework v1.0: Integrating Problem Complexity, Learning Progression, and Base-N Architecture"
45+
year: 2025
46+
institution:
47+
name: "HUMMBL, LLC"
48+
url: "https://hummbl-dev.github.io/HUMMBL-Unified-Tier-Framework/"

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# HUMMBL Unified Tier Framework v1.0
22

3-
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/hummbl-systems/hummbl-unified-tier-framework/releases)
4-
[![License](https://img.shields.io/badge/license-Proprietary-red.svg)](LICENSE.md)
3+
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/releases)
4+
[![License](https://img.shields.io/badge/license-CC%20BY--NC--ND%204.0-red.svg)](LICENSE.md)
55
[![Status](https://img.shields.io/badge/status-production-green.svg)](CHANGELOG.md)
6+
[![Documentation](https://img.shields.io/badge/docs-live-success)](https://hummbl-dev.github.io/HUMMBL-Unified-Tier-Framework/)
7+
[![Markdown Lint](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/actions/workflows/markdown-lint.yml/badge.svg)](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/actions/workflows/markdown-lint.yml)
8+
[![Spell Check](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/actions/workflows/spell-check.yml/badge.svg)](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/actions/workflows/spell-check.yml)
9+
[![Link Checker](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/actions/workflows/link-checker.yml/badge.svg)](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/actions/workflows/link-checker.yml)
610

711
**Integrating Problem Complexity, Learning Progression, and Base-N Architecture**
812

docs/_sidebar.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# HUMMBL Framework
2+
3+
## Getting Started
4+
5+
- [Home](/)
6+
- [Quick Start](getting-started.md)
7+
- [Full Framework](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/blob/main/HUMMBL_Unified_Tier_Framework_v1.0.md)
8+
9+
## Core Framework
10+
11+
- [Problem Complexity Tiers](core/problem-complexity-tiers.md)
12+
- [Learning Progression](core/learning-progression.md)
13+
- [Base-N Architecture](core/base-n-architecture.md)
14+
- [Wickedness Scoring](core/wickedness-scoring.md)
15+
16+
## Application Guides
17+
18+
- [Practical Guide](guides/practical-guide.md)
19+
- [For Practitioners](guides/practitioners.md)
20+
- [For Learners](guides/learners.md)
21+
- [For Researchers](guides/researchers.md)
22+
23+
## Reference
24+
25+
- [Validation Evidence](reference/validation-evidence.md)
26+
- [Attribution](reference/attribution.md)
27+
- [Glossary](reference/glossary.md)
28+
- [FAQ](reference/faq.md)
29+
30+
## Resources
31+
32+
- [GitHub Repository](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework)
33+
- [Discussions](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/discussions)
34+
- [Issues](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/issues)
35+
- [Contributing](https://github.com/hummbl-dev/HUMMBL-Unified-Tier-Framework/blob/main/CONTRIBUTING.md)
36+
37+
---
38+
39+
*HUMMBL Unified Tier Framework v1.0*

0 commit comments

Comments
 (0)