sdlc-validate-codes

Validates implemented features with build, lint, type, config, and review-only code-review checks.

7|5|Updated Jul 22, 2025
One-click install
npx skills add https://github.com/nebius/nebius-ps-services --skill sdlc-validate-codes-nebius
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sdlc-validate-codes
Source: https://github.com/nebius/nebius-ps-services/tree/main/skills/sdlc-validate-codes
Command: npx skills add https://github.com/nebius/nebius-ps-services --skill sdlc-validate-codes-nebius

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes assets (resource) components.

What problem does it solve? After a feature is implemented, teams need proof that the code builds, passes mechanical checks, stays inside the locked plan's end-to-end slice, and survives an implementation-quality review before deeper behavior tests begin. This Skill runs that validation gate inside the Agentic SDLC workflow and records auditable evidence. ## Core Features & Use Cases - Mechanical Validation: Runs project-native syntax, lint, type, import, dependency, config, and build checks using the project's own configured tooling. - Locked-Slice Boundary Check: Compares changed files and entry points against the locked plan's end-to-end slice and flags out-of-scope changes. - Review-Only Code Review Gate: Invokes code-review on the current feature diff without allowing it to edit source, and records its decision in validation evidence. - Use Case: After implementing a feature in an Agentic SDLC run, the coordinator invokes this Skill to run the project's checks, verify slice boundaries, record a code-review decision in evidence/FEAT-*/validate.md, and move the feature state to validated only when everything passes. ## Quick Start Ask the Agentic SDLC coordinator to run sdlc-validate-codes for the current feature so it executes the project's build, lint, type, and config checks plus a review-only code-review before marking the feature validated.

Frequently Asked Questions about sdlc-validate-codes

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate code after implementing a feature in an SDLC workflow?

Run this Skill through the Agentic SDLC coordinator after implementation completes. It executes the project's configured build, lint, type, import, and config checks, verifies the changed files stay inside the locked plan's slice, and records results in validation evidence.

What checks does a code validation phase run before behavior tests?

It runs syntax, linting, type checking when configured, Python import checks when relevant, configuration validation, and feasible build checks. After mechanical checks pass, it runs code-review in review-only mode on the feature diff.

Can I invoke sdlc-validate-codes directly as a standalone command?

No. The Skill requires verified workflow context from the active Agentic SDLC coordinator, including the selected project, active run, and phase. Without that evidence it returns without mutation, and it is hidden from the public command menu in Claude Code.

What happens when validation tooling is missing from the project?

Missing tooling is classified as an ENVIRONMENT_DEFECT rather than treated as success, unless the tooling was intentionally absent. The Skill never marks validation passed when required checks cannot run.

When should I not use this validation Skill?

Do not use it as a substitute for behavior tests or evaluation, to fix code directly, or for GitHub PR readiness. Repairs route back to implementation, test, or design phases, and PR review uses a separate review-pr Skill after PR creation.