You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+19-2Lines changed: 19 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ This document provides comprehensive guidance for AI agents working on the Copy
29
29
30
30
## Architecture
31
31
32
+
> **📖 For detailed architecture documentation including module dependencies, data flows, and design decisions, see [docs/architecture.md](docs/architecture.md)**
33
+
32
34
### Project Structure
33
35
34
36
```
@@ -52,6 +54,9 @@ This document provides comprehensive guidance for AI agents working on the Copy
52
54
├── public/ # Static files
53
55
│ ├── _locales/ # i18n messages
54
56
│ └── icon/ # Extension icons
57
+
├── docs/ # Documentation
58
+
│ ├── architecture.md # Module dependencies and design
59
+
│ └── development-guideline.md # Development guidelines
55
60
├── wxt.config.ts # WXT configuration
56
61
├── tsconfig.json # TypeScript config
57
62
└── vitest.config.ts # Test configuration
@@ -70,6 +75,8 @@ This document provides comprehensive guidance for AI agents working on the Copy
70
75
71
76
## Development Guidelines
72
77
78
+
> **📖 For comprehensive development guidelines including TDD workflow, coding standards, testing strategy, Git workflow, and common tasks, see [docs/development-guideline.md](docs/development-guideline.md)**
79
+
73
80
### Coding Conventions
74
81
75
82
1.**TypeScript First**
@@ -553,7 +560,9 @@ npm run dev # Test in browser
553
560
-`README.md` - User-facing documentation
554
561
-`CONTRIBUTING.md` - Contribution guidelines
555
562
-`CODE_OF_CONDUCT.md` - Community standards
556
-
-`docs/` - GitHub Pages documentation site
563
+
-`CLAUDE.md` (this file) - AI agent development guide
564
+
-`docs/architecture.md` - **Module dependencies, data flows, and architectural design**
565
+
-`docs/development-guideline.md` - **Comprehensive development guidelines (TDD, coding standards, workflows)**
557
566
558
567
## Working with WXT
559
568
@@ -628,7 +637,11 @@ Based on codebase analysis, here are areas for enhancement:
0 commit comments