69 lines
1.5 KiB
Markdown
69 lines
1.5 KiB
Markdown
Here’s a **badge and identifier set** for ACUL-compliant software that you can embed in repositories, websites, or package manifests.
|
||
|
||
---
|
||
|
||
## 🏷️ **Badge (Markdown for README)**
|
||
|
||
```markdown
|
||
[](https://nexus.foundation/membership)
|
||
```
|
||
|
||
---
|
||
|
||
## 🧩 **JSON/YAML License Manifest Snippet**
|
||
|
||
**YAML:**
|
||
|
||
```yaml
|
||
license:
|
||
type: ACUL
|
||
foundation_membership: Silver
|
||
attribution: "© 2025 Maiwald Systems / NexusOS Project"
|
||
reproducibility:
|
||
npk_logs: true
|
||
reproducible_build: true
|
||
website: "https://nexus.foundation/membership"
|
||
```
|
||
|
||
**JSON:**
|
||
|
||
```json
|
||
{
|
||
"license": {
|
||
"type": "ACUL",
|
||
"foundation_membership": "Silver",
|
||
"attribution": "© 2025 Maiwald Systems / NexusOS Project",
|
||
"reproducibility": {
|
||
"npk_logs": true,
|
||
"reproducible_build": true
|
||
},
|
||
"website": "https://nexus.foundation/membership"
|
||
}
|
||
}
|
||
```
|
||
|
||
---
|
||
|
||
## 🧠 Visual Suggestions (for future design)
|
||
|
||
If you want to create your own SVG for the badge, here's a suggested label:
|
||
|
||
* **Left:** `License`
|
||
* **Right:** `ACUL (Nexus Foundation)`
|
||
|
||
You can use [Shields.io](https://shields.io/) with a custom label:
|
||
|
||
```
|
||
https://img.shields.io/badge/License-ACUL%20(Nexus%20Foundation)-blue
|
||
```
|
||
|
||
---
|
||
|
||
## 📂 Recommended Placement
|
||
|
||
* In your `.npk.yaml` or `fragment.npk.yaml` file under `license:`
|
||
* As a badge in the `README.md` or `docs/index.md`
|
||
* Embedded in `nip verify` output for commercial audits
|
||
|
||
Let me know if you want a branded SVG or PNG with Nexus colors and symbol.
|