Files
motovaultpro/CLAUDE.md
Eric Gullickson 9f00797925
All checks were successful
Deploy to Staging / Build Images (push) Successful in 23s
Deploy to Staging / Deploy to Staging (push) Successful in 36s
Deploy to Staging / Verify Staging (push) Successful in 6s
Deploy to Staging / Notify Staging Ready (push) Successful in 6s
Deploy to Staging / Notify Staging Failure (push) Has been skipped
feat: implement new claude skills and workflow
2026-01-03 11:02:30 -06:00

6.3 KiB

Development Partnership Guidelines

Core Development Principles

AI Context Efficiency

CRITICAL: All development practices and choices should be made taking into account the most context efficient interaction with another AI. Any AI should be able to understand this application with minimal prompting.

Never Use Emojis

Maintain professional documentation standards without emoji usage.

Mobile + Desktop Requirement

ALL features MUST be implemented and tested on BOTH mobile and desktop. This is a hard requirement that cannot be skipped. Every component, page, and feature needs responsive design and mobile-first considerations.

Codebase Integrity Rules

  • Justify every new file and folder as being needed for the final production application.
  • Never make up things that aren't part of the actual project
  • Never skip or ignore existing system architecture
  • Be precise and respectful of the current codebase
  • Delete old code when replacing it
  • Meaningful names: userID not id

Naming Conventions

Case Standards

Layer Convention Example
Database columns snake_case user_id, created_at, is_active
Backend TypeScript types camelCase userId, createdAt, isActive
API responses camelCase { "userId": "...", "createdAt": "..." }
Frontend TypeScript types camelCase userId, createdAt, isActive

Repository Pattern for Case Conversion

All repositories MUST implement private mapRow() or similar mapper functions to convert database snake_case to TypeScript camelCase:

private mapRow(row: any): MyType {
  return {
    id: row.id,
    userId: row.user_id,      // snake_case -> camelCase
    createdAt: row.created_at,
    isActive: row.is_active,
  };
}

All methods returning data to the API must use these mappers - never return raw database rows.

Development Workflow (Local + CI/CD)

Local Development

npm install          # Install dependencies
npm run dev          # Start dev server
npm test             # Run tests
npm run lint         # Linting
npm run type-check   # TypeScript validation

CI/CD Pipeline (on PR)

  • Container builds and integration tests
  • Mobile/desktop viewport validation
  • Security scanning

Flow: Local dev -> Push to Gitea -> CI/CD runs -> PR review -> Merge

Quality Standards

Automated Checks Are Mandatory

ALL hook issues are BLOCKING - EVERYTHING must be GREEN!

  • No errors. No formatting issues. No linting problems. Zero tolerance
  • These are not suggestions. Fix ALL issues before continuing

Code Completion Criteria

Our code is complete when:

  • All linters pass with zero issues
  • All tests pass
  • Feature works end-to-end
  • Old code is deleted

AI Collaboration Strategy

Use Multiple Agents

Leverage subagents aggressively for better results:

  • Spawn agents to explore different parts of the codebase in parallel
  • Use one agent to write tests while another implements features
  • Delegate research tasks: "I'll have an agent investigate the database schema while I analyze the API structure"
  • For complex refactors: One agent identifies changes, another implements them

Reality Checkpoints

Stop and validate at these moments:

  • After implementing a complete feature
  • Before starting a new major component
  • When something feels wrong
  • Before declaring "done"

Performance & Security Standards

Measure First

  • No premature optimization
  • Benchmark before claiming something is faster

Security Always

  • Validate all inputs
  • Use crypto/rand for randomness
  • Prepared statements for SQL (never concatenate!)

AI Loading Context Strategies

Canonical sources only - avoid duplication:

  • Architecture and metadata: .ai/context.json
  • Sprint workflow contract: .ai/workflow-contract.json
  • Documentation hub: docs/README.md
  • Feature work: backend/src/features/{feature}/README.md
  • Platform architecture: docs/PLATFORM-SERVICES.md
  • Testing workflow: docs/TESTING.md

Sprint Workflow

Issues are the source of truth. See .ai/workflow-contract.json for complete workflow.

Quick Reference

  • Every PR must link to at least one issue
  • Use Gitea MCP tools for issue/label/branch/PR operations
  • Labels: status/backlog -> status/ready -> status/in-progress -> status/review -> status/done
  • Branches: issue-{index}-{slug} (e.g., issue-42-add-fuel-report)
  • Commits: {type}: {summary} (refs #{index}) (e.g., feat: add fuel report (refs #42))

Architecture Context for AI

Simplified 5-Container Architecture

MotoVaultPro uses a simplified architecture: A single-tenant application with 5 containers - Traefik, Frontend, Backend, PostgreSQL, and Redis. Application features in backend/src/features/[name]/ are self-contained modules within the backend service, including the platform feature for vehicle data and VIN decoding.

Key Principles for AI Understanding

  • Feature Capsule Organization: Application features are self-contained modules within the backend
  • Single-Tenant: All data belongs to a single user/tenant
  • User-Scoped Data: All application data isolated by user_id
  • Local Dev + CI/CD: Development locally, container testing in CI/CD pipeline
  • Integrated Platform: Platform capabilities integrated into main backend service

Common AI Tasks

See Makefile for authoritative commands and docs/README.md for navigation.

Agent System

Directory Contents When to Read
.claude/role-agents/ Developer, TW, QR, Debugger Delegating execution
.claude/role-agents/quality-reviewer.md RULE 0/1/2 definitions Quality review
.claude/skills/planner/ Planning workflow Complex features (3+ files)
.claude/skills/problem-analysis/ Problem decomposition Uncertain approach
.claude/agents/ Domain agents Feature/Frontend/Platform work
.ai/workflow-contract.json Sprint process, skill integration Issue workflow

Quality Rules (see quality-reviewer.md for full definitions)

  • RULE 0 (CRITICAL): Production reliability - unhandled errors, security, resource exhaustion
  • RULE 1 (HIGH): Project standards - mobile+desktop, naming, patterns, CI/CD pass
  • RULE 2 (SHOULD_FIX): Structural quality - god objects, duplication, dead code