@vudovn/antigravity-kit 1.0.5 → 1.0.7

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
@@ -136,9 +136,19 @@ Workflows are step-by-step procedures. Invoke with slash command `/workflow-name
136
136
 
137
137
  ## šŸ“¦ Installation
138
138
 
139
- ### Using CLI (Recommended)
139
+ ### Install Global (Recommended)
140
140
 
141
- Install the `.agent` folder directly into your project using `npx`:
141
+ ```bash
142
+ # Install globally
143
+ npm install -g @vudovn/antigravity-kit
144
+
145
+ # Then use commands anywhere
146
+ ag-kit init
147
+ ag-kit update
148
+ ag-kit status
149
+ ```
150
+
151
+ ### Using npx (No Install)
142
152
 
143
153
  ```bash
144
154
  # Navigate to your project
@@ -148,13 +158,33 @@ cd your-project
148
158
  npx @vudovn/antigravity-kit init
149
159
  ```
150
160
 
151
- #### CLI Commands
161
+ ### CLI Commands
152
162
 
153
163
  | Command | Description |
154
164
  |---------|-------------|
155
- | `npx @vudovn/antigravity-kit init` | Install `.agent` folder into current directory |
156
- | `npx @vudovn/antigravity-kit update` | Update `.agent` to the latest version |
157
- | `npx @vudovn/antigravity-kit status` | Check installation status |
165
+ | `ag-kit init` | Install `.agent` folder into current directory |
166
+ | `ag-kit update` | Update `.agent` to the latest version |
167
+ | `ag-kit status` | Check installation status |
168
+
169
+ #### Command Options
170
+
171
+ ```bash
172
+ # init options
173
+ ag-kit init [options]
174
+ -f, --force # Overwrite if folder already exists
175
+ -p, --path <dir> # Path to the project directory
176
+ -b, --branch <name> # Select repository branch
177
+
178
+ # update options
179
+ ag-kit update [options]
180
+ -f, --force # Skip confirmation prompt
181
+ -p, --path <dir> # Path to the project directory
182
+ -b, --branch <name> # Select repository branch
183
+
184
+ # status options
185
+ ag-kit status [options]
186
+ -p, --path <dir> # Path to the project directory
187
+ ```
158
188
 
159
189
  ---
160
190
 
package/bin/index.js CHANGED
@@ -167,7 +167,7 @@ const initCommand = async (options) => {
167
167
  // Cleanup
168
168
  cleanup(tempDir);
169
169
 
170
- spinner.succeed(chalk.green('āœ… Installation successful!'));
170
+ spinner.succeed(chalk.green('Installation successful!'));
171
171
 
172
172
  // Success message
173
173
  console.log(chalk.gray('\n────────────────────────────────────────'));
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@vudovn/antigravity-kit",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "CLI tool to setup Antigravity Kit skills and MCPs",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
- "ag-kit": "./bin/index.js",
9
- "antigravity-kit": "./bin/index.js"
8
+ "ag-kit": "./bin/index.js"
10
9
  },
11
10
  "files": [
12
11
  "bin",
@@ -42,8 +42,8 @@ export default function Hero() {
42
42
  const [scrollY, setScrollY] = useState(0);
43
43
  const [typedText, setTypedText] = useState("");
44
44
  const [showCursor, setShowCursor] = useState(true);
45
- const installCommand = "npx @vudovn/antigravity-kit init";
46
- const fullCommand = "@vudovn/antigravity-kit init";
45
+ const installCommand = "npm install -g @vudovn/antigravity-kit";
46
+ const fullCommand = "install -g @vudovn/antigravity-kit";
47
47
 
48
48
  // Parallax scroll effect
49
49
  useEffect(() => {
@@ -236,7 +236,7 @@ export default function Hero() {
236
236
  <div className="p-4 flex items-center justify-between gap-4">
237
237
  <code className="font-mono text-sm md:text-base">
238
238
  <span className="text-[#22c55e]">$</span>{" "}
239
- <span className="text-[#c084fc]">npx</span>{" "}
239
+ <span className="text-[#c084fc]">npm</span>{" "}
240
240
  <span className="text-white">{typedText}</span>
241
241
  {showCursor && <span className="typing-cursor" />}
242
242
  </code>
@@ -27,15 +27,15 @@ const TerminalDots = () => (
27
27
 
28
28
  const steps = [
29
29
  {
30
- title: "Navigate to project",
31
- command: "cd",
32
- args: "your-project",
33
- copyable: false,
30
+ title: "Install globally",
31
+ command: "npm",
32
+ args: "install -g @vudovn/antigravity-kit",
33
+ copyable: true,
34
34
  },
35
35
  {
36
- title: "Install the kit",
37
- command: "npx",
38
- args: "@vudovn/antigravity-kit init",
36
+ title: "Initialize in your project",
37
+ command: "ag-kit",
38
+ args: "init",
39
39
  copyable: true,
40
40
  },
41
41
  {