feat: add draft data, gap analysis report, and workspace config
Some checks failed
CI / test (3.11) (push) Failing after 1m37s
CI / test (3.12) (push) Failing after 57s

This commit is contained in:
2026-04-06 18:47:15 +02:00
parent 4f310407b0
commit 2506b6325a
189 changed files with 62649 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
SHELL := /bin/bash
SLUG ?=
VERSION ?= 1
ROLE ?=
.PHONY: help prepare targets status
help:
@echo "Usage:"
@echo " make prepare SLUG=<cycle-slug> VERSION=<n>"
@echo " make targets SLUG=<cycle-slug> ROLE=<role> VERSION=<n>"
@echo " make status SLUG=<cycle-slug> VERSION=<n>"
@echo ""
@echo "Roles:"
@echo " researcher architect author security-reviewer software-reviewer architecture-reviewer ietf-senior-reviewer review-lead"
prepare:
@if [[ -z "$(SLUG)" ]]; then echo "SLUG is required"; exit 1; fi
@./scripts/run-cycle.sh "$(SLUG)" "$(VERSION)"
targets:
@if [[ -z "$(SLUG)" ]]; then echo "SLUG is required"; exit 1; fi
@if [[ -z "$(ROLE)" ]]; then echo "ROLE is required"; exit 1; fi
@./scripts/role-target.sh "$(SLUG)" "$(ROLE)" "$(VERSION)"
status:
@if [[ -z "$(SLUG)" ]]; then echo "SLUG is required"; exit 1; fi
@./scripts/update-status.sh "$(SLUG)" "$(VERSION)"