Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 2 column 8
---
status: draft
owner: @vi
last_reviewed: 2026-04-10
review_cadence: quarterly
---
- Local deterministic boundary: shell scripts in
lib/, schemas, proofpack assembly, receipt logic. - Claude Code / LLM orchestration boundary:
commands/andagents/define what context goes to contractor/engineer/reviewer agents. - External provider boundary: current docs state Codex CLI and Gemini CLI receive the diff only, not the full codebase.
- Plugin/install boundary: plugin metadata and install surfaces live under
.claude-plugin/.
| Surface | Why sensitive |
|---|---|
lib/dsl-runner.sh |
Executes verify DSL primitives; command surface must stay constrained |
lib/policy-scanner.sh / lib/policy-resolver.sh |
Enforces execution policy and denied command patterns |
lib/contract-injection-scan.sh |
Guards against contract/prompt injection input |
commands/signum.md and agents/*.md |
Control what context and instructions reach models |
lib/schemas/*.json |
Define structured inputs/outputs trusted by the pipeline |
- Holdouts are physically removed from
contract-engineer.json; they are not hidden only by prompt text. - Execution policy is derived into
contract-policy.jsonbefore EXECUTE and enforced after execution. - The README documents a whitelisted
execsurface in the verify DSL. - Pre-commit hooks include:
gitleaksdetect-private-keycheck-added-large-files
lib/contract-injection-scan.shexists as a dedicated deterministic defense layer.
- Current public docs say Signum does not phone home and does not add telemetry/analytics.
- Artifacts are written to
.signum/locally. - External review providers are documented as diff-only recipients.
- Do not add test fixtures, prompts, or docs that contain real credentials or tokens.
- Any change to
lib/dsl-runner.sh - Any change to
lib/policy-scanner.sh,lib/policy-resolver.sh, orlib/contract-injection-scan.sh - Any schema change under
lib/schemas/ - Any change that widens what external providers receive
- Any change that modifies holdout blinding or execution-policy enforcement semantics
- Add or update a deterministic test when the security-relevant script behavior changes.
- Update docs/reference if the externally visible contract or trust boundary changes.
- Avoid “silent” overlay-only security behavior changes; document them explicitly if unavoidable.