agents-templated 1.2.7 → 1.2.8
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 +1 -0
- package/bin/cli.js +5 -3
- package/package.json +1 -1
- package/templates/README.md +1 -0
- package/templates/agents/skills/README.md +2 -0
package/README.md
CHANGED
|
@@ -134,6 +134,7 @@ your-project/
|
|
|
134
134
|
│ │ └── style.mdc # Code style guidelines
|
|
135
135
|
│ └── skills/
|
|
136
136
|
│ ├── find-skills/ # Skill discovery helper
|
|
137
|
+
│ ├── ui-ux-pro-max/ # Advanced UI/UX design implementation skill
|
|
137
138
|
│ ├── README.md # Guide for creating custom skills
|
|
138
139
|
│ └── [your-custom-skills]/ # Your project-specific skills
|
|
139
140
|
│
|
package/bin/cli.js
CHANGED
|
@@ -428,7 +428,7 @@ program
|
|
|
428
428
|
console.log(chalk.blue.bold('\nAvailable Components:\n'));
|
|
429
429
|
console.log(chalk.yellow('docs') + ' - Documentation files (agent-docs/ directory)');
|
|
430
430
|
console.log(chalk.yellow('rules') + ' - Agent rules (core, database, frontend, security, testing, style)');
|
|
431
|
-
console.log(chalk.yellow('skills') + ' - Agent skills (find-skills,
|
|
431
|
+
console.log(chalk.yellow('skills') + ' - Agent skills (find-skills, ui-ux-pro-max)');
|
|
432
432
|
console.log(chalk.yellow('github') + ' - AI Agent instructions (Cursor, Copilot, VSCode, Gemini)');
|
|
433
433
|
console.log(chalk.yellow('all') + ' - All components');
|
|
434
434
|
|
|
@@ -657,7 +657,7 @@ program
|
|
|
657
657
|
console.log(chalk.blue.bold('\n🔄 Checking for template updates...\n'));
|
|
658
658
|
|
|
659
659
|
// Check if templates are installed
|
|
660
|
-
const hasTemplates = await fs.pathExists(path.join(targetDir, 'AGENTS.
|
|
660
|
+
const hasTemplates = await fs.pathExists(path.join(targetDir, 'AGENTS.md')) ||
|
|
661
661
|
await fs.pathExists(path.join(targetDir, 'agents'));
|
|
662
662
|
|
|
663
663
|
if (!hasTemplates) {
|
|
@@ -728,10 +728,12 @@ program
|
|
|
728
728
|
const checkFiles = [
|
|
729
729
|
{ file: 'AGENTS.md', component: 'root' },
|
|
730
730
|
{ file: 'agent-docs/ARCHITECTURE.md', component: 'docs' },
|
|
731
|
-
{ file: 'AGENTS.md', component: 'root' },
|
|
732
731
|
{ file: 'agents/rules/security.mdc', component: 'rules' },
|
|
733
732
|
{ file: 'agents/rules/testing.mdc', component: 'rules' },
|
|
734
733
|
{ file: 'agents/rules/core.mdc', component: 'rules' },
|
|
734
|
+
{ file: 'agents/skills/README.md', component: 'skills' },
|
|
735
|
+
{ file: 'agents/skills/find-skills/SKILL.md', component: 'skills' },
|
|
736
|
+
{ file: 'agents/skills/ui-ux-pro-max/SKILL.md', component: 'skills' },
|
|
735
737
|
{ file: '.github/copilot-instructions.md', component: 'github' }
|
|
736
738
|
];
|
|
737
739
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-templated",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
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": {
|
package/templates/README.md
CHANGED
|
@@ -130,6 +130,7 @@ your-project/
|
|
|
130
130
|
│ │ └── style.mdc # Code style guidelines
|
|
131
131
|
│ └── skills/
|
|
132
132
|
│ ├── find-skills/ # Skill discovery helper
|
|
133
|
+
│ ├── ui-ux-pro-max/ # Advanced UI/UX design implementation skill
|
|
133
134
|
│ ├── README.md # Guide for creating custom skills
|
|
134
135
|
│ └── [your-custom-skills]/ # Your project-specific skills
|
|
135
136
|
│
|
|
@@ -57,6 +57,8 @@ To create a new skill for your specific domain:
|
|
|
57
57
|
agents/skills/
|
|
58
58
|
├── find-skills/
|
|
59
59
|
│ └── SKILL.md # Meta-skill for discovering skills
|
|
60
|
+
├── ui-ux-pro-max/
|
|
61
|
+
│ └── SKILL.md # Premium UI/UX implementation patterns
|
|
60
62
|
├── my-custom-skill/
|
|
61
63
|
│ └── SKILL.md # Your custom skill
|
|
62
64
|
└── README.md # This file
|