Neue Skills, Referenzen & OpenWiki-Doku integriert
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.
This commit is contained in:
31
.github/skills/loop-architect/examples/ai-workflow-mapping/scripts/check-loop-doc.py
vendored
Normal file
31
.github/skills/loop-architect/examples/ai-workflow-mapping/scripts/check-loop-doc.py
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Check that a generated workflow map has the expected sections."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
import sys
|
||||
|
||||
|
||||
REQUIRED = ["Owner", "Input", "Output", "Checkpoint"]
|
||||
|
||||
|
||||
def main() -> int:
|
||||
if len(sys.argv) != 2:
|
||||
print("usage: check-loop-doc.py <delivery-path>", file=sys.stderr)
|
||||
return 2
|
||||
path = Path(sys.argv[1])
|
||||
if not path.exists():
|
||||
print(f"missing file: {path}", file=sys.stderr)
|
||||
return 1
|
||||
text = path.read_text(encoding="utf-8")
|
||||
missing = [item for item in REQUIRED if item not in text]
|
||||
if missing:
|
||||
print(f"missing required text: {', '.join(missing)}", file=sys.stderr)
|
||||
return 1
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
raise SystemExit(main())
|
||||
|
||||
Reference in New Issue
Block a user