TML Hygiene
Run this skill after a mapping session and before sharing outputs with stakeholders.
The goal is not to rewrite everything. The goal is to catch drift, contradictions, weak provenance, and vague recommendations while fixes are still cheap.
When To Use
- After
tml-capture completes
- Before sending outputs to a manager, DPM, or external partner
- During repo review, acceptance testing, and pilot rollouts
Inputs
Provide:
- The Map
- The Inferences
- The Changelog
- The So What
- Optional Agent Brief
If any artifact is missing, flag it as a blocker.
Checks
1. Artifact Completeness
Confirm all required sections are present and non-empty.
- Source registry exists (Source 1, Source 2, ...).
- Map has: scope summary, what we do, who is involved, rules, connectors/bindings, provenance section.
- Inferences has: stated vs inferred breakdown and confidence.
- Changelog has: source references and status per major element.
- So What has: visibility gaps, friction points, coherence risks, quick wins, AI leverage points, single recommended starting point.
2. Cross-Artifact Consistency
Find contradictions between documents.
- Names match across artifacts for scope/domains/capabilities.
- Policies in map match policy references in inferences/changelog.
- So What findings point to elements that actually exist in the map.
- Agent Brief permissions match map policies and archetypes.
3. Provenance Quality
Check whether claims trace to a source.
- Every artifact references source ids from the registry.
- Every major map element has a source path in changelog.
- Inference claims distinguish stated vs inferred.
- Low-confidence items are explicit and reviewable.
- No unsupported “fact” appears without a source or inference label.
4. Actionability
Reject generic recommendations.
- Quick wins include a concrete action, estimated effort, and expected impact.
- AI leverage points define operating archetype, policies, read/write boundaries, and explicit cannot-do constraints.
- Recommended starting point is singular, specific, and feasible this week.
5. Language Hygiene
Ensure outputs are clear for non-technical stakeholders.
- Plain language, short sentences, minimal jargon.
- No vague filler (“optimize,” “enhance,” “leverage synergies”) without specifics.
- Uncertainty is explicit, not hidden.
Output
Return one hygiene report:
# Hygiene Report: [Scope Name]
## Status
- PASS | PASS WITH FIXES | BLOCKED
## Findings
1. [Severity: High/Med/Low] [Issue]
- Where: [artifact + section]
- Why it matters: [impact]
- Fix: [specific edit]
## Missing Inputs
- [any missing artifacts]
## Fast Fixes (Do Now)
1. [highest impact quick fix]
2. [next fix]
3. [next fix]
## Ready To Share
- Yes/No
- If no, what remains:
- [list]
Rules
- Be direct and concrete.
- Do not invent missing facts; request correction.
- Prioritize trust issues first (provenance, contradictions, permissions).
- Keep final recommendations implementation-ready.
v1.0 — quality gate for release readiness and stakeholder confidence.
1---2name: tml-hygiene3description: Quality-control pass for TML outputs. Reviews Map, Inferences, Changelog, So What, and optional Agent Brief for consistency, provenance completeness, ambiguity, and actionability before sharing. Part of the TML capture pipeline — runs last, after tml-so-what. Final gate before sharing with stakeholders.4license: MIT5---67# TML Hygiene89Run this skill after a mapping session and before sharing outputs with stakeholders.1011The goal is not to rewrite everything. The goal is to catch drift, contradictions, weak provenance, and vague recommendations while fixes are still cheap.1213## When To Use1415- After `tml-capture` completes16- Before sending outputs to a manager, DPM, or external partner17- During repo review, acceptance testing, and pilot rollouts1819## Inputs2021Provide:2223- The Map24- The Inferences25- The Changelog26- The So What27- Optional Agent Brief2829If any artifact is missing, flag it as a blocker.3031## Checks3233### 1. Artifact Completeness3435Confirm all required sections are present and non-empty.3637- Source registry exists (Source 1, Source 2, ...).38- Map has: scope summary, what we do, who is involved, rules, connectors/bindings, provenance section.39- Inferences has: stated vs inferred breakdown and confidence.40- Changelog has: source references and status per major element.41- So What has: visibility gaps, friction points, coherence risks, quick wins, AI leverage points, single recommended starting point.4243### 2. Cross-Artifact Consistency4445Find contradictions between documents.4647- Names match across artifacts for scope/domains/capabilities.48- Policies in map match policy references in inferences/changelog.49- So What findings point to elements that actually exist in the map.50- Agent Brief permissions match map policies and archetypes.5152### 3. Provenance Quality5354Check whether claims trace to a source.5556- Every artifact references source ids from the registry.57- Every major map element has a source path in changelog.58- Inference claims distinguish stated vs inferred.59- Low-confidence items are explicit and reviewable.60- No unsupported “fact” appears without a source or inference label.6162### 4. Actionability6364Reject generic recommendations.6566- Quick wins include a concrete action, estimated effort, and expected impact.67- AI leverage points define operating archetype, policies, read/write boundaries, and explicit cannot-do constraints.68- Recommended starting point is singular, specific, and feasible this week.6970### 5. Language Hygiene7172Ensure outputs are clear for non-technical stakeholders.7374- Plain language, short sentences, minimal jargon.75- No vague filler (“optimize,” “enhance,” “leverage synergies”) without specifics.76- Uncertainty is explicit, not hidden.7778## Output7980Return one hygiene report:8182```markdown83# Hygiene Report: [Scope Name]8485## Status86- PASS | PASS WITH FIXES | BLOCKED8788## Findings891. [Severity: High/Med/Low] [Issue]90 - Where: [artifact + section]91 - Why it matters: [impact]92 - Fix: [specific edit]9394## Missing Inputs95- [any missing artifacts]9697## Fast Fixes (Do Now)981. [highest impact quick fix]992. [next fix]1003. [next fix]101102## Ready To Share103- Yes/No104- If no, what remains:105 - [list]106```107108## Rules1091101. Be direct and concrete.1112. Do not invent missing facts; request correction.1123. Prioritize trust issues first (provenance, contradictions, permissions).1134. Keep final recommendations implementation-ready.114115---116117*v1.0 — quality gate for release readiness and stakeholder confidence.*