docs: comprehensive CLAUDE.md overhaul with library reference system

- Restructure CLAUDE.md with clearer sections and updated metadata
- Add research guidelines emphasizing subagent usage and documentation-first approach
- Create library reference guide covering all 61 libraries across 12 domains
- Add automated library reference generation tool
- Complete test coverage for reward order confirmation feature (6 new spec files)
- Refine product info components and adapters with improved documentation
- Update workflows documentation for checkout service
- Fix ESLint issues: case declarations, unused imports, and unused variables
This commit is contained in:
Lorenz Hilpert
2025-10-22 11:55:04 +02:00
parent a92f72f767
commit 743d6c1ee9
31 changed files with 5654 additions and 3632 deletions

View File

@@ -4,7 +4,7 @@ export const AddressSchema = z
.object({
street: z.string().describe('Street name').optional(),
streetNumber: z.string().describe('Street number').optional(),
postalCode: z.string().describe('Postal code').optional(),
zipCode: z.string().describe('Postal code').optional(),
city: z.string().describe('City name').optional(),
country: z.string().describe('Country').optional(),
additionalInfo: z.string().describe('Additional information').optional(),