agents-config 1.0.0 → 1.1.0
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 +4 -0
- package/bin/agents-init.js +15 -35
- package/instructions/development-standards.instructions.md +1 -1
- package/instructions/github-issue.instructions.md +1 -1
- package/instructions/github-release-notes.instructions.md +1 -1
- package/instructions/storybook.instructions.md +1 -1
- package/package.json +1 -1
- package/prompts/create-pr.prompt.md +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
A comprehensive knowledge base and skill library for building production-grade React applications with AI-powered tools and best practices.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/agents-config)
|
|
6
|
+
[](https://www.npmjs.com/package/agents-config)
|
|
6
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
[](https://github.com/ericthayer/agents-config/stargazers)
|
|
9
|
+
[](https://nodejs.org/)
|
|
10
|
+
[](https://github.com/ericthayer/agents-config/actions/workflows/ci.yml)
|
|
7
11
|
|
|
8
12
|
## Overview
|
|
9
13
|
|
package/bin/agents-init.js
CHANGED
|
@@ -96,13 +96,13 @@ const DATABASES = {
|
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
// Core rules always included
|
|
99
|
-
const CORE_RULES = ['accessibility', 'component-architecture', 'spec-driven-development'];
|
|
99
|
+
const CORE_RULES = ['accessibility', 'component-architecture', 'spec-driven-development', 'web-performance'];
|
|
100
100
|
|
|
101
101
|
// Core skills always included
|
|
102
102
|
const CORE_SKILLS = ['accessibility-audit', 'scaffold-component'];
|
|
103
103
|
|
|
104
104
|
// Core instructions always included
|
|
105
|
-
const CORE_INSTRUCTIONS = ['development-standards'];
|
|
105
|
+
const CORE_INSTRUCTIONS = ['development-standards', 'web-interface-guidelines'];
|
|
106
106
|
|
|
107
107
|
// Parse command line arguments
|
|
108
108
|
const args = process.argv.slice(2);
|
|
@@ -291,8 +291,7 @@ function determineSkills(config) {
|
|
|
291
291
|
|
|
292
292
|
if (config.gemini) skills.push('integrate-gemini');
|
|
293
293
|
|
|
294
|
-
//
|
|
295
|
-
skills.push('vercel-react-best-practices');
|
|
294
|
+
// Additional skills can be installed via: npx add-skill vercel-labs/agent-skills
|
|
296
295
|
|
|
297
296
|
return skills;
|
|
298
297
|
}
|
|
@@ -403,37 +402,13 @@ function copyAgentsFolder(projectDir, config, filesToCreate) {
|
|
|
403
402
|
const destDir = path.join(agentsDir, 'skills', skill);
|
|
404
403
|
|
|
405
404
|
if (fs.existsSync(srcDir)) {
|
|
406
|
-
//
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
dest: skillMdDest,
|
|
414
|
-
relativePath: `.agents/skills/${skill}/SKILL.md`,
|
|
415
|
-
type: 'file',
|
|
416
|
-
});
|
|
417
|
-
}
|
|
418
|
-
const agentsMdSrc2 = path.join(srcDir, 'AGENTS.md');
|
|
419
|
-
const agentsMdDest2 = path.join(destDir, 'AGENTS.md');
|
|
420
|
-
if (fs.existsSync(agentsMdSrc2)) {
|
|
421
|
-
filesToCreate.push({
|
|
422
|
-
src: agentsMdSrc2,
|
|
423
|
-
dest: agentsMdDest2,
|
|
424
|
-
relativePath: `.agents/skills/${skill}/AGENTS.md`,
|
|
425
|
-
type: 'file',
|
|
426
|
-
});
|
|
427
|
-
}
|
|
428
|
-
} else {
|
|
429
|
-
// Copy entire skill folder
|
|
430
|
-
filesToCreate.push({
|
|
431
|
-
src: srcDir,
|
|
432
|
-
dest: destDir,
|
|
433
|
-
relativePath: `.agents/skills/${skill}/`,
|
|
434
|
-
type: 'folder',
|
|
435
|
-
});
|
|
436
|
-
}
|
|
405
|
+
// Copy entire skill folder
|
|
406
|
+
filesToCreate.push({
|
|
407
|
+
src: srcDir,
|
|
408
|
+
dest: destDir,
|
|
409
|
+
relativePath: `.agents/skills/${skill}/`,
|
|
410
|
+
type: 'folder',
|
|
411
|
+
});
|
|
437
412
|
}
|
|
438
413
|
}
|
|
439
414
|
|
|
@@ -679,6 +654,11 @@ ${colors.cyan}Next steps:${colors.reset}
|
|
|
679
654
|
2. Commit the .agents/ folder and adapter files to git
|
|
680
655
|
3. Your AI agents will now follow consistent guidelines
|
|
681
656
|
|
|
657
|
+
${colors.cyan}Optional skills:${colors.reset}
|
|
658
|
+
|
|
659
|
+
${colors.bright}npx add-skill vercel-labs/agent-skills${colors.reset}
|
|
660
|
+
Install Vercel's React best practices (45+ performance rules)
|
|
661
|
+
|
|
682
662
|
${colors.cyan}Useful commands:${colors.reset}
|
|
683
663
|
|
|
684
664
|
${colors.bright}npx agents-init --force${colors.reset} Regenerate all config files
|
|
@@ -3,7 +3,7 @@ applyTo: '**'
|
|
|
3
3
|
---
|
|
4
4
|
# Development Standards and Best Practices
|
|
5
5
|
|
|
6
|
-
This document outlines the standards and best practices for
|
|
6
|
+
This document outlines the standards and best practices for Application Development which uses React, TypeScript, Material UI, and follows the [Airbnb style guide](https://airbnb.io/javascript/) page.
|
|
7
7
|
|
|
8
8
|
## Web Interface Guidelines - Development Standards and Guidelines
|
|
9
9
|
ALWAYS refer to the `.github/instructions/web-interface-guidelines.instructions.md` file for detailed explicit guidelines to follow when building _any_ web interface.
|
|
@@ -4,7 +4,7 @@ applyTo: '**/*.md, **/*.mdx'
|
|
|
4
4
|
|
|
5
5
|
# GitHub Issue Creation Instructions
|
|
6
6
|
|
|
7
|
-
Use these instructions to create well-structured, comprehensive GitHub issues for the
|
|
7
|
+
Use these instructions to create well-structured, comprehensive GitHub issues for the Application Development.
|
|
8
8
|
|
|
9
9
|
## Issue Structure Template
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@ applyTo: '**/*.md, **/*.mdx'
|
|
|
4
4
|
|
|
5
5
|
# GitHub Release Notes Instructions
|
|
6
6
|
|
|
7
|
-
This document provides comprehensive instructions for creating professional, well-structured GitHub release notes for the
|
|
7
|
+
This document provides comprehensive instructions for creating professional, well-structured GitHub release notes for the Application Development. Release notes are published in two formats: a **detailed version** and a **summary version**.
|
|
8
8
|
|
|
9
9
|
## File Naming and Location
|
|
10
10
|
|
|
@@ -5,7 +5,7 @@ Provide project context and coding guidelines that AI should follow when generat
|
|
|
5
5
|
|
|
6
6
|
# /build.storybook - Scaffold Storybook Story
|
|
7
7
|
|
|
8
|
-
Generate a Storybook story file following the
|
|
8
|
+
Generate a Storybook story file following the Application Development patterns.
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
- `/build.storybook ComponentName` - Creates basic story with Primary/Secondary variants
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "A comprehensive knowledge base and skill library for building production-grade React applications with AI-powered tools and best practices.",
|
|
5
5
|
"author": "Eric Thayer",
|
|
6
6
|
"license": "MIT",
|
|
@@ -12,7 +12,7 @@ Analyze the last git commit and create a comprehensive PR description.
|
|
|
12
12
|
1. **Get the latest commit details:**
|
|
13
13
|
- Use `mcp_github_get_commit` with:
|
|
14
14
|
- owner: `ericthayer`
|
|
15
|
-
- repo: `
|
|
15
|
+
- repo: `agents-config`
|
|
16
16
|
- sha: Get from `git log -1 --pretty=format:"%H"`
|
|
17
17
|
- include_diff: `true`
|
|
18
18
|
|
|
@@ -66,7 +66,7 @@ gh pr create \
|
|
|
66
66
|
See `.github/GITHUB_AUTH_SETUP.md` for authentication setup.
|
|
67
67
|
|
|
68
68
|
## Context
|
|
69
|
-
- Repository: github.com/ericthayer/
|
|
69
|
+
- Repository: github.com/ericthayer/agents-config
|
|
70
70
|
- Default base branch: `main`
|
|
71
71
|
- See `.github/pr-template-commits.md` for reusable PR description template
|
|
72
72
|
- See `.github/GITHUB_AUTH_SETUP.md` for GitHub authentication guide
|