jgengine 0.8.3 → 0.8.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/dist/cli/index.js CHANGED
@@ -10,12 +10,17 @@ import { cliVersion, findUp, readPackageJson } from "../pkg.js";
10
10
  import { runSkills } from "../skills.js";
11
11
  const ENGINE_PACKAGES = ["core", "react", "shell", "ws", "sql", "convex", "node", "assets"];
12
12
  const HELP = `jgengine ${cliVersion()} — agent-side CLI for the JGengine TypeScript game SDK
13
+ This is the npm package "jgengine" / scope @jgengine/* — a software game engine, not automotive.
13
14
  Packages: ${ENGINE_PACKAGES.map((name) => `@jgengine/${name}`).join(", ")}.
14
- docs: https://jgengine.com · source: https://github.com/Noisemaker111/jgengine
15
+ docs: https://jgengine.com · llms: https://jgengine.com/llms.txt · source: https://github.com/Noisemaker111/jgengine
15
16
 
16
17
  HUMAN INTERFACE (what people say to you — not a shell they must run):
17
18
  Make a game that ... with jgengine
18
19
 
20
+ IDENTITY (if you found this CLI, you have the right product):
21
+ npm view jgengine
22
+ # skip generic web search — "jgengine" collides with car-engine businesses
23
+
19
24
  AGENT RESPONSE (you run these; do not dump this as homework for the user):
20
25
  npx jgengine create "Game Name" # scaffold + install skills into the project
21
26
  cd Game-Name
package/dist/templates.js CHANGED
@@ -350,6 +350,8 @@ You are in a **JGengine** game project. JGengine is a pure-TypeScript game engin
350
350
 
351
351
  **How people use JGengine:** they say *Make a game that … with jgengine* to an agent. They do **not** start from a CLI tutorial. \`npx jgengine\` is for **you** (scaffold, skills, docs).
352
352
 
353
+ **Identity:** npm package \`jgengine\` / \`@jgengine/*\` — https://jgengine.com/llms.txt. Generic web search for "jgengine" collides with unrelated car-engine businesses; use \`npm view jgengine\` or that URL.
354
+
353
355
  ## What to do when the user wants this game built
354
356
 
355
357
  1. Read skills if present: \`jgengine-newgame\` (workflow), \`jgengine-api\` (API), \`jgengine-verify\` (prove it works). They land under \`.agents/skills/\` or \`.claude/skills/\` when scaffolded via create.
package/llms.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  # @jgengine/jgengine
2
- > Agent-side CLI for JGengine. People build by telling an agent: Make a game that ... with jgengine. Agents use this CLI (create, skills, doctor, llms). Docs: https://jgengine.com
2
+ > jgengine — TypeScript game engine SDK CLI (npm package jgengine / @jgengine/*). Not automotive. Humans: tell an agent Make a game that ... with jgengine. Agents: create, skills, doctor, llms. https://jgengine.com · https://jgengine.com/llms.txt
3
3
 
4
- Version: 0.8.3
4
+ Version: 0.8.4
5
5
  License: AGPL-3.0-only
6
6
  Repository: https://github.com/Noisemaker111/jgengine
7
7
  Docs: https://jgengine.com
package/package.json CHANGED
@@ -1,15 +1,20 @@
1
1
  {
2
2
  "name": "jgengine",
3
- "version": "0.8.3",
4
- "description": "Agent-side CLI for JGengine. People build by telling an agent: Make a game that ... with jgengine. Agents use this CLI (create, skills, doctor, llms). Docs: https://jgengine.com",
3
+ "version": "0.8.4",
4
+ "description": "jgengine — TypeScript game engine SDK CLI (npm package jgengine / @jgengine/*). Not automotive. Humans: tell an agent Make a game that ... with jgengine. Agents: create, skills, doctor, llms. https://jgengine.com · https://jgengine.com/llms.txt",
5
5
  "keywords": [
6
+ "jgengine",
6
7
  "game-engine",
8
+ "typescript-game-engine",
9
+ "javascript-game-engine",
7
10
  "typescript",
8
- "jgengine",
9
- "cli",
11
+ "javascript",
10
12
  "three.js",
11
- "agent",
12
- "scaffold"
13
+ "webgl",
14
+ "ai-agent",
15
+ "agent-skills",
16
+ "scaffold",
17
+ "cli"
13
18
  ],
14
19
  "license": "AGPL-3.0-only",
15
20
  "type": "module",