magicpath-ai 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +13 -13
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ## Quick Start
6
6
 
7
7
  ```bash
8
- npx magicpath@latest clone -k <your-access-key>
8
+ npx magicpath-ai@latest clone -k <your-access-key>
9
9
  ```
10
10
 
11
11
  ## Installation
@@ -15,21 +15,21 @@ npx magicpath@latest clone -k <your-access-key>
15
15
  No installation required! Just run:
16
16
 
17
17
  ```bash
18
- npx magicpath@latest clone -k <access-key>
18
+ npx magicpath-ai@latest clone -k <access-key>
19
19
  ```
20
20
 
21
21
  ### Global Installation
22
22
 
23
23
  ```bash
24
- npm install -g magicpath
25
- magicpath clone -k <access-key>
24
+ npm install -g magicpath-ai
25
+ magicpath-ai clone -k <access-key>
26
26
  ```
27
27
 
28
28
  ### Local Installation
29
29
 
30
30
  ```bash
31
- npm install magicpath
32
- npx magicpath clone -k <access-key>
31
+ npm install magicpath-ai
32
+ npx magicpath-ai clone -k <access-key>
33
33
  ```
34
34
 
35
35
  ## Usage
@@ -39,7 +39,7 @@ npx magicpath clone -k <access-key>
39
39
  Download and set up a MagicPath project locally:
40
40
 
41
41
  ```bash
42
- npx magicpath@latest clone -k <access-key> [options]
42
+ npx magicpath-ai@latest clone -k <access-key> [options]
43
43
  ```
44
44
 
45
45
  **Options:**
@@ -48,14 +48,14 @@ npx magicpath@latest clone -k <access-key> [options]
48
48
 
49
49
  **Example:**
50
50
  ```bash
51
- npx magicpath@latest clone -k mp_1234567890abcdef
51
+ npx magicpath-ai@latest clone -k mp_1234567890abcdef
52
52
  ```
53
53
 
54
54
  The CLI will:
55
- 1. =� Download your project using the access key
56
- 2. =� Prompt you to name your project (default: `magicpath-project`)
57
- 3. =� Unpack the project to a local directory
58
- 4. <� Your project is ready to go!
55
+ 1. =� Download your project using the access key
56
+ 2. =� Prompt you to name your project (default: `magicpath-project`)
57
+ 3. =� Unpack the project to a local directory
58
+ 4. <� Your project is ready to go!
59
59
 
60
60
  ## What You Get
61
61
 
@@ -100,7 +100,7 @@ When you clone a MagicPath project, you'll get a complete local copy with:
100
100
 
101
101
  ## License
102
102
 
103
- MIT � Jack Beoris
103
+ MIT � Jack Beoris
104
104
 
105
105
  ---
106
106
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "magicpath-ai",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Node CLI for MagicPath",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
8
8
  "bin": {
9
- "magicpath": "./dist/cli.js"
9
+ "magicpath-ai": "./dist/cli.js"
10
10
  },
11
11
  "engines": {
12
12
  "node": ">=16.0.0"