axiom-coding-agent-setup 1.0.0 → 1.0.2
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/.agents/skills/ai-integration/SKILL.md +314 -0
- package/.agents/skills/deployment-patterns/SKILL.md +408 -0
- package/.agents/skills/fastapi-templates/SKILL.md +540 -0
- package/.agents/skills/git-commit/SKILL.md +124 -0
- package/.agents/skills/mcp-builder/SKILL.md +292 -0
- package/.agents/skills/n8n-patterns/SKILL.md +272 -0
- package/.agents/templates/ai-engineering-python.md +508 -0
- package/.agents/templates/fullstack-ai-nextjs.md +632 -0
- package/AGENTS.md +5 -3
- package/README.md +20 -6
- package/bin/cli.js +21 -9
- package/package.json +2 -2
- package/skills-lock.json +15 -0
- /package/{.axiom → .agents}/engineering.md +0 -0
- /package/{.axiom → .agents}/stack.md +0 -0
- /package/{.axiom → .agents}/workflow.md +0 -0
package/bin/cli.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* AXIOM Coding Agent Setup CLI
|
|
5
5
|
*
|
|
6
|
-
* Downloads AGENTS.md and .
|
|
7
|
-
* into the current project directory.
|
|
6
|
+
* Downloads AGENTS.md and .agents/ folder (core docs, templates, skills)
|
|
7
|
+
* from the GitHub repository into the current project directory.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
const https = require('https');
|
|
@@ -16,10 +16,20 @@ const REPO_NAME = 'axiom-coding-agent-setup';
|
|
|
16
16
|
const BRANCH = 'main';
|
|
17
17
|
|
|
18
18
|
const FILES_TO_DOWNLOAD = [
|
|
19
|
+
// Main instructions
|
|
19
20
|
'AGENTS.md',
|
|
20
|
-
|
|
21
|
-
'.
|
|
22
|
-
'.
|
|
21
|
+
// Core agent documents
|
|
22
|
+
'.agents/engineering.md',
|
|
23
|
+
'.agents/stack.md',
|
|
24
|
+
'.agents/workflow.md',
|
|
25
|
+
// Templates (project-type conventions)
|
|
26
|
+
'.agents/templates/ai-engineering-python.md',
|
|
27
|
+
'.agents/templates/fullstack-ai-nextjs.md',
|
|
28
|
+
// Skills (domain-specific guides)
|
|
29
|
+
'.agents/skills/mcp-builder/SKILL.md',
|
|
30
|
+
'.agents/skills/n8n-patterns/SKILL.md',
|
|
31
|
+
'.agents/skills/ai-integration/SKILL.md',
|
|
32
|
+
'.agents/skills/deployment-patterns/SKILL.md'
|
|
23
33
|
];
|
|
24
34
|
|
|
25
35
|
const GITHUB_RAW_URL = `https://raw.githubusercontent.com/${REPO_OWNER}/${REPO_NAME}/${BRANCH}`;
|
|
@@ -112,10 +122,12 @@ async function main() {
|
|
|
112
122
|
|
|
113
123
|
if (successCount > 0) {
|
|
114
124
|
log('Your project now has AXIOM coding agent instructions:', 'bold');
|
|
115
|
-
log(' - AGENTS.md
|
|
116
|
-
log(' - .
|
|
117
|
-
log(' - .
|
|
118
|
-
log(' - .
|
|
125
|
+
log(' - AGENTS.md → Main agent instructions', 'cyan');
|
|
126
|
+
log(' - .agents/engineering.md → Engineering principles', 'cyan');
|
|
127
|
+
log(' - .agents/stack.md → Tech stack knowledge', 'cyan');
|
|
128
|
+
log(' - .agents/workflow.md → Workflow guidelines', 'cyan');
|
|
129
|
+
log(' - .agents/templates/ → Project-type conventions', 'cyan');
|
|
130
|
+
log(' - .agents/skills/ → Domain-specific skills\n', 'cyan');
|
|
119
131
|
}
|
|
120
132
|
|
|
121
133
|
process.exit(failCount > 0 ? 1 : 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axiom-coding-agent-setup",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CLI tool to download AXIOM coding agent setup files into your project",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -26,4 +26,4 @@
|
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=14.0.0"
|
|
28
28
|
}
|
|
29
|
-
}
|
|
29
|
+
}
|
package/skills-lock.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"skills": {
|
|
4
|
+
"fastapi-templates": {
|
|
5
|
+
"source": "wshobson/agents",
|
|
6
|
+
"sourceType": "github",
|
|
7
|
+
"computedHash": "1a5fe66bd2683afd1db9afdf37a25cd8b9195c369c98489333badf0406fc91b3"
|
|
8
|
+
},
|
|
9
|
+
"git-commit": {
|
|
10
|
+
"source": "github/awesome-copilot",
|
|
11
|
+
"sourceType": "github",
|
|
12
|
+
"computedHash": "2607fc60629b82b257136dd2a7a373f0a4466c0b49df7746d845d59313c99b21"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|