@dgxo/mashadevcli 1.1.2 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +11 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,11 @@
1
1
  # Masha Dev
2
- > 🍴 **Masha Dev CLI** is a fork of [Gemini CLI](https://github.com/google-gemini/gemini-cli) by Google,
3
- > rebranded and extended with multi-provider support (Gemini + OpenRouter) and a custom AI persona.
4
- > Original project is licensed under Apache 2.0.
5
- > ⚠️ Masha Dev CLI requires a proper `MASHA.md` persona file, `skills/`, and `system-prompts/` directory to function as intended. Without them, this is just a standard Gemini CLI fork. Get the full Masha setup at [MashaAIPersona](https://repo.dgxo.my.id/DGameXO/MashaAIPersona).
2
+ > 🍴 **Fork Notice:** Masha Dev CLI is a fork of [Gemini CLI](https://github.com/google-gemini/gemini-cli) by Google, rebranded and extended with multi-provider support (Gemini + OpenRouter) and a custom AI persona. Original project is licensed under Apache 2.0.
3
+ >
4
+ > ⚠️ **Setup Required:** Masha requires a `MASHA.md` persona file, `skills/`, and `system-prompts/` to work as intended. Get the full setup at [MashaAIPersona](https://repo.dgxo.my.id/DGameXO/MashaAIPersona).
6
5
 
7
6
  [![Masha Dev CI](https://github.com/DGameGT/mashadev-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/DGameGT/mashadev-cli/actions/workflows/ci.yml)
8
7
  [![Masha Dev E2E (Chained)](https://github.com/DGameGT/mashadev-cli/actions/workflows/chained_e2e.yml/badge.svg)](https://github.com/DGameGT/mashadev-cli/actions/workflows/chained_e2e.yml)
9
- [![Version](https://img.shields.io/npm/v/mashadev-cli)](https://www.npmjs.com/package/mashadev-cli)
8
+ [![Version](https://img.shields.io/npm/v/@dgxo/mashadevcli)](https://www.npmjs.com/package/@dgxo/mashadevcli)
10
9
  [![License](https://img.shields.io/github/license/DGameGT/mashadev-cli)](https://github.com/DGameGT/mashadev-cli/blob/main/LICENSE)
11
10
  [![View Code Wiki](https://assets.codewiki.google/readme-badge/static.svg)](https://codewiki.google/github.com/DGameGT/mashadev-cli?utm_source=badge&utm_medium=github&utm_campaign=github.com/DGameGT/mashadev-cli)
12
11
 
@@ -43,13 +42,13 @@ for recommended system specifications and a detailed installation guide.
43
42
 
44
43
  ```bash
45
44
  # Using npx (no installation required)
46
- npx mashadev-cli
45
+ npx @dgxo/mashadevcli
47
46
  ```
48
47
 
49
48
  #### Install globally with npm
50
49
 
51
50
  ```bash
52
- npm install -g mashadev-cli
51
+ npm install -g @dgxo/mashadevcli
53
52
  ```
54
53
 
55
54
  #### Install globally with Homebrew (macOS/Linux)
@@ -72,7 +71,7 @@ conda create -y -n mashadev_env -c conda-forge nodejs
72
71
  conda activate mashadev_env
73
72
 
74
73
  # Install Masha Dev globally via npm (inside the environment)
75
- npm install -g mashadev-cli
74
+ npm install -g @dgxo/mashadevcli
76
75
  ```
77
76
 
78
77
  ## Release Cadence and Tags
@@ -86,7 +85,7 @@ releases will not have been fully vetted and may contain regressions or other
86
85
  outstanding issues. Please help us test and install with `preview` tag.
87
86
 
88
87
  ```bash
89
- npm install -g mashadev-cli@preview
88
+ npm install -g @dgxo/mashadevcli@preview
90
89
  ```
91
90
 
92
91
  ### Stable
@@ -96,7 +95,7 @@ npm install -g mashadev-cli@preview
96
95
  and validations. Use `latest` tag.
97
96
 
98
97
  ```bash
99
- npm install -g mashadev-cli@latest
98
+ npm install -g @dgxo/mashadevcli@latest
100
99
  ```
101
100
 
102
101
  ### Nightly
@@ -106,7 +105,7 @@ npm install -g mashadev-cli@latest
106
105
  there are pending validations and issues. Use `nightly` tag.
107
106
 
108
107
  ```bash
109
- npm install -g mashadev-cli@nightly
108
+ npm install -g @dgxo/mashadevcli@nightly
110
109
  ```
111
110
 
112
111
  ## 📋 Key Features
@@ -372,7 +371,7 @@ for planned features and priorities.
372
371
 
373
372
  - **[Official Roadmap](./ROADMAP.md)** - See what's coming next.
374
373
  - **[Changelog](./docs/changelogs/index.md)** - See recent notable updates.
375
- - **[NPM Package](https://www.npmjs.com/package/mashadev-cli)** - Package
374
+ - **[NPM Package](https://www.npmjs.com/package/@dgxo/mashadevcli)** - Package
376
375
  registry.
377
376
  - **[GitHub Issues](https://github.com/DGameGT/mashadev-cli/issues)** -
378
377
  Report bugs or request features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgxo/mashadevcli",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },