Prime banner
yzyydev yzyydev

Prime

Documentation community intermediate

Description

A modern project structure optimized for efficient AI-assisted development using Claude Code and OpenAI Codex.

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

AI assisted development Structure

A modern project structure optimized for efficient AI-assisted development using Claude Code and OpenAI Codex.

Overview

This repository provides a standardized structure for AI-enhanced software development workflows. Rather than directly inputting commands, documentation, and feature requests into the CLI of Claude Code or OpenAI Codex, this structure offers a more organized, version-controlled, and collaborative approach to working with AI coding assistants.

Directory Structure

ai_assisted_development_structure/
├── .claude/
│   ├── agents/         # Custom subagent definitions for Claude Code
│   │   ├── api-documenter.md
│   │   └── prd-drafter.md
│   └── commands/       # Custom Claude Code command definitions
│       ├── COMMANDS.md # Documentation for commands system
│       └── prime.md    # Context initialization command
├── ai_docs/            # AI-specific documentation
│   ├── AI_DOCS.md      # Documentation for AI docs system
│   ├── claude_thinking.md
│   └── openai_reasoning_models.md
├── specs/              # Feature specifications
│   ├── SPECS.md        # Documentation for specs system
│   └── openai_reasoning.md
└── README.md

Key Components

1. Claude Commands (`.claude/commands/`)

Custom reusable commands that streamline interactions with Claude Code:

  • Project Context Initialization: The prime.md command quickly primes Claude with project structure and important documentation
  • Standardized Workflows: Create commands for code generation, testing, analysis, and more
  • Invocation Syntax: Use /project:command_name to execute commands

2. Claude Subagents (`.claude/agents/`)

Specialized AI assistants that operate in separate context windows for task-specific workflows:

  • Context Preservation: Each subagent maintains its own context window, preventing quality degradation in complex multi-stage tasks

...