@brasalabs/goblins 0.128.0 → 0.128.2
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 +4 -2
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Goblins uses the same local-agent foundation as Codex CLI: it can inspect files,
|
|
|
24
24
|
|
|
25
25
|
## Release Base
|
|
26
26
|
|
|
27
|
-
Goblins `0.128.
|
|
27
|
+
Goblins `0.128.2` 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).
|
|
28
28
|
|
|
29
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.
|
|
30
30
|
|
|
@@ -32,9 +32,11 @@ The fork keeps the internal Rust binary named `codex` for compatibility with ups
|
|
|
32
32
|
|
|
33
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.
|
|
34
34
|
|
|
35
|
+
Runtime prompt fallbacks live in `prompts/goblin.md` and `prompts/personalities/`. Goblins attempts to refresh those prompts from the GitHub raw prompt catalog at session startup, caches successful fetches locally, and falls back to the compiled files when remote loading fails. Personality prompts are standalone system prompts: selecting a personality replaces the base Goblin prompt for that session. The dynamic catalog currently covers the built-in `friendly` and `pragmatic` personality IDs.
|
|
36
|
+
|
|
35
37
|
## Branch Policy
|
|
36
38
|
|
|
37
|
-
`main` belongs to upstream and must remain an upstream mirror. Fork work happens on `
|
|
39
|
+
`main` belongs to upstream and must remain an upstream mirror. Fork work happens on `goblins`, which is the public default branch for Goblins. See [GOBLINS.md](GOBLINS.md) for the full branch and release contract.
|
|
38
40
|
|
|
39
41
|
## License
|
|
40
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brasalabs/goblins",
|
|
3
|
-
"version": "0.128.
|
|
3
|
+
"version": "0.128.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"goblin": "bin/goblin.js"
|
|
@@ -14,12 +14,11 @@
|
|
|
14
14
|
],
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/brasalabs6/
|
|
17
|
+
"url": "git+https://github.com/brasalabs6/goblins.git",
|
|
18
18
|
"directory": "codex-cli"
|
|
19
19
|
},
|
|
20
20
|
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@brasalabs/goblins-linux-x64": "0.128.
|
|
23
|
-
"@brasalabs/goblins-win32-x64": "0.128.0-win32-x64"
|
|
22
|
+
"@brasalabs/goblins-linux-x64": "0.128.2-linux-x64"
|
|
24
23
|
}
|
|
25
24
|
}
|