microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
940773c7065ca3c06217d8ebda68b40571cd73f3

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/config/footer-with-review.yml

68lines · modecode

1# Footer text configurations for AI-generated artifacts
2# Referenced by instruction files and validated by CI
3#
4# Defines the Tier 1 AI-content note, human review checkbox, and artifact
5# classification rules. The validation script (Validate-PlannerArtifacts.ps1)
6# reads this file as the single source of truth for footer requirements.
7
8version: "1.0"
9
10footers:
11 ai-content-note:
12 id: tier1-ai-content-note
13 label: "AI-Content Note (Tier 1)"
14 text: >-
15 > **Note** — The author created this content with assistance from AI.
16 All outputs should be reviewed and validated by a qualified human reviewer before use.
17
18 human-review-checkbox:
19 id: human-review-checkbox
20 label: "Human Review Checkbox"
21 text: "> - [ ] Reviewed and validated by a qualified human reviewer"
22
23# Artifact names below correspond to generated planning output files
24# produced under .copilot-tracking/rai-plans/{project-slug}/ during RAI
25# planning sessions (e.g., control-surface-catalog.md, evidence-register.md).
26# They do NOT match the .github/instructions/rai-planning/*.instructions.md
27# basenames. To enforce footers in CI against generated artifacts, invoke
28# Validate-PlannerArtifacts.ps1 with -Paths '.copilot-tracking/rai-plans/<slug>'.
29# The default scan path (.github/instructions) returns 0 issues by design
30# because instruction files are templates, not generated artifacts.
31artifact-classification:
32 # Agentic artifacts: Tier 1 note only (no human review required)
33 agentic:
34 scope:
35 - .github/instructions/rai-planning/**
36 required-footers:
37 - ai-content-note
38 artifacts:
39 - control-surface-catalog
40 - evidence-register
41
42 # Human-facing artifacts: Tier 1 note + human review checkbox
43 human-facing:
44 scope:
45 - .github/instructions/rai-planning/**
46 required-footers:
47 - ai-content-note
48 - human-review-checkbox
49 artifacts:
50 - rai-tradeoffs
51 - ado-work-items
52 - github-issues
53 - rai-review-summary
54 - transparency-note
55 - monitoring-summary
56
57 # Human-facing with disclaimer: Tier 1 + checkbox + Tier 2 disclaimer
58 human-facing-with-disclaimer:
59 scope:
60 - .github/instructions/rai-planning/**
61 required-footers:
62 - ai-content-note
63 - human-review-checkbox
64 requires-disclaimer: true
65 disclaimer-ref: rai-full-disclaimer
66 artifacts:
67 - handoff-summary
68 - compact-handoff-summary
69