Claude Code Specs Generator banner
kellemar kellemar

Claude Code Specs Generator

AI community intermediate

Description

A documentation and context management system for AI-assisted development, inspired by Amazon's Kiro IDE. This tool generates structured specification documents that dramatically improve Claude Code's understanding of your project, leading to more accurate code suggestions and better architectural d

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude Code Specs Generator

A documentation and context management system for AI-assisted development, inspired by Amazon's Kiro IDE. This tool generates structured specification documents that dramatically improve Claude Code's understanding of your project, leading to more accurate code suggestions and better architectural decisions.

Overview

Claude Code Specs Generator creates a systematic approach to project documentation by generating **6 essential documents** that guide AI assistants in understanding your codebase:

Steering Documents (`.claude/steering/`)

  • product.md - Product vision, target users, features, and business goals
  • tech.md - Approved technology stack, libraries, and technical constraints
  • structure.md - Code organization patterns, folder layout, and naming conventions

Specification Documents (`specs/`)

  • design.md - Technical architecture and implementation details
  • requirements.md - User stories and acceptance criteria
  • tasks.md - Current development tasks and priorities

The system automatically updates your `CLAUDE.md` file to reference these documents, ensuring they're loaded into Claude's context for every interaction.

Benefits

  • Enhanced Code Quality: AI suggestions align with your approved tech stack and architectural patterns
  • Consistent Development: New features follow established conventions and product vision
  • Better Context Awareness: Claude understands your business domain and technical constraints
  • Faster Onboarding: New team members get comprehensive project understanding
  • Maintainable Documentation: Structured approach keeps docs up-to-date with codebase

Commands

`/specs-create` - Initial Setup

Creates the complete specs structure from scratch by analyzing your codebase.

**What it does:**

  1. Analyzes project architecture, tech stack, and existing documentation
  2. Generates all 6 specification documents

...