@hraness/oh 0.4.0 → 0.4.1

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
@@ -74,16 +74,16 @@ direct libSQL authority also support Node 24 serverless runtimes. Install the
74
74
  exact current release from npm:
75
75
 
76
76
  ```sh
77
- bun add --global @hraness/oh@0.4.0
77
+ bun add --global @hraness/oh@0.4.1
78
78
  oh --help
79
79
  ```
80
80
 
81
81
  The identical package bytes and their checksum are available from the
82
- [immutable GitHub Release](https://github.com/hraness/oh/releases/tag/v0.4.0),
82
+ [immutable GitHub Release](https://github.com/hraness/oh/releases/tag/v0.4.1),
83
83
  including the mirrored
84
- [`hraness-oh-0.4.0.tgz`](https://github.com/hraness/oh/releases/download/v0.4.0/hraness-oh-0.4.0.tgz)
84
+ [`hraness-oh-0.4.1.tgz`](https://github.com/hraness/oh/releases/download/v0.4.1/hraness-oh-0.4.1.tgz)
85
85
  and
86
- [`SHA256SUMS`](https://github.com/hraness/oh/releases/download/v0.4.0/SHA256SUMS).
86
+ [`SHA256SUMS`](https://github.com/hraness/oh/releases/download/v0.4.1/SHA256SUMS).
87
87
 
88
88
  Oh writes to `.oh/oh.sqlite` and the `default` space unless you select another
89
89
  path or space. Keep `.oh/` out of source control.
@@ -141,7 +141,7 @@ For a project dependency, pin the same immutable release in `package.json`:
141
141
  ```json
142
142
  {
143
143
  "dependencies": {
144
- "@hraness/oh": "0.4.0"
144
+ "@hraness/oh": "0.4.1"
145
145
  }
146
146
  }
147
147
  ```
@@ -719,9 +719,9 @@ keep remote sync explicit.
719
719
  You can also give an agent this prompt:
720
720
 
721
721
  ```text
722
- Install @hraness/oh@0.4.0 from npm and use its packaged Oh Agent Skill. The
723
- exact npm tarball and SHA256SUMS are mirrored by the immutable v0.4.0 Release at
724
- https://github.com/hraness/oh/releases/tag/v0.4.0. Verify the CLI with
722
+ Install @hraness/oh@0.4.1 from npm and use its packaged Oh Agent Skill. The
723
+ exact npm tarball and SHA256SUMS are mirrored by the immutable v0.4.1 Release at
724
+ https://github.com/hraness/oh/releases/tag/v0.4.1. Verify the CLI with
725
725
  `oh --help` and `oh version`.
726
726
  Do not create or modify an Oh database until I name its path and ask you to.
727
727
  ```
package/dist/cli.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env bun
2
- export declare const OH_PACKAGE_VERSION: "0.4.0";
2
+ export declare const OH_PACKAGE_VERSION: "0.4.1";
3
3
  export declare function runOhCli(arguments_: readonly string[]): Promise<number>;
4
4
  //# sourceMappingURL=cli.d.ts.map
package/dist/cli.js CHANGED
@@ -3836,7 +3836,7 @@ class Oh {
3836
3836
 
3837
3837
  // src/cli.ts
3838
3838
  import { lstat, readFile } from "fs/promises";
3839
- var OH_PACKAGE_VERSION = "0.4.0";
3839
+ var OH_PACKAGE_VERSION = "0.4.1";
3840
3840
  var KNOWN_OPTIONS = new Set([
3841
3841
  "actor",
3842
3842
  "after",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hraness/oh",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "open-source tools for agentic research",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -30,8 +30,8 @@ oh --help
30
30
  oh version
31
31
  ```
32
32
 
33
- The supported CLI is the exact npm release `@hraness/oh@0.4.0`. Its identical
34
- tarball and checksum are mirrored by the immutable GitHub Release `v0.4.0`.
33
+ The supported CLI is the exact npm release `@hraness/oh@0.4.1`. Its identical
34
+ tarball and checksum are mirrored by the immutable GitHub Release `v0.4.1`.
35
35
  It requires Bun 1.3.14 or newer. The versioned contract is published at
36
36
  <https://oh.computer/spec/>.
37
37
 
package/src/cli.ts CHANGED
@@ -9,7 +9,7 @@ import { Oh } from "./sdk";
9
9
  import { OH_SQLITE_SCHEMA_VERSION } from "./sqlite/migrations";
10
10
  import { createOhSyncBundleV1, OH_SYNC_BUNDLE_MAX_BYTES_V1, parseOhSyncBundleV1 } from "./sync";
11
11
 
12
- export const OH_PACKAGE_VERSION = "0.4.0" as const;
12
+ export const OH_PACKAGE_VERSION = "0.4.1" as const;
13
13
 
14
14
  type ParsedArguments = { options: Map<string, string[]>; positionals: string[] };
15
15
  type ValidatedInvocation = Readonly<{