.claude/skills/ac-spec-generator/SKILL.md
Generate feature lists from specifications. Use when creating feature_list.json, converting requirements to features, generating 50-100+ testable features, or initializing autonomous projects.
npx skillsauth add adaptationio/skrillz ac-spec-generatorInstall 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.
Generate comprehensive feature lists from project specifications.
Transforms parsed specifications into actionable feature lists with testable acceptance criteria, enabling autonomous implementation.
from scripts.spec_generator import SpecGenerator
generator = SpecGenerator(project_dir)
feature_list = await generator.generate(spec)
await generator.save_feature_list(feature_list)
{
"features": [
{
"id": "auth-001",
"description": "User can register with email and password",
"category": "authentication",
"status": "pending",
"passes": false,
"test_cases": [
"Valid registration creates user",
"Duplicate email shows error",
"Weak password rejected"
],
"dependencies": [],
"estimated_effort": "2h",
"priority": 1
}
],
"total": 50,
"completed": 0,
"metadata": {
"generated_at": "2024-01-15T10:00:00Z",
"spec_version": "1.0.0"
}
}
core: Essential functionalityauthentication: Login/register/permissionsdata: Models, storage, retrievalapi: Endpoints, integrationsui: User interface componentstesting: Test infrastructuredeployment: CI/CD, hostingac-spec-parserac-state-trackerac-complexity-assessor for estimatesSee scripts/spec_generator.py for full implementation.
development
Setup secure web-based terminal access to WSL2 from mobile/tablet via ttyd + ngrok/Cloudflare/Tailscale. One-command install, start, stop, status. Use when you need remote terminal access, web terminal, browser-based shell, or mobile access to WSL2 environment.
development
Complete development workflows where Claude writes the code while Gemini and Codex provide research, planning, reviews, and different perspectives. Claude remains the main developer. Use for complex projects requiring expert planning and multi-perspective reviews.
development
Systematic progress tracking for skill development. Manages task states (pending/in_progress/completed), updates in real-time, reports progress, identifies blockers, and maintains momentum. Use when tracking skill development, coordinating work, or reporting progress.
testing
Comprehensive testing workflow orchestrating functional testing, example validation, integration testing, and usability assessment. Sequential workflow for complete skill testing from examples through scenarios to integration validation. Use when conducting thorough testing, pre-deployment validation, ensuring skill functionality, or comprehensive quality checks.