Per template (singularity-forge f3d84cd11). Project-specific manifest + prompts/project.md capture: post-rename namespace com.centralcloud.oncall (io.heckel.ntfy fully gone), centrally-configured-from-server design, strict-opt-in SMS relay, greenfield (no backwards compat with upstream ntfy). Legacy docs (AGENTS.md, README.md, TESTING.md) kept; .agents/ canonical going forward. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
427 B
Markdown
17 lines
427 B
Markdown
---
|
|
name: smoke-test
|
|
description: Run the standard sf-run smoke tests (--version, --help, --print). All three must pass before shipping a build.
|
|
---
|
|
|
|
#!/bin/bash
|
|
set -e
|
|
echo "=== --version ==="
|
|
node dist/loader.js --version
|
|
|
|
echo "=== --help (first 5 lines) ==="
|
|
node dist/loader.js --help 2>&1 | head -5
|
|
|
|
echo "=== --print (graceful degradation) ==="
|
|
node dist/loader.js --print 2>&1 | head -5
|
|
|
|
echo "All smoke tests passed."
|