@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 CHANGED
@@ -1,15 +1,13 @@
1
1
  # aief-init
2
2
 
3
- Optional bootstrap CLI for AI Engineering Framework (AIEF).
3
+ This is the short alias package for:
4
4
 
5
- Run without copying any AIEF files into your repo:
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
@@ -1,5 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ // Keep logic identical to the canonical package.
4
+
3
5
  import fs from 'node:fs'
4
6
  import path from 'node:path'
5
7
  import process from 'node:process'
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@tongsh6/aief-init",
3
- "version": "0.1.0",
4
- "description": "Optional bootstrap CLI for AI Engineering Framework (AIEF)",
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": "./bin/aief-init.mjs"
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"