docs: 초기 파일 추가 및 기본 설정 구성
- .git-commit-template.txt: 커밋 메시지 템플릿 추가 - .gitignore: OS 및 데이터베이스 관련 파일 무시 설정 추가 - .mcp.json: MCP 서버 설정 추가 - CLAUDE.md: SuperClaude 엔트리 포인트 문서 추가 - README.md: 프로젝트 템플릿 설명 추가 - .claude/COMMANDS.md: 명령어 실행 프레임워크 문서 추가 - .claude/FLAGS.md: 플래그 시스템 문서 추가 - .claude/MCP.md: MCP 서버 통합 문서 추가 - .claude/MODES.md: 운영 모드 문서 추가 - .claude/ORCHESTRATOR.md: 지능형 라우팅 시스템 문서 추가 - .claude/PERSONAS.md: 페르소나 시스템 문서 추가 - .claude/PRINCIPLES.md: 핵심 원칙 문서 추가 - .claude/RULES.md: 실행 가능한 규칙 문서 추가 - .claude/settings.json: 권한 설정 추가 - .claude/commands 디렉토리: 다양한 명령어 문서 추가 - .taskmaster/config.json: 기본 설정 파일 추가 - .taskmaster/docs 디렉토리: 문서 파일 추가 - .taskmaster/tasks/tasks.json: 기본 작업 파일 추가
This commit is contained in:
152
CLAUDE.md
Normal file
152
CLAUDE.md
Normal file
@ -0,0 +1,152 @@
|
||||
# SuperClaude Entry Point
|
||||
|
||||
@.claude/COMMANDS.md
|
||||
|
||||
@.claude/FLAGS.md
|
||||
|
||||
@.claude/PRINCIPLES.md
|
||||
|
||||
@.claude/RULES.md
|
||||
|
||||
@.claude/MCP.md
|
||||
|
||||
@.claude/PERSONAS.md
|
||||
|
||||
@.claude/ORCHESTRATOR.md
|
||||
|
||||
@.claude/MODES.md
|
||||
|
||||
## Project Overview
|
||||
|
||||
<!-- Run /app-design:create to generate app design document -->
|
||||
<!-- Run /tech-stack:create to generate tech stack documentation -->
|
||||
|
||||
- App Design: @.taskmaster/docs/app-design-document.md
|
||||
- Tech Stack: @.taskmaster/docs/tech-stack.md
|
||||
|
||||
## Project Status
|
||||
|
||||
<!-- **Current Stage**: Pre-MVP -->
|
||||
|
||||
### DO Care About
|
||||
|
||||
<!-- - **Security**: Authentication, authorization, input validation
|
||||
- **Core Functionality**: Essential features that deliver primary value
|
||||
- **Data Integrity**: Proper database design and constraints
|
||||
- **Error Handling**: Basic error boundaries and user feedback -->
|
||||
|
||||
### DO NOT Care About
|
||||
|
||||
<!-- - **Unit Tests**: Focus on manual testing for now
|
||||
- **Performance Optimization**: Premature optimization
|
||||
- **Perfect Code**: Working implementation over perfect abstractions
|
||||
- **Comprehensive Logging**: Basic console.error is enough -->
|
||||
|
||||
### Development Approach
|
||||
|
||||
<!-- - **Focus**: Ship working features quickly
|
||||
- **Iterate**: Get user feedback early and often
|
||||
- **Refactor**: Clean up after validation, not before -->
|
||||
|
||||
## Commands
|
||||
|
||||
### Development
|
||||
|
||||
<!-- - `pnpm typecheck` - Run TypeScript type checking (must pass without errors)
|
||||
- `pnpm lint` - Run ESLint
|
||||
- `pnpm format` - Format code with Prettier -->
|
||||
|
||||
### Database
|
||||
|
||||
<!-- - `pnpm db:generate` - Generate Prisma client from schema
|
||||
- `pnpm db:push` - Push schema changes to database
|
||||
- `pnpm db:seed` - Seed database with initial data -->
|
||||
|
||||
### Testing
|
||||
|
||||
<!-- - `pnpm test` - Run unit tests
|
||||
- `pnpm test:e2e` - Run end-to-end tests -->
|
||||
|
||||
## Available Slash Commands
|
||||
|
||||
### Task Management
|
||||
|
||||
- `/task:next` - Get next task and start implementing
|
||||
- `/task:list` - List all tasks
|
||||
- `/task:show <id>` - Show task details
|
||||
- `/task:done <id>` - Mark task complete
|
||||
- `/task:add` - Add one or more tasks
|
||||
- `/task:add-interactive` - Add tasks with clarifying questions
|
||||
- `/prd:parse` - Parse PRD into tasks
|
||||
- `/task:expand <id>` - Break down complex tasks
|
||||
- `/task:move <from> to <to>` - Reorganize tasks
|
||||
|
||||
### Task Updates
|
||||
|
||||
- `/task:update` - Update tasks based on changes
|
||||
- `/task:update-interactive` - Update tasks with clarifying questions
|
||||
- `/task:research` - Research best practices
|
||||
|
||||
### Research
|
||||
|
||||
- `/research:task` - Research for specific tasks
|
||||
- `/research:architecture` - Research system design
|
||||
- `/research:tech` - Research technologies
|
||||
- `/research:security` - Research security practices
|
||||
|
||||
### Documentationc
|
||||
|
||||
- `/app-design:create` - Create app design document
|
||||
- `/app-design:update` - Update app design document
|
||||
- `/tech-stack:create` - Create tech stack documentation
|
||||
- `/tech-stack:update` - Update tech stack documentation
|
||||
- `/prd:create-interactive` - Create PRD with Q&A
|
||||
- `/prd:create` - Create PRD without questions
|
||||
|
||||
### Development Tools
|
||||
|
||||
- `/rules:create` - Create new Cursor rule
|
||||
- `/rules:update` - Update existing Cursor rule
|
||||
|
||||
## Development Guidelines
|
||||
|
||||
This project uses a unified approach to development patterns across Claude Code and Cursor:
|
||||
|
||||
### Core Rules
|
||||
|
||||
- @.cursor/rules/cursor-rules.mdc - Rule creation guidelines
|
||||
- @.cursor/rules/project-status.mdc - Stage-based development priorities
|
||||
- @.cursor/rules/self-improve.mdc - Continuous improvement patterns
|
||||
|
||||
### Task Management
|
||||
|
||||
- @.cursor/rules/taskmaster/taskmaster.mdc - Task Master command reference
|
||||
- @.cursor/rules/taskmaster/dev-workflow.mdc - Development workflow patterns
|
||||
|
||||
### Complete Task Master Guide
|
||||
|
||||
- .taskmaster/docs/taskmaster-guide.md - Full tagged task management documentation, if needed
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
project/
|
||||
├── .taskmaster/ # Task management files
|
||||
│ ├── tasks/ # Task database and files
|
||||
│ ├── docs/ # PRDs and documentation
|
||||
│ └── config.json # AI model configuration
|
||||
├── .cursor/ # Cursor-specific rules
|
||||
│ └── rules/ # Development patterns
|
||||
├── .claude/ # Claude Code configuration
|
||||
│ ├── commands/ # Custom slash commands
|
||||
│ └── settings.json # Tool preferences
|
||||
└── src/ # Application source code
|
||||
```
|
||||
|
||||
## Notes
|
||||
|
||||
- Never work directly on the `master` tag - always create feature tags
|
||||
- Run typecheck before committing
|
||||
- Use `/task:next` to automatically get and start implementing tasks
|
||||
- When you Question or Answer to user, Use Korean.
|
||||
- When you Write document, use Korean UTF-8 encoding
|
||||
Reference in New Issue
Block a user