@hraness/oh 0.2.6 → 0.2.7

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
@@ -40,16 +40,16 @@ direct libSQL authority also support Node 24 serverless runtimes. Install the
40
40
  exact current release from npm:
41
41
 
42
42
  ```sh
43
- bun add --global @hraness/oh@0.2.6
43
+ bun add --global @hraness/oh@0.2.7
44
44
  oh --help
45
45
  ```
46
46
 
47
47
  The identical package bytes and their checksum are available from the
48
- [immutable GitHub Release](https://github.com/hraness/oh/releases/tag/v0.2.6),
48
+ [immutable GitHub Release](https://github.com/hraness/oh/releases/tag/v0.2.7),
49
49
  including the mirrored
50
- [`hraness-oh-0.2.6.tgz`](https://github.com/hraness/oh/releases/download/v0.2.6/hraness-oh-0.2.6.tgz)
50
+ [`hraness-oh-0.2.7.tgz`](https://github.com/hraness/oh/releases/download/v0.2.7/hraness-oh-0.2.7.tgz)
51
51
  and
52
- [`SHA256SUMS`](https://github.com/hraness/oh/releases/download/v0.2.6/SHA256SUMS).
52
+ [`SHA256SUMS`](https://github.com/hraness/oh/releases/download/v0.2.7/SHA256SUMS).
53
53
 
54
54
  Oh writes to `.oh/oh.sqlite` and the `default` space unless you select another
55
55
  path or space. Keep `.oh/` out of source control.
@@ -107,7 +107,7 @@ For a project dependency, pin the same immutable release in `package.json`:
107
107
  ```json
108
108
  {
109
109
  "dependencies": {
110
- "@hraness/oh": "0.2.6"
110
+ "@hraness/oh": "0.2.7"
111
111
  }
112
112
  }
113
113
  ```
@@ -545,9 +545,9 @@ keep remote sync explicit.
545
545
  You can also give an agent this prompt:
546
546
 
547
547
  ```text
548
- Install @hraness/oh@0.2.6 from npm and use its packaged Oh Agent Skill. The
549
- exact npm tarball and SHA256SUMS are mirrored by the immutable v0.2.6 Release at
550
- https://github.com/hraness/oh/releases/tag/v0.2.6. Verify the CLI with
548
+ Install @hraness/oh@0.2.7 from npm and use its packaged Oh Agent Skill. The
549
+ exact npm tarball and SHA256SUMS are mirrored by the immutable v0.2.7 Release at
550
+ https://github.com/hraness/oh/releases/tag/v0.2.7. Verify the CLI with
551
551
  `oh --help` and `oh version`.
552
552
  Do not create or modify an Oh database until I name its path and ask you to.
553
553
  ```
package/dist/cli.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env bun
2
- export declare const OH_PACKAGE_VERSION: "0.2.6";
2
+ export declare const OH_PACKAGE_VERSION: "0.2.7";
3
3
  export declare function runOhCli(arguments_: readonly string[]): Promise<number>;
4
4
  //# sourceMappingURL=cli.d.ts.map
package/dist/cli.js CHANGED
@@ -3072,7 +3072,7 @@ class Oh {
3072
3072
 
3073
3073
  // src/cli.ts
3074
3074
  import { readFile } from "fs/promises";
3075
- var OH_PACKAGE_VERSION = "0.2.6";
3075
+ var OH_PACKAGE_VERSION = "0.2.7";
3076
3076
  var KNOWN_OPTIONS = new Set([
3077
3077
  "actor",
3078
3078
  "after",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hraness/oh",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
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.2.6`. Its identical
34
- tarball and checksum are mirrored by the immutable GitHub Release `v0.2.6`.
33
+ The supported CLI is the exact npm release `@hraness/oh@0.2.7`. Its identical
34
+ tarball and checksum are mirrored by the immutable GitHub Release `v0.2.7`.
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, parseOhSyncBundleV1 } from "./sync";
11
11
 
12
- export const OH_PACKAGE_VERSION = "0.2.6" as const;
12
+ export const OH_PACKAGE_VERSION = "0.2.7" as const;
13
13
 
14
14
  type ParsedArguments = { options: Map<string, string[]>; positionals: string[] };
15
15
  type ValidatedInvocation = Readonly<{