codingwithagent 1.0.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/LICENSE +21 -21
- package/README.md +131 -37
- package/bin/init.js +257 -257
- package/package.json +56 -56
- package/templates/accessibility/.cursorrules +342 -342
- package/templates/accessibility/README.md +47 -47
- package/templates/antigravity/accessibility/.agent/rules/accessibility.md +501 -501
- package/templates/antigravity/accessibility/.agent/rules/aria-patterns.md +568 -568
- package/templates/antigravity/accessibility/.agent/rules/wcag-standard.md +225 -225
- package/templates/antigravity/accessibility/README.md +42 -42
- package/templates/antigravity/minimal/.agent/rules/accessibility.md +53 -53
- package/templates/antigravity/minimal/.agent/rules/code-quality.md +86 -86
- package/templates/antigravity/minimal/.agent/rules/react-components.md +164 -164
- package/templates/antigravity/minimal/README.md +34 -34
- package/templates/antigravity/standard/.agent/rules/accessibility.md +98 -98
- package/templates/antigravity/standard/.agent/rules/code-quality.md +166 -166
- package/templates/antigravity/standard/.agent/rules/pull-request-review.md +192 -192
- package/templates/antigravity/standard/.agent/rules/react-components.md +204 -204
- package/templates/antigravity/standard/.agent/rules/testing.md +197 -197
- package/templates/antigravity/standard/README.md +39 -39
- package/templates/antigravity/strict/.agent/README.md +46 -46
- package/templates/antigravity/strict/.agent/rules/accessibility.md +199 -199
- package/templates/antigravity/strict/.agent/rules/code-quality.md +268 -268
- package/templates/antigravity/strict/.agent/rules/pull-request-review.md +114 -114
- package/templates/antigravity/strict/.agent/rules/react-components.md +423 -423
- package/templates/antigravity/strict/.agent/rules/security.md +483 -483
- package/templates/antigravity/strict/.agent/rules/testing.md +280 -280
- package/templates/minimal/.cursorrules +48 -48
- package/templates/minimal/README.md +40 -40
- package/templates/standard/.cursorrules +184 -184
- package/templates/standard/README.md +43 -43
- package/templates/strict/.cursorrules +227 -227
- package/templates/strict/README.md +47 -47
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
# Accessibility Profile
|
|
2
|
-
|
|
3
|
-
WCAG 2.1+ focused development with accessibility as the top priority.
|
|
4
|
-
|
|
5
|
-
## What's Included
|
|
6
|
-
|
|
7
|
-
- Comprehensive WCAG 2.1 Level AA (minimum)
|
|
8
|
-
- Screen reader testing required
|
|
9
|
-
- Keyboard navigation mandatory
|
|
10
|
-
- Color contrast enforcement
|
|
11
|
-
- ARIA patterns and best practices
|
|
12
|
-
|
|
13
|
-
## Best For
|
|
14
|
-
|
|
15
|
-
- Government projects
|
|
16
|
-
- Healthcare applications
|
|
17
|
-
- Educational platforms
|
|
18
|
-
- Projects with accessibility requirements
|
|
19
|
-
|
|
20
|
-
## Coverage
|
|
21
|
-
|
|
22
|
-
- POUR principles (Perceivable, Operable, Understandable, Robust)
|
|
23
|
-
- Detailed ARIA implementation
|
|
24
|
-
- Manual testing requirements
|
|
25
|
-
- Automated accessibility testing
|
|
26
|
-
- User testing with people with disabilities
|
|
27
|
-
|
|
28
|
-
## Quick Start
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
npx codingwithagent init
|
|
32
|
-
# Select: 4. Accessibility
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
### What you get
|
|
36
|
-
|
|
37
|
-
A `.cursorrules` file focused on:
|
|
38
|
-
|
|
39
|
-
- WCAG 2.1 compliance
|
|
40
|
-
- Screen reader compatibility
|
|
41
|
-
- Keyboard accessibility
|
|
42
|
-
- Color contrast requirements
|
|
43
|
-
- Semantic HTML enforcement
|
|
44
|
-
|
|
45
|
-
## Philosophy
|
|
46
|
-
|
|
47
|
-
"The power of the Web is in its universality. Access by everyone regardless of disability is essential." - Tim Berners-Lee
|
|
1
|
+
# Accessibility Profile
|
|
2
|
+
|
|
3
|
+
WCAG 2.1+ focused development with accessibility as the top priority.
|
|
4
|
+
|
|
5
|
+
## What's Included
|
|
6
|
+
|
|
7
|
+
- Comprehensive WCAG 2.1 Level AA (minimum)
|
|
8
|
+
- Screen reader testing required
|
|
9
|
+
- Keyboard navigation mandatory
|
|
10
|
+
- Color contrast enforcement
|
|
11
|
+
- ARIA patterns and best practices
|
|
12
|
+
|
|
13
|
+
## Best For
|
|
14
|
+
|
|
15
|
+
- Government projects
|
|
16
|
+
- Healthcare applications
|
|
17
|
+
- Educational platforms
|
|
18
|
+
- Projects with accessibility requirements
|
|
19
|
+
|
|
20
|
+
## Coverage
|
|
21
|
+
|
|
22
|
+
- POUR principles (Perceivable, Operable, Understandable, Robust)
|
|
23
|
+
- Detailed ARIA implementation
|
|
24
|
+
- Manual testing requirements
|
|
25
|
+
- Automated accessibility testing
|
|
26
|
+
- User testing with people with disabilities
|
|
27
|
+
|
|
28
|
+
## Quick Start
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx codingwithagent init
|
|
32
|
+
# Select: 4. Accessibility
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### What you get
|
|
36
|
+
|
|
37
|
+
A `.cursorrules` file focused on:
|
|
38
|
+
|
|
39
|
+
- WCAG 2.1 compliance
|
|
40
|
+
- Screen reader compatibility
|
|
41
|
+
- Keyboard accessibility
|
|
42
|
+
- Color contrast requirements
|
|
43
|
+
- Semantic HTML enforcement
|
|
44
|
+
|
|
45
|
+
## Philosophy
|
|
46
|
+
|
|
47
|
+
"The power of the Web is in its universality. Access by everyone regardless of disability is essential." - Tim Berners-Lee
|