34 lines
932 B
Markdown
34 lines
932 B
Markdown
# Registration And Validation
|
|
|
|
Use this path after skill edits.
|
|
|
|
## Repository checks
|
|
|
|
Run the checks required by the repository. In this project, skill changes normally require:
|
|
|
|
```bash
|
|
npm run chain
|
|
npm run catalog
|
|
```
|
|
|
|
Use stricter or specialized checks when the changed skill includes risky commands, external references, generated artifacts, or package/runtime behavior.
|
|
|
|
## Artifact checks
|
|
|
|
Confirm:
|
|
|
|
- `SKILL.md` frontmatter parses.
|
|
- Referenced files exist.
|
|
- Generated registry files are synced when the repository owns them on `main`.
|
|
- Credits and provenance are present when external sources are used.
|
|
- The final response reports validation honestly.
|
|
|
|
## Reject conditions
|
|
|
|
Do not mark the work complete if:
|
|
|
|
- Required references are missing.
|
|
- The skill cannot be followed without hidden context.
|
|
- A risky instruction lacks prerequisites.
|
|
- Validation failed and the failure is not explicitly accepted by the user.
|