-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake_kenl_scaffold_zip.sh
More file actions
executable file
·34 lines (27 loc) · 1.04 KB
/
make_kenl_scaffold_zip.sh
File metadata and controls
executable file
·34 lines (27 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
# make_kenl_scaffold_zip.sh
# Create a zip archive (kenl-scaffold.zip) containing the ATOM & SAGE infra scaffold files
# Usage: bash make_kenl_scaffold_zip.sh
set -euo pipefail
OUTDIR="kenl-scaffold"
ZIPNAME="kenl-scaffold.zip"
rm -rf "$OUTDIR" "$ZIPNAME"
mkdir -p "$OUTDIR"
mkdir -p "$OUTDIR/.github/workflows"
mkdir -p "$OUTDIR/.github/ISSUE_TEMPLATE"
mkdir -p "$OUTDIR/02-Decisions"
mkdir -p "$OUTDIR/mcp-governance"
mkdir -p "$OUTDIR/scripts"
mkdir -p "$OUTDIR/tests"
cat > "$OUTDIR/README.md" <<'EOF'
# kenl
Status: scaffold & governance added — PR recommended to finalize.
kenl is the repository for [project name / short description].
This repository now includes a full modern developer and governance scaffold: CI, security scanning, pre-commit, ARCREF/ADR governance templates, and issue/PR templates.
Quick links
- Contributing: CONTRIBUTING.md
- Governance / MCP: mcp-governance/ARCREF_TEMPLATE.yaml
- ADRs: 02-Decisions/ADR_TEMPLATE.md
- Security reporting: SECURITY.md
Getting started (developer quickstart)
1. Clone: