원클릭으로
validation
Runs validation checks and gating tasks to ensure artifacts meet strict-mode requirements and quality standards.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Runs validation checks and gating tasks to ensure artifacts meet strict-mode requirements and quality standards.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guides the creation and review of Architectural Decision Records (ADRs). Use this skill when a significant architectural change is proposed, a new technology is introduced, or a trade-off needs to be documented.
Intelligently routes requests to the correct context instructions and documentation files. Use this skill to determine which AGENT.md, guide, or technical instruction file is most relevant for a user's request.
Scaffold API mocking infrastructure using Mountebank and Testcontainers for reliable integration testing.
Manage full-stack observability using Logfire (logging/tracing) and OpenObserve (storage/visualization).
Interface for managing the Temporal Database and AI system (ReDB + GGUF embeddings).
Spec-Driven Development workflow using VibesPro conventions
| name | validation |
| description | Runs validation checks and gating tasks to ensure artifacts meet strict-mode requirements and quality standards. |
| metadata | {"id":"ce.skill.validation","tags":["validation","tasks"],"inputs":{"files":["ce.manifest.jsonc"],"concepts":["strict-mode"],"tools":["toolset:exec"]},"outputs":{"artifacts":["ce.task.validate"],"files":[],"actions":["run-task"]},"dependsOn":{"artifacts":["ce.task.validate"],"files":[".vscode/tasks.json"]},"related":{"artifacts":["ce.doc.manifest-schema"],"files":[]}} |
Use this skill to run quality gates and structural checks across the kit. It ensures that all artifacts comply with the manifest schema, naming conventions and dependency rules.
Load the manifest. Read ce.manifest.jsonc and strip JSONC comments. Confirm it
contains required top‑level fields (version, mode, artifacts).
Run the validation script. Invoke the Context Kit: Validate task defined in
.vscode/tasks.json, which runs the Python script
.github/skills/validation/scripts/validate_manifest.py. This script checks id uniqueness,
tag validity, file existence and dependency closure. Review its output for errors.
Report results. Summarise whether the manifest passed validation. If errors are detected, provide the file and line numbers if possible and suggest how to fix the issues (e.g. add missing files, correct tag typos, register new artifacts).
Repeat after changes. When adding or modifying artifacts, always run this skill before merging changes to ensure the repository remains consistent and free from technical debt.
By automating validation, this skill enforces strict mode and reduces the risk of subtle misconfigurations.