Umfangreiche Erweiterung der Skill-Bibliothek: Neue Skills für Humanisierung (Englisch/PT-BR), Design-Validierung, AI-SEO und Coolify-Deployment inkl. Regelwerke, Presets, Pattern-Referenzen, Testfälle und Automatisierungsskripte. Zusätzliche Skills für Revenue-Centric Design, Pier Cloud, OKF, Lebenslauf- und LinkedIn-Optimierung sowie zahlreiche Referenzdateien, Checklisten und YAML/JSON/Markdown-Templates. Einführung einer vollständigen OpenWiki-Dokumentation mit Architektur-, Domain- und Workflow-Beschreibungen, zentralem Index und automatisierten Updates. Modularer Aufbau, restriktive Lizenzen und umfassende Qualitäts- und Evaluationsmechanismen für alle neuen Inhalte.
26 lines
727 B
JSON
26 lines
727 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://github.com/ksimback/looper/schema/loop.resolved.v1.json",
|
|
"title": "Looper resolved spec v1",
|
|
"allOf": [
|
|
{ "$ref": "./loop.v1.schema.json" },
|
|
{
|
|
"type": "object",
|
|
"required": ["compiled_at", "source", "criteria_by_id", "council_by_id"],
|
|
"properties": {
|
|
"compiled_at": { "type": "string" },
|
|
"source": { "type": "string" },
|
|
"criteria_by_id": {
|
|
"type": "object",
|
|
"additionalProperties": { "$ref": "./loop.v1.schema.json#/$defs/criterion" }
|
|
},
|
|
"council_by_id": {
|
|
"type": "object",
|
|
"additionalProperties": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|