@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 +8 -8
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
- package/skills/oh/SKILL.md +2 -2
- package/src/cli.ts +1 -1
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.
|
|
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.
|
|
82
|
+
[immutable GitHub Release](https://github.com/hraness/oh/releases/tag/v0.4.1),
|
|
83
83
|
including the mirrored
|
|
84
|
-
[`hraness-oh-0.4.
|
|
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.
|
|
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.
|
|
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.
|
|
723
|
-
exact npm tarball and SHA256SUMS are mirrored by the immutable v0.4.
|
|
724
|
-
https://github.com/hraness/oh/releases/tag/v0.4.
|
|
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
package/dist/cli.js
CHANGED
package/package.json
CHANGED
package/skills/oh/SKILL.md
CHANGED
|
@@ -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.
|
|
34
|
-
tarball and checksum are mirrored by the immutable GitHub Release `v0.4.
|
|
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.
|
|
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<{
|