Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors:
given-names: "Don Michael"
license: non-commercial
repository-code: "https://github.com/dfeen87/Goodwill-KPI"
version: "1.1.0"
version: "1.1.1"

Copilot AI Apr 5, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CITATION.cff is now 1.1.1, but the runtime/app version is still 1.1.0 (goodwill/__init__.py:__version__, consumed by app/main.py). This will make the FastAPI OpenAPI version and any consumers of goodwill.__version__ inconsistent with the citation metadata; consider bumping the package __version__ (and any other version sources) to match, or keep CITATION.cff at 1.1.0 until the code version is updated.

Suggested change
version: "1.1.1"
version: "1.1.0"

Copilot uses AI. Check for mistakes.
date-released: "2026-03-04"
keywords:
- goodwill
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ Goodwill-KPI/
│ └── metrics.py # Pure functions: compute_G, compute_CG, compute_UGS
├── tests/
│ ├── __init__.py
│ ├── test_config.py # Unit tests for weight configuration loading
│ ├── test_dashboard.py # API and dashboard integration tests
│ └── test_goodwill.py # Unit tests for all metric functions
├── CITATION.cff # Citation metadata
├── conftest.py # Shared pytest fixtures
├── LICENSE # Non-commercial license
├── LICENSE # Hybrid non-commercial / commercial license
├── render.yaml # Render.com deployment configuration
├── requirements-dev.txt # Development dependencies (pytest, httpx, …)
└── requirements.txt # Runtime dependencies (fastapi, uvicorn, …)
Expand Down
42 changes: 0 additions & 42 deletions docs/CALIBRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,45 +237,3 @@ to all score consumers.
The framework's architecture makes calibration auditable by design. Every score
includes the exact weights used to produce it. This makes score interpretation
traceable and defensible without relying on external documentation alone.

---

## 9. Repository Tree Update

The following shows the updated repository tree with `CALIBRATION.md` added at
the root. No existing files are modified.

```
Goodwill-KPI/
├── .github/
│ └── workflows/
│ └── ci.yml
├── app/
│ ├── __init__.py
│ ├── main.py
│ └── templates/
│ └── dashboard.html
├── goodwill/
│ ├── __init__.py
│ ├── README.md
│ ├── config.py
│ └── metrics.py
├── tests/
│ ├── __init__.py
│ ├── test_dashboard.py
│ └── test_goodwill.py
├── docs/
│ ├── CALIBRATION.md
│ ├── CITATION.cff
│ ├── INPUT-GOVERNANCE.md
│ ├── LICENSE
│ ├── OBSERVABILITY.md
│ ├── ROADMAP.md
│ ├── SECURITY.md
│ └── VALIDATION.md
├── conftest.py
├── README.md
├── render.yaml
├── requirements-dev.txt
└── requirements.txt
```
42 changes: 0 additions & 42 deletions docs/INPUT-GOVERNANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,45 +254,3 @@ report.
Organizations that follow this governance model can present their goodwill
scores to internal and external stakeholders with confidence that the scores
are defensible, reproducible, and free from silent manipulation.

---

## 9. Repository Tree Update

The following shows the updated repository tree with `INPUT-GOVERNANCE.md`
added at the root. No existing files are modified.

```
Goodwill-KPI/
├── .github/
│ └── workflows/
│ └── ci.yml
├── app/
│ ├── __init__.py
│ ├── main.py
│ └── templates/
│ └── dashboard.html
├── goodwill/
│ ├── __init__.py
│ ├── README.md
│ ├── config.py
│ └── metrics.py
├── tests/
│ ├── __init__.py
│ ├── test_dashboard.py
│ └── test_goodwill.py
├── docs/
│ ├── CALIBRATION.md
│ ├── CITATION.cff
│ ├── INPUT-GOVERNANCE.md
│ ├── LICENSE
│ ├── OBSERVABILITY.md
│ ├── ROADMAP.md
│ ├── SECURITY.md
│ └── VALIDATION.md
├── conftest.py
├── README.md
├── render.yaml
├── requirements-dev.txt
└── requirements.txt
```
42 changes: 0 additions & 42 deletions docs/OBSERVABILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,45 +281,3 @@ track score trends over time with consistent T values, and verify score
reproducibility on each reporting cycle. These practices, applied consistently,
give operators and governance stakeholders confidence that the scores they
receive are correct, stable, and free from undetected configuration drift.

---

## 9. Repository Tree Update

The following shows the updated repository tree with `OBSERVABILITY.md` added
at the root. No existing files are modified.

```
Goodwill-KPI/
├── .github/
│ └── workflows/
│ └── ci.yml
├── app/
│ ├── __init__.py
│ ├── main.py
│ └── templates/
│ └── dashboard.html
├── goodwill/
│ ├── __init__.py
│ ├── README.md
│ ├── config.py
│ └── metrics.py
├── tests/
│ ├── __init__.py
│ ├── test_dashboard.py
│ └── test_goodwill.py
├── docs/
│ ├── CALIBRATION.md
│ ├── CITATION.cff
│ ├── INPUT-GOVERNANCE.md
│ ├── LICENSE
│ ├── OBSERVABILITY.md
│ ├── ROADMAP.md
│ ├── SECURITY.md
│ └── VALIDATION.md
├── conftest.py
├── README.md
├── render.yaml
├── requirements-dev.txt
└── requirements.txt
```
42 changes: 0 additions & 42 deletions docs/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,45 +198,3 @@ infrastructure layer, dependency management, and ensuring that the numeric
inputs they supply do not embed sensitive information. Within those boundaries,
the framework is designed to be deployed safely in governance-aware environments
without additional application-layer security controls.

---

## 9. Repository Tree Update

The following shows the updated repository tree with `SECURITY.md` added at the
root. No existing files are modified.

```
Goodwill-KPI/
├── .github/
│ └── workflows/
│ └── ci.yml
├── app/
│ ├── __init__.py
│ ├── main.py
│ └── templates/
│ └── dashboard.html
├── goodwill/
│ ├── __init__.py
│ ├── README.md
│ ├── config.py
│ └── metrics.py
├── tests/
│ ├── __init__.py
│ ├── test_dashboard.py
│ └── test_goodwill.py
├── docs/
│ ├── CALIBRATION.md
│ ├── CITATION.cff
│ ├── INPUT-GOVERNANCE.md
│ ├── LICENSE
│ ├── OBSERVABILITY.md
│ ├── ROADMAP.md
│ ├── SECURITY.md
│ └── VALIDATION.md
├── conftest.py
├── README.md
├── render.yaml
├── requirements-dev.txt
└── requirements.txt
```
Loading