# configuration/strings/contract.strings.ts

> 25 lines of code and 13 definitions.

Tree: Build tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/build#file-build-configuration-strings-contract-strings-ts
Source text: https://banes-lab.com/assets/sources/source.0255bb37923cba1ee764134e445435d7eaeab6bc5cf724f996e1acca2f0fbaa7.generated.txt

## Definitions

- `INVENTORY_SUMMARY` (lexical_declaration, line 1, exported)
- `SEED_SUMMARY` (lexical_declaration, line 4, exported)
- `TONE_SUMMARY` (lexical_declaration, line 7, exported)
- `LEAK_SUMMARY` (lexical_declaration, line 10, exported)
- `DERIVE_DESCRIBE` (lexical_declaration, line 13, exported)
- `LINK_SUMMARY` (lexical_declaration, line 16, exported)
- `LINK_DERIVE_DESCRIBE` (lexical_declaration, line 19, exported)
- `WRITING_SUMMARY` (lexical_declaration, line 21, exported)
- `COORDINATION_SUMMARY` (lexical_declaration, line 24, exported)
- `COVERAGE_SUMMARY` (lexical_declaration, line 27, exported)
- `CHAPTER_SUMMARY` (lexical_declaration, line 30, exported)
- `OUT_DESCRIBE` (lexical_declaration, line 33, exported)
- `SHAPE_DESCRIBE` (lexical_declaration, line 36, exported)

## Source

```typescript
export const INVENTORY_SUMMARY =
    "Derives the rule inventory from every governing document that carries one-line rules and writes it to the content reports folder.";

export const SEED_SUMMARY =
    "Derives the lesson seeds from the algorithm face's meta records, the coordination models' invariants and the operator profile's principles, and writes them beside the rule inventory.";

export const TONE_SUMMARY =
    "Measures the tone metrics of every strings module in the application member and writes the baseline as JSON and as a generated document.";

export const LEAK_SUMMARY =
    "Validates every built page payload that declares a content graph against the leak set, or derives the leak set when the derive flag is given.";

export const DERIVE_DESCRIBE =
    "derive the leak set from the inventory, the seeds and the workspace declarations instead of validating";

export const LINK_SUMMARY =
    "Compares the links in every built page section with the baseline and reports each one that left its section, or takes a new baseline when the derive flag is given.";

export const LINK_DERIVE_DESCRIBE = "take a new link baseline from the built pages instead of comparing";

export const WRITING_SUMMARY =
    "Checks that every section on a page in the rewrite scope has a sign-off from the developer matching its current text, and counts the sections outside the scope that have not been read.";

export const COORDINATION_SUMMARY =
    "Checks the Coordination Surface package before it is published: no file names the host, and every surface an adopter fills ships empty.";

export const COVERAGE_SUMMARY =
    "Validates every declared content graph: each concept taught once, every requirement taught earlier, every trace resolving to the inventory or the seeds, every payload section declared.";

export const CHAPTER_SUMMARY =
    "Renders the repository surface from the built site: the composed README and the methodology chapters, or the wiki with one page per tab of every teaching page, into the output directory.";

export const OUT_DESCRIBE =
    "the directory the chapters are written into; defaults to the methodology checkout for the repository shape and to its wiki checkout for the wiki shape, where every Markdown file at the top level is owned by the render";

export const SHAPE_DESCRIBE =
    "the output shape: repository writes a README and one chapter per tab, wiki writes Home, one numbered page per tab, the sidebar and the footer; defaults to repository";
```
