@genex-ai/cli-demo 1.6.1-dev.409 → 1.6.2-dev.411
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genex-ai/cli-demo",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2-dev.411",
|
|
4
4
|
"description": "Set up your project's agent workspace (.claude/.codex/.cursor in the game folder), authorize, create a game project, generate AI assets, and publish (genex CLI).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -227,11 +227,6 @@ in the player's save, because re-applying that on every boot would be a bug.
|
|
|
227
227
|
|
|
228
228
|
### Testing the shop you just built
|
|
229
229
|
|
|
230
|
-
You cannot buy from your own game — the server refuses it as self-dealing, which
|
|
231
|
-
is the rule that stops someone laundering their own coin into earnings. So do
|
|
232
|
-
not try to verify a shop by buying from it while signed in as its owner; you
|
|
233
|
-
will get a refusal and it is not a bug.
|
|
234
|
-
|
|
235
230
|
```bash
|
|
236
231
|
npx genex shop test <sku-id> # a free copy, for the owner only
|
|
237
232
|
```
|
|
@@ -240,6 +235,10 @@ That grants the entitlement without a sale — no coin moves — so the delivery
|
|
|
240
235
|
path, the inventory and the effect all run exactly as they would after a real
|
|
241
236
|
purchase. Reload the game and it should be there.
|
|
242
237
|
|
|
238
|
+
You *can* also just buy your own item, but it costs you the full price and pays
|
|
239
|
+
you nothing: your share of a sale you funded goes to the platform, never into
|
|
240
|
+
your own earnings. Use the test grant instead.
|
|
241
|
+
|
|
243
242
|
## Checklist
|
|
244
243
|
|
|
245
244
|
- [ ] Items exist (`npx genex shop list`) before the shop UI is written
|