@warpgogol/forge 0.19.3 → 0.19.4

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
@@ -190,7 +190,7 @@ You should see version information, not an error.
190
190
  - **"EACCES permission denied" on Ubuntu when installing Forge globally** — Run `sudo pnpm add -g @warpgogol/forge` instead.
191
191
  - **"corepack: command not found"** — Your Node.js version is too old. Install Node.js 22+ using the steps above.
192
192
  - **Windsurf can't find `forge`** — Close and reopen Windsurf after installing Forge. IDEs need to restart to pick up new global commands.
193
- - **AI agent doesn't know about Forge** — You opened an empty folder, but the AI agent has no Forge context. Run `forge create my-project --profile editframe` (or the appropriate profile) in a terminal first, then open the created folder in your IDE. The `forge create` command populates the folder with skills, configuration, and `AGENTS.md` — without it, the AI agent can't discover Forge.
193
+ - **AI agent doesn't know about Forge** — You opened an empty folder, but the AI agent has no Forge context. Run `forge create --name my-project --profile editframe` (or the appropriate profile) in a terminal first, then open the created folder in your IDE. The `forge create` command populates the folder with skills, configuration, and `AGENTS.md` — without it, the AI agent can't discover Forge.
194
194
 
195
195
  ---
196
196
 
@@ -205,7 +205,7 @@ You need to run one command in the terminal to create your project. After that,
205
205
  1. **Create a Forge project.** Open a terminal (PowerShell on Windows, Terminal on Ubuntu) and run:
206
206
 
207
207
  ```sh
208
- forge create my-brand-video --profile editframe
208
+ forge create --name my-brand-video --profile editframe
209
209
  ```
210
210
 
211
211
  Replace `my-brand-video` with your project name (lowercase letters and hyphens). This creates a new folder with everything Forge needs — skills, configuration, and project structure. For other project types, use a different `--profile`:
@@ -254,7 +254,7 @@ If you already have a project somewhere else and want to move it into Forge:
254
254
  1. **Create a Forge project.** Open a terminal and run:
255
255
 
256
256
  ```sh
257
- forge create my-project
257
+ forge create --name my-project
258
258
  ```
259
259
 
260
260
  Then open the created folder in your AI IDE.
@@ -282,20 +282,20 @@ Just tell the AI agent. It can check the project's health, fix issues, and expla
282
282
 
283
283
  ```sh
284
284
  # Create a new project (scaffold + init + skills + AGENTS.md in one command)
285
- forge create my-project
285
+ forge create --name my-project
286
286
 
287
287
  # With a specific stack profile
288
- forge create my-site --profile astro-typescript-turborepo
289
- forge create my-game --profile phaser-turborepo
290
- forge create my-video --profile editframe
291
- forge create my-library --profile forge-shell
288
+ forge create --name my-site --profile astro-typescript-turborepo
289
+ forge create --name my-game --profile phaser-turborepo
290
+ forge create --name my-video --profile editframe
291
+ forge create --name my-library --profile forge-shell
292
292
 
293
293
  ```
294
294
 
295
295
  If Forge is not installed globally, use `pnpm dlx` instead:
296
296
 
297
297
  ```sh
298
- pnpm dlx @warpgogol/forge create my-project
298
+ pnpm dlx @warpgogol/forge create --name my-project
299
299
  ```
300
300
 
301
301
  #### Bring an existing project into Forge
@@ -304,7 +304,7 @@ There is no CLI command for transplant — it is an interactive, AI-guided proce
304
304
 
