hacker-bob-codex 1.2.4 → 1.2.5

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 +32 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # hacker-bob-codex
2
+
3
+ Codex adapter wrapper for [Hacker Bob](https://www.npmjs.com/package/hacker-bob).
4
+
5
+ This package is intentionally tiny: it ships a single `hacker-bob-codex` CLI shim that pins `--adapter codex` and delegates to the canonical `hacker-bob` runtime, which is pulled in as a dependency. Use it when you want a dedicated Codex install command without remembering the `--adapter` flag.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npx -y hacker-bob-codex install /path/to/your/project
11
+ ```
12
+
13
+ The wrapper installs the full Hacker Bob framework into the target project under `.codex/plugins/`, `.hacker-bob/`, and the project's `.mcp.json`. After installing, restart Codex in that project and use `$bob-hunt <target>`.
14
+
15
+ ## Other commands
16
+
17
+ ```bash
18
+ npx -y hacker-bob-codex update /path/to/your/project
19
+ npx -y hacker-bob-codex check-update /path/to/your/project
20
+ npx -y hacker-bob-codex doctor /path/to/your/project
21
+ npx -y hacker-bob-codex uninstall /path/to/your/project
22
+ ```
23
+
24
+ Explicit `--adapter` flags are respected, so multi-adapter installs continue to work.
25
+
26
+ ## Links
27
+
28
+ - Canonical CLI: [`hacker-bob`](https://www.npmjs.com/package/hacker-bob)
29
+ - Claude Code adapter wrapper: [`hacker-bob-cc`](https://www.npmjs.com/package/hacker-bob-cc)
30
+ - Source and documentation: <https://github.com/vmihalis/hacker-bob>
31
+
32
+ Released under the Apache-2.0 license.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hacker-bob-codex",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Hacker Bob — Codex adapter wrapper. Pins --adapter codex and delegates to the canonical hacker-bob CLI.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -18,9 +18,10 @@
18
18
  "node": ">=20"
19
19
  },
20
20
  "files": [
21
- "bin/hacker-bob-codex.js"
21
+ "bin/hacker-bob-codex.js",
22
+ "README.md"
22
23
  ],
23
24
  "dependencies": {
24
- "hacker-bob": "1.2.4"
25
+ "hacker-bob": "1.2.5"
25
26
  }
26
27
  }