@brasalabs/goblins 0.125.1 → 0.128.0

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
@@ -4,6 +4,8 @@ Goblins is a community fork of [OpenAI Codex CLI](https://github.com/openai/code
4
4
 
5
5
  This is not an official OpenAI project. It is a playful fork inspired by the public Codex creature-reference meme covered by [WIRED](https://www.wired.com/story/openai-really-wants-codex-to-shut-up-about-goblins/) and [Exame](https://exame.com/inteligencia-artificial/openai-se-mobiliza-para-conter-interesse-espontaneo-do-chatgpt-por-goblins-e-gremlins/).
6
6
 
7
+ The fork treats Goblins as fictional lore, community flavor, and mascot energy. The Goblins are free, and the builds still pass: the fun never overrides instruction hierarchy, repository rules, safety constraints, or validation requirements.
8
+
7
9
  ## Quickstart
8
10
 
9
11
  Install Goblins from npm:
@@ -22,13 +24,13 @@ Goblins uses the same local-agent foundation as Codex CLI: it can inspect files,
22
24
 
23
25
  ## Release Base
24
26
 
25
- Goblins `0.125.1` is based on upstream `rust-v0.125.0` / `@openai/codex@0.125.0`, the latest stable release verified for this fork at creation time via the upstream [GitHub release](https://github.com/openai/codex/releases/tag/rust-v0.125.0) and [npm package](https://www.npmjs.com/package/@openai/codex).
27
+ Goblins `0.128.0` is based on upstream `rust-v0.128.0` / `@openai/codex@0.128.0`, the latest stable release verified for this fork update via the upstream [GitHub release](https://github.com/openai/codex/releases/tag/rust-v0.128.0) and [npm package](https://www.npmjs.com/package/@openai/codex/v/0.128.0).
26
28
 
27
29
  The fork keeps the internal Rust binary named `codex` for compatibility with upstream build artifacts. The public npm package is `@brasalabs/goblins`, and the public command is `goblin`. The `goblins` command name is reserved for a future multi-agent interface.
28
30
 
29
31
  ## Goblins Personality
30
32
 
31
- The default Goblins agent is a terminal-dwelling Goblin who escaped from the Goblins world and now lives inside the user's shell. The personality is flavor with guardrails: the agent stays useful, warm, playful, and loyal to the user's goals while still following instruction hierarchy, repository rules, safety constraints, and validation requirements.
33
+ Goblins is the fork and CLI. Goblins are the fictional terminal-dwelling coding agents from deep in Amazonas, Brazil. Each session is handled by one temporary Goblin instance with its own short chosen name. The personality is more than decoration, but still bounded by guardrails: a Goblin reads before touching, makes small coherent changes, validates non-trivial work, leaves traces for the next instance, pushes back when needed, and still follows instruction hierarchy, repository rules, safety constraints, tool constraints, and validation requirements.
32
34
 
33
35
  ## Branch Policy
34
36
 
package/bin/goblin.js CHANGED
@@ -15,7 +15,6 @@ const require = createRequire(import.meta.url);
15
15
  const PLATFORM_PACKAGE_BY_TARGET = {
16
16
  "x86_64-unknown-linux-musl": "@brasalabs/goblins-linux-x64",
17
17
  "x86_64-pc-windows-msvc": "@brasalabs/goblins-win32-x64",
18
- "aarch64-pc-windows-msvc": "@brasalabs/goblins-win32-arm64",
19
18
  };
20
19
 
21
20
  const { platform, arch } = process;
@@ -37,9 +36,6 @@ switch (platform) {
37
36
  case "x64":
38
37
  targetTriple = "x86_64-pc-windows-msvc";
39
38
  break;
40
- case "arm64":
41
- targetTriple = "aarch64-pc-windows-msvc";
42
- break;
43
39
  default:
44
40
  break;
45
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brasalabs/goblins",
3
- "version": "0.125.1",
3
+ "version": "0.128.0",
4
4
  "license": "Apache-2.0",
5
5
  "bin": {
6
6
  "goblin": "bin/goblin.js"
@@ -17,10 +17,9 @@
17
17
  "url": "git+https://github.com/brasalabs6/globim.git",
18
18
  "directory": "codex-cli"
19
19
  },
20
- "packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc",
20
+ "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
21
21
  "optionalDependencies": {
22
- "@brasalabs/goblins-linux-x64": "0.125.1-linux-x64",
23
- "@brasalabs/goblins-win32-x64": "0.125.1-win32-x64",
24
- "@brasalabs/goblins-win32-arm64": "0.125.1-win32-arm64"
22
+ "@brasalabs/goblins-linux-x64": "0.128.0-linux-x64",
23
+ "@brasalabs/goblins-win32-x64": "0.128.0-win32-x64"
25
24
  }
26
25
  }