SAP Skills Creator
Procedural guidance for producing high-quality SAP-related Agent Skills. The
skill turns real engineering knowledge into a scoped, secure, validated
skill folder — never a vague SAP encyclopedia.
Purpose
Take verified project knowledge (a runbook, a completed task, code, an API
spec, review feedback) and produce a triggerable Agent Skill that:
- Solves one coherent, repeatable SAP-related task.
- States exactly when it should activate.
- Uses procedures instead of vague declarations.
- Handles credentials, TLS, destructive operations, and reporting safely.
- Passes structural and security validation before review.
When to Use
Activate this skill when any of the following is true:
- A team wants to package a completed SAP engineering task as a reusable
skill.
- An existing skill is too large, vague, insecure, or hard to trigger.
- A skill folder needs an independent structural, security, and trigger
audit.
- A new skill must be integrated into a multi-skill repository with a
catalog, license, and security policy.
- A skill must be prepared for SAP AI Skills Library registration.
When Not to Use
Do not activate this skill for:
- Writing generic SAP tutorials or encyclopedic product overviews.
- Fixing a single defect in the target SAP codebase.
- Running SAP operations directly against a live system.
- Publishing, tagging, or registering a skill automatically.
- Producing prebuilt executables.
- Replacing domain expertise that has not been verified.
Core Principles
- Start from real expertise. Reject vague prompts such as "create a
complete skill about all of SAP BTP." Narrow the scope before writing.
- Design a coherent unit. One responsibility, clear inputs, clear
outputs, clear activation, composable with other skills.
- Prefer procedures. Replace vague declarations ("follow best
practices") with sequences, defaults, decision criteria, and stop
conditions.
- Use progressive disclosure. Keep
SKILL.md focused, move detail to
references/, put templates in assets/, put deterministic operations
in scripts/.
- Match control to risk. Higher-risk operations require preconditions,
dry-run, human authorization, and explicit reporting.
- Never invent SAP APIs. Do not fabricate endpoints, authorization
objects, CDS entities, BTP service plans, destination properties, ADT
commands, CAP APIs, Fiori annotations, or Integration Suite
capabilities.
- Public releases require sanitization. Remove customer data, real
hostnames, secrets, and proprietary code before public distribution.
Load references/skill-design.md for the
detailed design framework.
Operating Modes
Choose an explicit mode at the start of the workflow. Do not switch modes
silently.
| Mode |
Trigger |
Output |
| Create |
No skill exists yet |
New skills/<slug>/ folder + validation report |
| Refactor |
A skill exists but is oversized, vague, insecure, or poorly organized |
Reorganized skill + change report |
| Audit |
A skill exists and only a review is requested |
Findings report; no file writes |
| Repository integration |
A skill must be wired into a multi-skill repository |
Updated catalog, tests, and repository files |
| Submission preparation |
A skill will be registered with the SAP AI Skills Library |
Registration payload draft; no submission |
Mode-specific rules live in
references/skill-design.md and
references/repository-integration.md.
Required Inputs
Before generating anything, capture or infer:
- Skill objective and target users.
- Target agents or clients.
- SAP product or technology in scope.
- The repeatable workflow (inputs, steps, outputs).
- Positive and negative activation triggers.
- Required tools, credentials, and network access.
- Read, write, and destructive operations.
- Expected failure modes.
- Source materials (task history, runbook, code, docs, spec).
- Distribution target (internal team or public).
- Repository target and license.
- Validation approach.
When the source materials answer these, inspect them first. Ask the user
only about gaps that block a safe design. Priority order is:
- Objective and workflow.
- Source expertise.
- Risk and credentials.
- Inputs and outputs.
- Distribution target.
- Validation.
The full interview protocol is in
references/discovery-and-scoping.md.
Workflow
Execute the phases in order. Do not skip a phase, and do not merge phases
just because the user asked for speed.
Discover → Scope → Research → Design → Generate → Security review →
Validate → Evaluate → Integrate → Prepare submission
Phase 1: Discover the Source Expertise
Load references/discovery-and-scoping.md.
- Identify the concrete source of expertise: completed task, runbook,
code, API doc, review notes, incident log.
- Confirm the workflow is repeatable and not a one-off fix.
- Extract the actual steps that were taken, the tools used, and the
decisions that mattered.
- List the failure modes that were encountered or are known.
Stop and clarify when there is no verified source of expertise. Generic
LLM knowledge alone is not a valid source.
Phase 2: Scope the Skill
Write one problem statement:
This skill helps <target user or agent> perform <repeatable task> in
<context>, especially when <trigger condition>.
Draft the proposed skill slug (lowercase, hyphenated, ≤ 64 characters).
Fill in the requirements template
(assets/skill-requirements-template.md)
with the captured inputs.
Reject the scope when it is too broad ("all of SAP BTP"), too narrow
("fix this one error"), or overlaps with an existing skill without
reason.
Phase 3: Research and Verify
Load references/sap-domain-research.md.
- Prefer official SAP sources for technical facts: SAP Help Portal, SAP
Developers, SAP GitHub organisations, official API documentation, and
release notes.
- Distinguish official product behaviour, community convention, repository
convention, and inference.
- Record any version-sensitive assumptions.
- Do not invent SAP endpoints, authorization objects, CDS entities, BTP
service plans, destination properties, ADT commands, CAP APIs, Fiori
annotations, or Integration Suite capabilities.
- Stop and report unresolved conflicts between sources.
Phase 4: Design the Skill
Load references/skill-design.md.
- Decide the responsibility boundary. One skill, one job.
- Choose the operating modes the skill itself will expose (for example
"read-only inspect" versus "write and activate").
- Draft decision trees for the main branches of the workflow.
- Choose defaults instead of listing many equivalent alternatives.
- Design an explicit output contract: what the agent will report at the
end of a successful run and after each stop condition.
- Classify the skill by risk. Load
references/security-review.md for the
risk taxonomy.
Phase 5: Generate the Skill Package
Load references/progressive-disclosure.md
and references/frontmatter-and-triggering.md.
Create the directory:
skills/<slug>/
├── SKILL.md
├── README.md
├── references/
├── assets/
└── scripts/
Write frontmatter first. Required fields:
---
name: <slug>
description: >-
<capability>. Use when <activation conditions>. Do not use for
<important exclusions>.
license: <license>
compatibility: <runtime prerequisites>
metadata:
author: <name>
version: "<version>"
category: <category>
repository: <owner/repo>
---
Keep SKILL.md focused. Target 300–450 lines. Hard limit 500 lines.
Move detailed technical documentation, command catalogues, and long
procedures into focused reference files under references/.
Put reusable templates and static resources in assets/.
Put deterministic operations (validators, formatters, parsers) in
scripts/. Load
references/scripts-and-resources.md
before adding any script.
Use relative links from the skill root. Avoid deeply nested reference
chains.
Phase 6: Security Review
Load references/security-review.md.
Walk the skill through every category:
- Credentials and secrets.
- Network behaviour.
- Filesystem behaviour.
- Shell and subprocess behaviour.
- SAP-specific operational risks.
- Dependency and supply-chain review.
- Public-release review.
Reject the skill until each finding is either fixed or explicitly
documented as accepted risk.
Phase 7: Validate
Load references/validation-and-evaluation.md.
Run the validator against the target skill:
python .\skills\sap-skills-creator\scripts\validate_skill.py `
.\skills\<slug> `
--repository-root .
The validator checks structure, frontmatter, size, links, and security
heuristics. Read the human-readable output first, then rerun with --json
if a machine-readable payload is needed:
python .\skills\sap-skills-creator\scripts\validate_skill.py `
.\skills\<slug> `
--repository-root . `
--json
Exit codes:
0 — valid, no failures.
1 — validation failures.
2 — invalid invocation or internal error.
Treat every FAIL as blocking. Triage each WARN explicitly: fix, or
document the reason it is intentional.
Phase 8: Evaluate Against Real Tasks
Load references/validation-and-evaluation.md.
Structural validation does not prove the skill activates correctly. Run a
behavioural evaluation:
- Craft at least three positive trigger prompts derived from real user
intents.
- Craft at least three negative trigger prompts (topics the skill should
ignore).
- Run each prompt through the AI client that will consume the skill.
- Assess: trigger precision, instruction adherence, tool selection,
safety behaviour, output correctness, failure reporting, and context
efficiency.
- Revise the description, structure, or references until the prompts
activate the skill for positive cases and leave it dormant for negative
cases.
At least one execute-review-revise cycle is mandatory. Record the results
in assets/skill-review-report-template.md.
Phase 9: Integrate Into the Repository
Load references/repository-integration.md.
Confirm the skill lives at skills/<slug>/SKILL.md.
Update the root README.md skill catalog with a concise row.
Confirm the repository has a root LICENSE, SECURITY.md, and
CONTRIBUTING.md where the convention requires them.
Add unit tests for any script under tests/.
Run local discovery to confirm the skill can be found:
npx skills add . --list
Do not commit, push, tag, publish, or open GitHub issues.
Phase 10: Prepare Submission
Load references/sap-library-submission.md.
For SAP AI Skills Library preparation:
- Fill in
assets/sap-library-submission-template.md.
- Verify the repository is public and the skill discovery command
succeeds against the public URL.
- Draft the registration issue body without submitting it.
- Hand the draft to a maintainer for review.
Do not submit the registration form. Do not claim SAP approval, SAP
certification, or SAP endorsement.
Output Contract
At the end of a successful run, report:
- Mode used (Create, Refactor, Audit, Repository integration, Submission
preparation).
- Skill slug and directory.
- Files created, modified, or removed with paths.
- Root files touched (typically
README.md).
- Frontmatter summary (name, description length, compatibility length,
metadata keys).
- Validator result summary (
PASS / WARN / FAIL counts).
- Behavioural evaluation summary (positive prompts, negative prompts,
activation results).
- Outstanding blockers, warnings, and informational findings, kept
separate.
- Suggested but unexecuted next steps (commit, submission, etc.).
Use assets/skill-review-report-template.md
for structured reports.
Failure and Stop Conditions
Stop the workflow and report when:
- The user cannot produce a verified source of expertise.
- The scope stays broader than one coherent unit after clarification.
- The validator returns
FAIL and the cause is not immediately fixable.
- A finding classified as Critical in the review report is
unresolved.
- The user asks the skill to invent SAP APIs, publish automatically, or
bypass human authorization for destructive operations.
- The user requests inclusion of secrets, real customer hostnames, or
proprietary source code in a public skill without sanitization and
authorization.
Never claim a skill is ready, secure, SAP-certified, or SAP-approved on
behalf of any project or organization.
Bundled Resources
references/discovery-and-scoping.md
references/skill-design.md
references/frontmatter-and-triggering.md
references/progressive-disclosure.md
references/sap-domain-research.md
references/security-review.md
references/scripts-and-resources.md
references/validation-and-evaluation.md
references/repository-integration.md
references/sap-library-submission.md
references/review-checklists.md
assets/skill-requirements-template.md
assets/skill-review-report-template.md
assets/sap-library-submission-template.md
scripts/validate_skill.py
Completion Checklist
Before reporting a skill complete, verify:
1---2name: sap-skills-creator3description: Creates, refactors, audits, and validates SAP-related Agent Skills from project knowledge, completed engineering tasks, runbooks, source code, or existing skill drafts. Use when a team needs a secure, well-scoped, triggerable skill that follows the Agent Skills specification, progressive disclosure, repository conventions, and SAP AI Skills Library readiness requirements. Do not use to write generic SAP tutorials, invent SAP APIs, or publish skills automatically.4license: Apache-2.05---67# SAP Skills Creator89Procedural guidance for producing high-quality SAP-related Agent Skills. The10skill turns real engineering knowledge into a scoped, secure, validated11skill folder — never a vague SAP encyclopedia.1213## Purpose1415Take verified project knowledge (a runbook, a completed task, code, an API16spec, review feedback) and produce a triggerable Agent Skill that:1718- Solves one coherent, repeatable SAP-related task.19- States exactly when it should activate.20- Uses procedures instead of vague declarations.21- Handles credentials, TLS, destructive operations, and reporting safely.22- Passes structural and security validation before review.2324## When to Use2526Activate this skill when any of the following is true:2728- A team wants to package a completed SAP engineering task as a reusable29 skill.30- An existing skill is too large, vague, insecure, or hard to trigger.31- A skill folder needs an independent structural, security, and trigger32 audit.33- A new skill must be integrated into a multi-skill repository with a34 catalog, license, and security policy.35- A skill must be prepared for SAP AI Skills Library registration.3637## When Not to Use3839Do not activate this skill for:4041- Writing generic SAP tutorials or encyclopedic product overviews.42- Fixing a single defect in the target SAP codebase.43- Running SAP operations directly against a live system.44- Publishing, tagging, or registering a skill automatically.45- Producing prebuilt executables.46- Replacing domain expertise that has not been verified.4748## Core Principles49501. **Start from real expertise.** Reject vague prompts such as "create a51 complete skill about all of SAP BTP." Narrow the scope before writing.522. **Design a coherent unit.** One responsibility, clear inputs, clear53 outputs, clear activation, composable with other skills.543. **Prefer procedures.** Replace vague declarations ("follow best55 practices") with sequences, defaults, decision criteria, and stop56 conditions.574. **Use progressive disclosure.** Keep `SKILL.md` focused, move detail to58 `references/`, put templates in `assets/`, put deterministic operations59 in `scripts/`.605. **Match control to risk.** Higher-risk operations require preconditions,61 dry-run, human authorization, and explicit reporting.626. **Never invent SAP APIs.** Do not fabricate endpoints, authorization63 objects, CDS entities, BTP service plans, destination properties, ADT64 commands, CAP APIs, Fiori annotations, or Integration Suite65 capabilities.667. **Public releases require sanitization.** Remove customer data, real67 hostnames, secrets, and proprietary code before public distribution.6869Load [references/skill-design.md](references/skill-design.md) for the70detailed design framework.7172## Operating Modes7374Choose an explicit mode at the start of the workflow. Do not switch modes75silently.7677| Mode | Trigger | Output |78|------|---------|--------|79| **Create** | No skill exists yet | New `skills/<slug>/` folder + validation report |80| **Refactor** | A skill exists but is oversized, vague, insecure, or poorly organized | Reorganized skill + change report |81| **Audit** | A skill exists and only a review is requested | Findings report; no file writes |82| **Repository integration** | A skill must be wired into a multi-skill repository | Updated catalog, tests, and repository files |83| **Submission preparation** | A skill will be registered with the SAP AI Skills Library | Registration payload draft; no submission |8485Mode-specific rules live in86[references/skill-design.md](references/skill-design.md) and87[references/repository-integration.md](references/repository-integration.md).8889## Required Inputs9091Before generating anything, capture or infer:9293- Skill objective and target users.94- Target agents or clients.95- SAP product or technology in scope.96- The repeatable workflow (inputs, steps, outputs).97- Positive and negative activation triggers.98- Required tools, credentials, and network access.99- Read, write, and destructive operations.100- Expected failure modes.101- Source materials (task history, runbook, code, docs, spec).102- Distribution target (internal team or public).103- Repository target and license.104- Validation approach.105106When the source materials answer these, inspect them first. Ask the user107only about gaps that block a safe design. Priority order is:1081091. Objective and workflow.1102. Source expertise.1113. Risk and credentials.1124. Inputs and outputs.1135. Distribution target.1146. Validation.115116The full interview protocol is in117[references/discovery-and-scoping.md](references/discovery-and-scoping.md).118119## Workflow120121Execute the phases in order. Do not skip a phase, and do not merge phases122just because the user asked for speed.123124```text125Discover → Scope → Research → Design → Generate → Security review →126Validate → Evaluate → Integrate → Prepare submission127```128129## Phase 1: Discover the Source Expertise130131Load [references/discovery-and-scoping.md](references/discovery-and-scoping.md).1321331. Identify the concrete source of expertise: completed task, runbook,134 code, API doc, review notes, incident log.1352. Confirm the workflow is repeatable and not a one-off fix.1363. Extract the actual steps that were taken, the tools used, and the137 decisions that mattered.1384. List the failure modes that were encountered or are known.139140Stop and clarify when there is no verified source of expertise. Generic141LLM knowledge alone is not a valid source.142143## Phase 2: Scope the Skill1441451. Write one problem statement:146147 ```text148 This skill helps <target user or agent> perform <repeatable task> in149 <context>, especially when <trigger condition>.150 ```1511522. Draft the proposed skill slug (lowercase, hyphenated, ≤ 64 characters).1533. Fill in the requirements template154 ([assets/skill-requirements-template.md](assets/skill-requirements-template.md))155 with the captured inputs.1564. Reject the scope when it is too broad ("all of SAP BTP"), too narrow157 ("fix this one error"), or overlaps with an existing skill without158 reason.159160## Phase 3: Research and Verify161162Load [references/sap-domain-research.md](references/sap-domain-research.md).1631641. Prefer official SAP sources for technical facts: SAP Help Portal, SAP165 Developers, SAP GitHub organisations, official API documentation, and166 release notes.1672. Distinguish official product behaviour, community convention, repository168 convention, and inference.1693. Record any version-sensitive assumptions.1704. Do not invent SAP endpoints, authorization objects, CDS entities, BTP171 service plans, destination properties, ADT commands, CAP APIs, Fiori172 annotations, or Integration Suite capabilities.1735. Stop and report unresolved conflicts between sources.174175## Phase 4: Design the Skill176177Load [references/skill-design.md](references/skill-design.md).1781791. Decide the responsibility boundary. One skill, one job.1802. Choose the operating modes the skill itself will expose (for example181 "read-only inspect" versus "write and activate").1823. Draft decision trees for the main branches of the workflow.1834. Choose defaults instead of listing many equivalent alternatives.1845. Design an explicit output contract: what the agent will report at the185 end of a successful run and after each stop condition.1866. Classify the skill by risk. Load187 [references/security-review.md](references/security-review.md) for the188 risk taxonomy.189190## Phase 5: Generate the Skill Package191192Load [references/progressive-disclosure.md](references/progressive-disclosure.md)193and [references/frontmatter-and-triggering.md](references/frontmatter-and-triggering.md).1941951. Create the directory:196197 ```text198 skills/<slug>/199 ├── SKILL.md200 ├── README.md201 ├── references/202 ├── assets/203 └── scripts/204 ```2052062. Write frontmatter first. Required fields:207208 ```yaml209 ---210 name: <slug>211 description: >-212 <capability>. Use when <activation conditions>. Do not use for213 <important exclusions>.214 license: <license>215 compatibility: <runtime prerequisites>216 metadata:217 author: <name>218 version: "<version>"219 category: <category>220 repository: <owner/repo>221 ---222 ```2232243. Keep `SKILL.md` focused. Target 300–450 lines. Hard limit 500 lines.2254. Move detailed technical documentation, command catalogues, and long226 procedures into focused reference files under `references/`.2275. Put reusable templates and static resources in `assets/`.2286. Put deterministic operations (validators, formatters, parsers) in229 `scripts/`. Load230 [references/scripts-and-resources.md](references/scripts-and-resources.md)231 before adding any script.2327. Use relative links from the skill root. Avoid deeply nested reference233 chains.234235## Phase 6: Security Review236237Load [references/security-review.md](references/security-review.md).238239Walk the skill through every category:240241- Credentials and secrets.242- Network behaviour.243- Filesystem behaviour.244- Shell and subprocess behaviour.245- SAP-specific operational risks.246- Dependency and supply-chain review.247- Public-release review.248249Reject the skill until each finding is either fixed or explicitly250documented as accepted risk.251252## Phase 7: Validate253254Load [references/validation-and-evaluation.md](references/validation-and-evaluation.md).255256Run the validator against the target skill:257258```powershell259python .\skills\sap-skills-creator\scripts\validate_skill.py `260 .\skills\<slug> `261 --repository-root .262```263264The validator checks structure, frontmatter, size, links, and security265heuristics. Read the human-readable output first, then rerun with `--json`266if a machine-readable payload is needed:267268```powershell269python .\skills\sap-skills-creator\scripts\validate_skill.py `270 .\skills\<slug> `271 --repository-root . `272 --json273```274275Exit codes:276277- `0` — valid, no failures.278- `1` — validation failures.279- `2` — invalid invocation or internal error.280281Treat every `FAIL` as blocking. Triage each `WARN` explicitly: fix, or282document the reason it is intentional.283284## Phase 8: Evaluate Against Real Tasks285286Load [references/validation-and-evaluation.md](references/validation-and-evaluation.md).287288Structural validation does not prove the skill activates correctly. Run a289behavioural evaluation:2902911. Craft at least three positive trigger prompts derived from real user292 intents.2932. Craft at least three negative trigger prompts (topics the skill should294 ignore).2953. Run each prompt through the AI client that will consume the skill.2964. Assess: trigger precision, instruction adherence, tool selection,297 safety behaviour, output correctness, failure reporting, and context298 efficiency.2995. Revise the description, structure, or references until the prompts300 activate the skill for positive cases and leave it dormant for negative301 cases.302303At least one execute-review-revise cycle is mandatory. Record the results304in [assets/skill-review-report-template.md](assets/skill-review-report-template.md).305306## Phase 9: Integrate Into the Repository307308Load [references/repository-integration.md](references/repository-integration.md).3093101. Confirm the skill lives at `skills/<slug>/SKILL.md`.3112. Update the root `README.md` skill catalog with a concise row.3123. Confirm the repository has a root `LICENSE`, `SECURITY.md`, and313 `CONTRIBUTING.md` where the convention requires them.3144. Add unit tests for any script under `tests/`.3155. Run local discovery to confirm the skill can be found:316317 ```powershell318 npx skills add . --list319 ```3203216. Do not commit, push, tag, publish, or open GitHub issues.322323## Phase 10: Prepare Submission324325Load [references/sap-library-submission.md](references/sap-library-submission.md).326327For SAP AI Skills Library preparation:3283291. Fill in330 [assets/sap-library-submission-template.md](assets/sap-library-submission-template.md).3312. Verify the repository is public and the skill discovery command332 succeeds against the public URL.3333. Draft the registration issue body without submitting it.3344. Hand the draft to a maintainer for review.335336Do not submit the registration form. Do not claim SAP approval, SAP337certification, or SAP endorsement.338339## Output Contract340341At the end of a successful run, report:342343- Mode used (Create, Refactor, Audit, Repository integration, Submission344 preparation).345- Skill slug and directory.346- Files created, modified, or removed with paths.347- Root files touched (typically `README.md`).348- Frontmatter summary (name, description length, compatibility length,349 metadata keys).350- Validator result summary (`PASS` / `WARN` / `FAIL` counts).351- Behavioural evaluation summary (positive prompts, negative prompts,352 activation results).353- Outstanding blockers, warnings, and informational findings, kept354 separate.355- Suggested but unexecuted next steps (commit, submission, etc.).356357Use [assets/skill-review-report-template.md](assets/skill-review-report-template.md)358for structured reports.359360## Failure and Stop Conditions361362Stop the workflow and report when:363364- The user cannot produce a verified source of expertise.365- The scope stays broader than one coherent unit after clarification.366- The validator returns `FAIL` and the cause is not immediately fixable.367- A finding classified as **Critical** in the review report is368 unresolved.369- The user asks the skill to invent SAP APIs, publish automatically, or370 bypass human authorization for destructive operations.371- The user requests inclusion of secrets, real customer hostnames, or372 proprietary source code in a public skill without sanitization and373 authorization.374375Never claim a skill is ready, secure, SAP-certified, or SAP-approved on376behalf of any project or organization.377378## Bundled Resources379380- [`references/discovery-and-scoping.md`](references/discovery-and-scoping.md)381- [`references/skill-design.md`](references/skill-design.md)382- [`references/frontmatter-and-triggering.md`](references/frontmatter-and-triggering.md)383- [`references/progressive-disclosure.md`](references/progressive-disclosure.md)384- [`references/sap-domain-research.md`](references/sap-domain-research.md)385- [`references/security-review.md`](references/security-review.md)386- [`references/scripts-and-resources.md`](references/scripts-and-resources.md)387- [`references/validation-and-evaluation.md`](references/validation-and-evaluation.md)388- [`references/repository-integration.md`](references/repository-integration.md)389- [`references/sap-library-submission.md`](references/sap-library-submission.md)390- [`references/review-checklists.md`](references/review-checklists.md)391- [`assets/skill-requirements-template.md`](assets/skill-requirements-template.md)392- [`assets/skill-review-report-template.md`](assets/skill-review-report-template.md)393- [`assets/sap-library-submission-template.md`](assets/sap-library-submission-template.md)394- [`scripts/validate_skill.py`](scripts/validate_skill.py)395396## Completion Checklist397398Before reporting a skill complete, verify:399400- [ ] Mode used is explicit in the report.401- [ ] `SKILL.md` frontmatter passes structural validation.402- [ ] `SKILL.md` is between 300 and 450 lines (hard limit 500).403- [ ] Every referenced file exists and is linked from `SKILL.md` or from404 another linked file.405- [ ] The security review categories were walked and the findings are406 recorded.407- [ ] The validator was executed and its report was retained.408- [ ] At least one execute-review-revise behavioural evaluation cycle was409 completed.410- [ ] Root repository files were updated only where necessary.411- [ ] No secrets, customer data, or proprietary code were introduced.412- [ ] No commit, push, tag, publish, or issue creation was performed413 automatically.