305
305
  ```sh
306
306
  # 1. Create a new empty Forge project
307
- forge create my-project
307
+ forge create --name my-project
308
308
 
309
309
  # 2. Open the project in Windsurf (tested with forge) or your preferred IDE
310
310
 
package/README.uk.md CHANGED
@@ -190,7 +190,7 @@ ffmpeg -version
190
190
  - **«EACCES permission denied» в Ubuntu під час глобального встановлення Forge** — Виконайте `sudo pnpm add -g @warpgogol/forge`.
191
191
  - **«corepack: command not found»** — Ваша версія Node.js занадто стара. Встановіть Node.js 22+ за кроками вище.
192
192
  - **Windsurf не бачить `forge`** — Закрийте та знову відкрийте Windsurf після встановлення Forge. IDE потрібно перезапустити, щоб підхопити нові глобальні команди.
193
- - **ШІ-агент не знає про Forge** — Ви відкрили порожню папку, але ШІ-агент не має контексту Forge. Спочатку виконайте `forge create my-project --profile editframe` (або відповідний профіль) у терміналі, потім відкрийте створену папку в вашому IDE. Команда `forge create` наповнює папку навичками, конфігурацією та `AGENTS.md` — без цього ШІ-агент не може виявити Forge.
193
+ - **ШІ-агент не знає про Forge** — Ви відкрили порожню папку, але ШІ-агент не має контексту Forge. Спочатку виконайте `forge create --name my-project --profile editframe` (або відповідний профіль) у терміналі, потім відкрийте створену папку в вашому IDE. Команда `forge create` наповнює папку навичками, конфігурацією та `AGENTS.md` — без цього ШІ-агент не може виявити Forge.
194
194
 
195
195
  ---
196
196
 
@@ -205,7 +205,7 @@ ffmpeg -version
205
205
  1. **Створіть проєкт Forge.** Відкрийте термінал (PowerShell на Windows, Термінал на Ubuntu) і виконайте:
206
206
 
207
207
  ```sh
208
- forge create my-brand-video --profile editframe
208
+ forge create --name my-brand-video --profile editframe
209
209
  ```
210
210
 
211
211
  Замініть `my-brand-video` на назву вашого проєкту (малі літери та дефіси). Це створить нову папку з усьом, що потрібно Forge — навичками, конфігурацією та структурою проєкту. Для інших типів проєктів використовуйте інший `--profile`:
@@ -254,7 +254,7 @@ ffmpeg -version
254
254
  1. **Створіть проєкт Forge.** Відкрийте термінал і виконайте:
255
255
 
256
256
  ```sh
257
- forge create my-project
257
+ forge create --name my-project
258
258
  ```
259
259
 
260
260
  Потім відкрийте створену папку в вашому IDE.
@@ -282,20 +282,20 @@ ffmpeg -version
282
282
 
283
283
  ```sh
284
284
  # Створити новий проєкт (каркас + ініціалізація + навички + AGENTS.md однією командою)
285
- forge create my-project
285
+ forge create --name my-project
286
286
 
287
287
  # З конкретним профілем стеку
288
- forge create my-site --profile astro-typescript-turborepo
289
- forge create my-game --profile phaser-turborepo
290
- forge create my-video --profile editframe
291
- forge create my-library --profile forge-shell
288
+ forge create --name my-site --profile astro-typescript-turborepo
289
+ forge create --name my-game --profile phaser-turborepo
290
+ forge create --name my-video --profile editframe
291
+ forge create --name my-library --profile forge-shell
292
292
 
293
293
  ```
294
294
 
295
295
  Якщо Forge не встановлено глобально, використовуйте `pnpm dlx`:
296
296
 
297
297
  ```sh
298
- pnpm dlx @warpgogol/forge create my-project
298
+ pnpm dlx @warpgogol/forge create --name my-project
299
299
  ```
300
300
 
301
301
  #### Перенесення наявного проєкту у Forge
@@ -304,7 +304,7 @@ CLI-команди для перенесення немає — це інтер
304
304
 
305
305
  ```sh
306
306
  # 1. Створіть новий порожній проєкт Forge
307
- forge create my-project
307
+ forge create --name my-project
308
308
 
309
309
  # 2. Відкрийте проєкт у Windsurf (протестовано з Forge) або вашому IDE
310
310
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warpgogol/forge",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -51,7 +51,7 @@ Prioritize getting all answers before starting to build. This minimizes wait tim
51
51
 
52
52
  ### 3. Scaffold
53
53
 
54
- Run `forge create --profile editframe` to scaffold the project with Forge governance (invariants, AGENTS.md templates, forge skills). The `editframe` profile scaffolds a React + TypeScript + Vite project with `@editframe/react` pre-configured.
54
+ Run `forge create --name <project-name> --profile editframe` to scaffold the project with Forge governance (invariants, AGENTS.md templates, forge skills). The `editframe` profile scaffolds a React + TypeScript + Vite project with `@editframe/react` pre-configured.
55
55
 
56
56
  If `forge create` fails (missing profile, network error, permission issue), report the error to the operator and stop. Do not proceed to subsequent steps without a scaffolded project.
57
57