agents-templated 2.2.4 → 2.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/bin/cli.js +2 -2
- package/lib/layout.js +3 -3
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -122,7 +122,7 @@ program
|
|
|
122
122
|
choices: [
|
|
123
123
|
{ name: 'All components', value: 'all' },
|
|
124
124
|
{ name: 'Documentation files (agent-docs/)', value: 'docs' },
|
|
125
|
-
{ name: 'Agent rules (.
|
|
125
|
+
{ name: 'Agent rules (.claude/rules/*.mdc)', value: 'rules' },
|
|
126
126
|
{ name: 'Skills (.github/skills/*)', value: 'skills' },
|
|
127
127
|
{ name: 'AI Agent instructions (Cursor, Copilot, Claude, Generic AGENTS)', value: 'github' },
|
|
128
128
|
{ name: 'Agent subagents (.claude/agents/*.md)', value: 'subagents' }
|
|
@@ -403,7 +403,7 @@ program
|
|
|
403
403
|
.action(() => {
|
|
404
404
|
console.log(chalk.blue.bold('\nAvailable Components:\n'));
|
|
405
405
|
console.log(chalk.yellow('docs') + ' - Documentation files (agent-docs/ directory)');
|
|
406
|
-
console.log(chalk.yellow('rules') + ' - Agent rules (.
|
|
406
|
+
console.log(chalk.yellow('rules') + ' - Agent rules (.claude/rules/*.mdc)');
|
|
407
407
|
console.log(chalk.yellow('skills') + ' - Agent skills (.github/skills/*)');
|
|
408
408
|
console.log(chalk.yellow('github') + ' - AI Agent instructions (Cursor, Copilot, Claude, Generic AGENTS)');
|
|
409
409
|
console.log(chalk.yellow('subagents') + ' - Agent subagents (.claude/agents/*.md)');
|
package/lib/layout.js
CHANGED
|
@@ -4,16 +4,16 @@ const fs = require('fs-extra');
|
|
|
4
4
|
const LAYOUT = {
|
|
5
5
|
canonical: {
|
|
6
6
|
docsDir: 'agent-docs',
|
|
7
|
-
rulesDir: '.
|
|
7
|
+
rulesDir: '.claude/rules',
|
|
8
8
|
skillsDir: '.github/skills',
|
|
9
9
|
subagentsDir: '.claude/agents'
|
|
10
10
|
},
|
|
11
11
|
legacy: {
|
|
12
|
-
rulesDirs: ['agents/rules'],
|
|
12
|
+
rulesDirs: ['agents/rules', '.github/instructions/rules'],
|
|
13
13
|
skillsDirs: ['agents/skills']
|
|
14
14
|
},
|
|
15
15
|
compatible: {
|
|
16
|
-
rulesDirs: ['.
|
|
16
|
+
rulesDirs: ['.github/instructions'],
|
|
17
17
|
skillsDirs: ['.claude/skills', '.agents/skills']
|
|
18
18
|
}
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-templated",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.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": {
|