agents-templated 1.2.3 → 1.2.5
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/README.md +40 -6
- package/package.json +1 -1
- package/templates/.github/copilot-instructions.md +2 -2
- package/templates/AGENTS.MD +6 -4
- package/templates/CLAUDE.md +1 -1
- package/templates/GEMINI.md +2 -2
- package/templates/README.md +40 -6
- package/templates/agent-docs/README.md +32 -5
- package/templates/agents/skills/README.md +172 -0
- package/templates/agents/skills/web-design-guidelines/SKILL.md +0 -39
package/README.md
CHANGED
|
@@ -122,7 +122,6 @@ your-project/
|
|
|
122
122
|
├── agent-docs/ # 📚 Comprehensive documentation
|
|
123
123
|
│ ├── AGENTS.md # AI assistant guide
|
|
124
124
|
│ ├── ARCHITECTURE.md # Project architecture & tech stack
|
|
125
|
-
│ ├── AGENTS.MD # Agent delegation patterns
|
|
126
125
|
│ └── README.md # Human-readable setup guide
|
|
127
126
|
│
|
|
128
127
|
├── agents/ # 🤖 AI Agent rules and skills
|
|
@@ -134,8 +133,9 @@ your-project/
|
|
|
134
133
|
│ │ ├── database.mdc # Database patterns
|
|
135
134
|
│ │ └── style.mdc # Code style guidelines
|
|
136
135
|
│ └── skills/
|
|
137
|
-
│ ├──
|
|
138
|
-
│
|
|
136
|
+
│ ├── find-skills/ # Skill discovery helper
|
|
137
|
+
│ ├── README.md # Guide for creating custom skills
|
|
138
|
+
│ └── [your-custom-skills]/ # Your project-specific skills
|
|
139
139
|
│
|
|
140
140
|
├── .github/
|
|
141
141
|
│ └── copilot-instructions.md # GitHub Copilot config
|
|
@@ -224,15 +224,49 @@ Open your AI assistant and it will automatically load the appropriate config:
|
|
|
224
224
|
- **Claude**: Reads `CLAUDE.md`
|
|
225
225
|
- **Gemini**: Reads `GEMINI.md`
|
|
226
226
|
|
|
227
|
-
### 3.
|
|
227
|
+
### 3. Create Custom Skills (Optional)
|
|
228
|
+
|
|
229
|
+
Extend your AI agents with domain-specific skills for your project:
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
# View the skills guide
|
|
233
|
+
cat agents/skills/README.md
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
Create a new skill folder in `agents/skills/`:
|
|
237
|
+
|
|
238
|
+
```markdown
|
|
239
|
+
agents/skills/my-custom-skill/SKILL.md
|
|
240
|
+
---
|
|
241
|
+
name: my-custom-skill
|
|
242
|
+
description: Custom patterns for my project domain
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
# My Custom Skill
|
|
246
|
+
|
|
247
|
+
Use this skill when working with [your domain].
|
|
248
|
+
|
|
249
|
+
## Recommended Patterns
|
|
250
|
+
|
|
251
|
+
- Pattern 1: Description
|
|
252
|
+
- Pattern 2: Description
|
|
253
|
+
|
|
254
|
+
## Example
|
|
255
|
+
|
|
256
|
+
Code and examples...
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
Skills define *how to execute specific tasks*, complementing rules that define *how to behave*. See [agents/skills/README.md](agents/skills/README.md) for detailed guidance.
|
|
260
|
+
|
|
261
|
+
### 4. Read the Documentation
|
|
228
262
|
|
|
229
263
|
- **[AGENTS.md](AGENTS.md)** – AI assistant guide
|
|
230
264
|
- **[agent-docs/ARCHITECTURE.md](agent-docs/ARCHITECTURE.md)** – Project architecture & tech stack guidance
|
|
231
|
-
- **[
|
|
265
|
+
- **[agents/skills/README.md](agents/skills/README.md)** – Custom skills guide
|
|
232
266
|
- **[agents/rules/security.mdc](agents/rules/security.mdc)** – Security patterns (CRITICAL)
|
|
233
267
|
- **[agents/rules/testing.mdc](agents/rules/testing.mdc)** – Testing strategy
|
|
234
268
|
|
|
235
|
-
###
|
|
269
|
+
### 5. Start Building
|
|
236
270
|
|
|
237
271
|
Tell your AI assistant what to build:
|
|
238
272
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-templated",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Technology-agnostic development template with multi-AI agent support (Cursor, Copilot, VSCode, Gemini), security-first patterns, and comprehensive testing guidelines",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -4,9 +4,9 @@ This project follows enterprise-grade, technology-agnostic development patterns.
|
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
|
-
- **AI Guide**: See `
|
|
7
|
+
- **AI Guide**: See `AGENTS.md` for comprehensive instructions
|
|
8
8
|
- **Architecture**: See `agent-docs/ARCHITECTURE.md` for project guidelines
|
|
9
|
-
- **
|
|
9
|
+
- **Custom Skills**: See `agents/skills/` directory for domain-specific extensions
|
|
10
10
|
- **Detailed Rules**: See `agents/rules/*.mdc` files
|
|
11
11
|
|
|
12
12
|
## Always Apply
|
package/templates/AGENTS.MD
CHANGED
|
@@ -6,6 +6,7 @@ This project follows enterprise-grade, technology-agnostic development patterns.
|
|
|
6
6
|
|
|
7
7
|
- **`AGENTS.md`** - This file! AI instructions for working with AI assistants
|
|
8
8
|
- **`agent-docs/ARCHITECTURE.md`** - Overall project guidelines, architecture principles, and technology stack selection
|
|
9
|
+
- **`agents/skills/`** - Custom skills for domain-specific tasks in your project
|
|
9
10
|
|
|
10
11
|
## Detailed Rules (Reference When Relevant)
|
|
11
12
|
|
|
@@ -23,10 +24,11 @@ When implementing features, always check the relevant rule file:
|
|
|
23
24
|
|
|
24
25
|
When implementing any feature:
|
|
25
26
|
|
|
26
|
-
1. **
|
|
27
|
-
2. **
|
|
28
|
-
3. **
|
|
29
|
-
4. **Always apply
|
|
27
|
+
1. **Check for custom skills**: Review `agents/skills/` for domain-specific guidance
|
|
28
|
+
2. **Reference `agent-docs/ARCHITECTURE.md`** for overall architecture and technology stack guidance
|
|
29
|
+
3. **Apply relevant rules** from `agents/rules/*.mdc` files based on the task
|
|
30
|
+
4. **Always apply security patterns** from `agents/rules/security.mdc`
|
|
31
|
+
5. **Always apply testing patterns** from `agents/rules/testing.mdc`
|
|
30
32
|
|
|
31
33
|
## Critical Rules (Always Apply)
|
|
32
34
|
|
package/templates/CLAUDE.md
CHANGED
|
@@ -6,7 +6,7 @@ This project uses enterprise-grade, technology-agnostic development patterns for
|
|
|
6
6
|
|
|
7
7
|
- **AI Guide**: See `AGENTS.md` for comprehensive instructions
|
|
8
8
|
- **Architecture**: See `agent-docs/ARCHITECTURE.md` for project guidelines
|
|
9
|
-
- **
|
|
9
|
+
- **Custom Skills**: See `agents/skills/` directory for domain-specific extensions
|
|
10
10
|
- **Detailed Rules**: See `agents/rules/*.mdc` files
|
|
11
11
|
|
|
12
12
|
## Always Apply
|
package/templates/GEMINI.md
CHANGED
|
@@ -10,9 +10,9 @@ This project uses enterprise-grade, technology-agnostic development patterns for
|
|
|
10
10
|
|
|
11
11
|
- **AI Guide**: See `AGENTS.md` for comprehensive instructions
|
|
12
12
|
- **Architecture**: See `agent-docs/ARCHITECTURE.md` for project guidelines
|
|
13
|
-
- **
|
|
13
|
+
- **Custom Skills**: See `agents/skills/` directory for domain-specific extensions
|
|
14
14
|
- **Detailed Rules**: See `agents/rules/*.mdc` files
|
|
15
|
-
- **Available Skills**:
|
|
15
|
+
- **Available Skills**: Check `agents/skills/` for project-specific skills
|
|
16
16
|
|
|
17
17
|
## Core Development Patterns
|
|
18
18
|
|
package/templates/README.md
CHANGED
|
@@ -118,7 +118,6 @@ your-project/
|
|
|
118
118
|
├── agent-docs/ # 📚 Comprehensive documentation
|
|
119
119
|
│ ├── AGENTS.md # AI assistant guide
|
|
120
120
|
│ ├── ARCHITECTURE.md # Project architecture & tech stack
|
|
121
|
-
│ ├── AGENTS.MD # Agent delegation patterns
|
|
122
121
|
│ └── README.md # Human-readable setup guide
|
|
123
122
|
│
|
|
124
123
|
├── agents/ # 🤖 AI Agent rules and skills
|
|
@@ -130,8 +129,9 @@ your-project/
|
|
|
130
129
|
│ │ ├── database.mdc # Database patterns
|
|
131
130
|
│ │ └── style.mdc # Code style guidelines
|
|
132
131
|
│ └── skills/
|
|
133
|
-
│ ├──
|
|
134
|
-
│
|
|
132
|
+
│ ├── find-skills/ # Skill discovery helper
|
|
133
|
+
│ ├── README.md # Guide for creating custom skills
|
|
134
|
+
│ └── [your-custom-skills]/ # Your project-specific skills
|
|
135
135
|
│
|
|
136
136
|
├── .github/
|
|
137
137
|
│ └── copilot-instructions.md # GitHub Copilot config
|
|
@@ -220,15 +220,49 @@ Open your AI assistant and it will automatically load the appropriate config:
|
|
|
220
220
|
- **Claude**: Reads `CLAUDE.md`
|
|
221
221
|
- **Gemini**: Reads `GEMINI.md`
|
|
222
222
|
|
|
223
|
-
### 3.
|
|
223
|
+
### 3. Create Custom Skills (Optional)
|
|
224
|
+
|
|
225
|
+
Extend your AI agents with domain-specific skills for your project:
|
|
226
|
+
|
|
227
|
+
```bash
|
|
228
|
+
# View the skills guide
|
|
229
|
+
cat agents/skills/README.md
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
Create a new skill folder in `agents/skills/`:
|
|
233
|
+
|
|
234
|
+
```markdown
|
|
235
|
+
agents/skills/my-custom-skill/SKILL.md
|
|
236
|
+
---
|
|
237
|
+
name: my-custom-skill
|
|
238
|
+
description: Custom patterns for my project domain
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
# My Custom Skill
|
|
242
|
+
|
|
243
|
+
Use this skill when working with [your domain].
|
|
244
|
+
|
|
245
|
+
## Recommended Patterns
|
|
246
|
+
|
|
247
|
+
- Pattern 1: Description
|
|
248
|
+
- Pattern 2: Description
|
|
249
|
+
|
|
250
|
+
## Example
|
|
251
|
+
|
|
252
|
+
Code and examples...
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
Skills define *how to execute specific tasks*, complementing rules that define *how to behave*. See [agents/skills/README.md](agents/skills/README.md) for detailed guidance.
|
|
256
|
+
|
|
257
|
+
### 4. Read the Documentation
|
|
224
258
|
|
|
225
259
|
- **[AGENTS.md](AGENTS.md)** – AI assistant guide
|
|
226
260
|
- **[agent-docs/ARCHITECTURE.md](agent-docs/ARCHITECTURE.md)** – Project architecture & tech stack guidance
|
|
227
|
-
- **[
|
|
261
|
+
- **[agents/skills/README.md](agents/skills/README.md)** – Custom skills guide
|
|
228
262
|
- **[agents/rules/security.mdc](agents/rules/security.mdc)** – Security patterns (CRITICAL)
|
|
229
263
|
- **[agents/rules/testing.mdc](agents/rules/testing.mdc)** – Testing strategy
|
|
230
264
|
|
|
231
|
-
###
|
|
265
|
+
### 5. Start Building
|
|
232
266
|
|
|
233
267
|
Tell your AI assistant what to build:
|
|
234
268
|
|
|
@@ -36,16 +36,43 @@ agents-templated list
|
|
|
36
36
|
|
|
37
37
|
## Rules and Skills
|
|
38
38
|
|
|
39
|
-
- **Rules** (`agents/rules/*.mdc`):
|
|
40
|
-
- **Skills** (`agents/skills/*/SKILL.md`):
|
|
39
|
+
- **Rules** (`agents/rules/*.mdc`): Define *how to behave* - patterns, principles, and standards for your team
|
|
40
|
+
- **Skills** (`agents/skills/*/SKILL.md`): Define *how to execute specific tasks* - domain-specific workflows and specialized knowledge
|
|
41
|
+
|
|
42
|
+
### Using Skills in Your AI Assistants
|
|
43
|
+
|
|
44
|
+
Skills can be referenced in all AI configuration files:
|
|
45
|
+
|
|
46
|
+
**In `.cursorrules` (Cursor IDE):**
|
|
47
|
+
```
|
|
48
|
+
When the user asks about [domain], use the [skill-name] skill from agents/skills/
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
**In `CLAUDE.md` (Claude):**
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
When working on [domain-specific task], reference the [skill-name] skill in agents/skills/[skill-name]/SKILL.md
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
**In `GEMINI.md` (Google Gemini):**
|
|
58
|
+
```
|
|
59
|
+
When working on [domain-specific task], reference the [skill-name] skill in agents/skills/[skill-name]/SKILL.md
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
**In `.github/copilot-instructions.md` (GitHub Copilot):**
|
|
63
|
+
```
|
|
64
|
+
When helping with [domain-specific task], reference the [skill-name] skill from agents/skills/[skill-name]/SKILL.md
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
All AI assistants support skill references. Create custom skills in `agents/skills/` to extend capabilities across your entire team.
|
|
41
68
|
|
|
42
69
|
## Getting Started
|
|
43
70
|
|
|
44
71
|
1. Review AGENTS.md for AI assistance guidance
|
|
45
72
|
2. Review ARCHITECTURE.md for overall project guidelines
|
|
46
|
-
3.
|
|
47
|
-
4.
|
|
48
|
-
5. Configure your AI
|
|
73
|
+
3. Adapt the rules to your specific technology stack
|
|
74
|
+
4. Create custom skills in `agents/skills/` for your domain
|
|
75
|
+
5. Configure your AI assistants (Cursor, Copilot, Claude, Gemini) to reference your skills
|
|
49
76
|
|
|
50
77
|
## Documentation
|
|
51
78
|
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# Agent Skills
|
|
2
|
+
|
|
3
|
+
This directory contains custom skills for your AI agents. Skills extend agent capabilities with specialized knowledge, workflows, and tools for specific domains.
|
|
4
|
+
|
|
5
|
+
## What is a Skill?
|
|
6
|
+
|
|
7
|
+
A **skill** is a reusable module that:
|
|
8
|
+
- Defines domain-specific knowledge or workflows
|
|
9
|
+
- Extends agent capabilities for specialized tasks
|
|
10
|
+
- Can be shared across your project or published for others
|
|
11
|
+
|
|
12
|
+
**Rules** define *how to behave*; **Skills** define *how to execute specific tasks*.
|
|
13
|
+
|
|
14
|
+
## Getting Started
|
|
15
|
+
|
|
16
|
+
### Finding Existing Skills
|
|
17
|
+
|
|
18
|
+
Use the built-in `find-skills` skill to discover skills from the open ecosystem:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx skills find [query]
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Examples:
|
|
25
|
+
- `npx skills find react testing`
|
|
26
|
+
- `npx skills find deployment`
|
|
27
|
+
- `npx skills find accessibility`
|
|
28
|
+
|
|
29
|
+
Browse more at: https://skills.sh/
|
|
30
|
+
|
|
31
|
+
### Creating a Custom Skill
|
|
32
|
+
|
|
33
|
+
To create a new skill for your specific domain:
|
|
34
|
+
|
|
35
|
+
1. **Create a new folder** in this directory:
|
|
36
|
+
```
|
|
37
|
+
agents/skills/my-custom-skill/
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
2. **Create a SKILL.md file** with metadata and instructions:
|
|
41
|
+
```markdown
|
|
42
|
+
---
|
|
43
|
+
name: my-custom-skill
|
|
44
|
+
description: Brief description of what this skill does
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
# My Custom Skill
|
|
48
|
+
|
|
49
|
+
Instructions and examples for using this skill...
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
3. **Reference it** in your agent documentation or `.cursorrules`
|
|
53
|
+
|
|
54
|
+
### Skill Structure
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
agents/skills/
|
|
58
|
+
├── find-skills/
|
|
59
|
+
│ └── SKILL.md # Meta-skill for discovering skills
|
|
60
|
+
├── my-custom-skill/
|
|
61
|
+
│ └── SKILL.md # Your custom skill
|
|
62
|
+
└── README.md # This file
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Best Practices
|
|
66
|
+
|
|
67
|
+
1. **Keep skills focused** - Each skill should handle one domain or workflow
|
|
68
|
+
2. **Document clearly** - Include examples and use cases in SKILL.md
|
|
69
|
+
3. **Name descriptively** - Use kebab-case names that reflect the skill's purpose
|
|
70
|
+
4. **Version your skills** - Include version info in the metadata
|
|
71
|
+
5. **Test before sharing** - Ensure skills work as documented
|
|
72
|
+
|
|
73
|
+
## Common Skill Categories
|
|
74
|
+
|
|
75
|
+
Consider creating skills for:
|
|
76
|
+
|
|
77
|
+
| Category | Use Case |
|
|
78
|
+
| --------------- | ---------------------------------------- |
|
|
79
|
+
| Web Development | Framework-specific patterns and guidelines |
|
|
80
|
+
| Testing | Testing strategies and examples |
|
|
81
|
+
| DevOps | Deployment, CI/CD, infrastructure |
|
|
82
|
+
| Documentation | Doc generation, README templates |
|
|
83
|
+
| Code Quality | Code review, refactoring patterns |
|
|
84
|
+
| Design | UI/UX, accessibility, design systems |
|
|
85
|
+
| Productivity | Workflows, automation, git patterns |
|
|
86
|
+
|
|
87
|
+
## Using Skills in Your Project
|
|
88
|
+
|
|
89
|
+
Skills can be referenced in all your AI assistant configuration files:
|
|
90
|
+
|
|
91
|
+
### Cursor IDE (`.cursorrules`)
|
|
92
|
+
```
|
|
93
|
+
When the user asks about [domain], use the [skill-name] skill from agents/skills/[skill-name]/SKILL.md
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Claude (`CLAUDE.md`)
|
|
97
|
+
```markdown
|
|
98
|
+
## When Working on [Domain]
|
|
99
|
+
|
|
100
|
+
Reference the [skill-name] skill in `agents/skills/[skill-name]/SKILL.md` for patterns and guidance.
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### Google Gemini (`GEMINI.md`)
|
|
104
|
+
```markdown
|
|
105
|
+
## When Working on [Domain]
|
|
106
|
+
|
|
107
|
+
Reference the [skill-name] skill in `agents/skills/[skill-name]/SKILL.md` for patterns and guidance.
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
### GitHub Copilot (`.github/copilot-instructions.md`)
|
|
111
|
+
```markdown
|
|
112
|
+
When helping with [domain-specific task], reference the [skill-name] skill from `agents/skills/[skill-name]/SKILL.md`
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### Documentation (`AGENTS.md`)
|
|
116
|
+
```markdown
|
|
117
|
+
- When working with [domain], see the [skill-name] skill in `agents/skills/[skill-name]/SKILL.md`
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**All AI assistants support skill references.** Keep your team aligned by linking to skill files across your configuration files.
|
|
121
|
+
|
|
122
|
+
3. **Share with your team**:
|
|
123
|
+
- Commit to version control
|
|
124
|
+
- Document installation in your README
|
|
125
|
+
|
|
126
|
+
## Example: Creating a Fastapi Skill
|
|
127
|
+
|
|
128
|
+
```markdown
|
|
129
|
+
---
|
|
130
|
+
name: fastapi-patterns
|
|
131
|
+
description: FastAPI development patterns and best practices for your projects
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
# FastAPI Patterns
|
|
135
|
+
|
|
136
|
+
Use this skill when working with FastAPI projects.
|
|
137
|
+
|
|
138
|
+
## Recommended Patterns
|
|
139
|
+
|
|
140
|
+
### Request Validation
|
|
141
|
+
- Use Pydantic models for all request bodies
|
|
142
|
+
- Validate query parameters with proper typing
|
|
143
|
+
|
|
144
|
+
### Error Handling
|
|
145
|
+
- Return meaningful HTTP status codes
|
|
146
|
+
- Document error responses in OpenAPI
|
|
147
|
+
|
|
148
|
+
### Testing
|
|
149
|
+
- Use TestClient for API testing
|
|
150
|
+
- Mock external dependencies
|
|
151
|
+
|
|
152
|
+
## Project Structure
|
|
153
|
+
|
|
154
|
+
```
|
|
155
|
+
src/
|
|
156
|
+
├── api/
|
|
157
|
+
│ ├── v1/
|
|
158
|
+
│ │ ├── users/
|
|
159
|
+
│ │ └── posts/
|
|
160
|
+
│ └── dependencies.py
|
|
161
|
+
├── models/
|
|
162
|
+
├── schemas/
|
|
163
|
+
├── database/
|
|
164
|
+
└── main.py
|
|
165
|
+
```
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
## Resources
|
|
169
|
+
|
|
170
|
+
- [Skills Documentation](https://skills.sh/)
|
|
171
|
+
- [Creating Skills Guide](https://skills.sh/docs/creating-skills)
|
|
172
|
+
- [Browse Popular Skills](https://skills.sh/explore)
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: web-design-guidelines
|
|
3
|
-
description: Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
|
|
4
|
-
metadata:
|
|
5
|
-
author: vercel
|
|
6
|
-
version: "1.0.0"
|
|
7
|
-
argument-hint: <file-or-pattern>
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Web Interface Guidelines
|
|
11
|
-
|
|
12
|
-
Review files for compliance with Web Interface Guidelines.
|
|
13
|
-
|
|
14
|
-
## How It Works
|
|
15
|
-
|
|
16
|
-
1. Fetch the latest guidelines from the source URL below
|
|
17
|
-
2. Read the specified files (or prompt user for files/pattern)
|
|
18
|
-
3. Check against all rules in the fetched guidelines
|
|
19
|
-
4. Output findings in the terse `file:line` format
|
|
20
|
-
|
|
21
|
-
## Guidelines Source
|
|
22
|
-
|
|
23
|
-
Fetch fresh guidelines before each review:
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
Use WebFetch to retrieve the latest rules. The fetched content contains all the rules and output format instructions.
|
|
30
|
-
|
|
31
|
-
## Usage
|
|
32
|
-
|
|
33
|
-
When a user provides a file or pattern argument:
|
|
34
|
-
1. Fetch guidelines from the source URL above
|
|
35
|
-
2. Read the specified files
|
|
36
|
-
3. Apply all rules from the fetched guidelines
|
|
37
|
-
4. Output findings using the format specified in the guidelines
|
|
38
|
-
|
|
39
|
-
If no files specified, ask the user which files to review.
|