ship: phase-02 l1-modules (v1.0.2)

Squash merge of phase/02-l1-modules into milestone/v1.0-initial; 8 L1 stub modules created; verify_phase02.sh green.
This commit was merged in pull request #2.
This commit is contained in:
2026-07-21 13:18:12 +00:00
parent fd423e2df1
commit 00d0043866
23 changed files with 375 additions and 68 deletions
+13
View File
@@ -0,0 +1,13 @@
name: l1-lambda
kind: l1
description: Event-driven function primitive
inputs:
function_name:
description: Name of the Lambda function
type: string
runtime:
description: Lambda runtime identifier (e.g. python3.12, nodejs20.x)
type: string
handler:
description: Handler entrypoint in the form module.function
type: string
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
echo "[L1: l1-lambda] applying..."
sleep 1
echo "[L1: l1-lambda] OK"
exit 0