skills/abejitsu/validate-requirements/SKILL.md
Validate that input meets prerequisites based on the user's saved standards for the project type. Use at the start of any quality pipeline to ensure the user has provided sufficient requirements.
npx skillsauth add aiskillstore/marketplace validate-requirementsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Ensures the user's input (requirements, description, source material) meets the prerequisites defined in their standards for this project type. This is the first gate in the quality pipeline.
Based on the user's saved standards for the project type, verify:
Completeness - Is there enough information?
Clarity - Is the description clear and specific?
Format - Is it in a recognizable format?
Sufficiency - Is there enough context?
Standards Alignment - Does it match their defined validation rules?
Access standards through StandardsRepository:
const standards = standardsRepository.getStandards(context.projectType)
if (standards && standards.validationRules) {
// Check input against their validation rules
checkAgainstRules(input, standards.validationRules)
} else {
// No custom standards yet, use general validation
performGeneralValidation(input)
}
See .claude/lib/standards-repository.md for interface details.
Return a structured validation result:
{
"status": "valid" or "invalid",
"issues": [
"list of specific problems found",
"e.g., 'Missing example code to refactor'",
"e.g., 'Unclear what success looks like'"
],
"validationDetails": {
"clarity": "pass" or "needs_clarification",
"completeness": "pass" or "incomplete",
"contextSufficient": "pass" or "needs_more_context"
},
"recommendation": "proceed_to_next_step" or "ask_user_to_clarify_X",
"summary": "Brief description of validation result"
}
✓ Status is "valid" ✓ No critical issues found ✓ Input aligns with their standards ✓ Enough information to proceed to generation
Project Type: React Components
User Input: "Create a dropdown component"
Validation Process:
{
"status": "invalid",
"issues": [
"Need more detail on component purpose (e.g., where will it be used?)",
"Should specify what props the dropdown needs",
"Should describe dropdown behavior (open/close, keyboard nav, etc.)"
],
"recommendation": "Ask user to provide more detail before generating"
}
User's Updated Input: "Create a searchable dropdown component for selecting team members. It should have keyboard navigation (arrow keys, enter to select). Props: options (array), onSelect (callback), placeholder (string)."
Validation Result:
{
"status": "valid",
"issues": [],
"summary": "Requirements are clear, specific, and complete"
}
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.