Run artifact

workspace/targets/commonmark/blueprint/FEATURE-CLI-DOCUMENTATION.md

FEATURE: CLI Documentation

FieldValue
Version20260812 V1
DescriptionDocuments the parser command-line interface and complete conformance verification command.
Depends OnFEATURE-CLI-ENTRYPOINT.md
ProvidesREADME.md
Consumesparser executable, full_test.sh

Documentation

README.md is concise and documents:

Programmatic Acceptance

=== AC cli-documentation-content ===
Intent: README.md documents the standard-input and standard-output interface.

from pathlib import Path

text = Path("README.md").read_text(encoding="utf-8") lower = text.lower() assert "standard input" in lower or "stdin" in lower assert "standard output" in lower or "stdout" in lower === END AC cli-documentation-content ===

=== AC cli-documentation-verification ===
Intent: README.md documents the required complete-suite invocation.

from pathlib import Path

text = Path("README.md").read_text(encoding="utf-8") assert "sh full_test.sh" in text === END AC cli-documentation-verification ===

User Acceptance

Guardrails