@tongsh6/aief-init 0.1.0 → 0.2.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 -6
- package/bin/aief-init.mjs +2 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
# aief-init
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is the short alias package for:
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
@tongsh6/ai-engineering-framework-init
|
|
6
|
+
|
|
7
|
+
Recommended usage:
|
|
6
8
|
|
|
7
9
|
npx --yes @tongsh6/aief-init@latest new
|
|
8
10
|
|
|
9
11
|
npx --yes @tongsh6/aief-init@latest retrofit --level L0
|
|
10
12
|
|
|
11
13
|
npx --yes @tongsh6/aief-init@latest retrofit --level L0+
|
|
12
|
-
|
|
13
|
-
Notes:
|
|
14
|
-
- It only writes AIEF entry files (AGENTS.md + context/*). It does not modify your existing code structure.
|
|
15
|
-
- By default it will not overwrite existing files. Use --force to overwrite.
|
package/bin/aief-init.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tongsh6/aief-init",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Short alias for @tongsh6/ai-engineering-framework-init",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"aief-init": "
|
|
8
|
+
"aief-init": "bin/aief-init.mjs"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/tongsh6/ai-engineering-framework.git"
|
|
23
|
+
"url": "git+https://github.com/tongsh6/ai-engineering-framework.git"
|
|
24
24
|
},
|
|
25
25
|
"bugs": {
|
|
26
26
|
"url": "https://github.com/tongsh6/ai-engineering-framework/issues"
|