@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 +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
|
@@ -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.
|
|
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.
|
|
48
|
+
[immutable GitHub Release](https://github.com/hraness/oh/releases/tag/v0.2.7),
|
|
49
49
|
including the mirrored
|
|
50
|
-
[`hraness-oh-0.2.
|
|
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.
|
|
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.
|
|
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.
|
|
549
|
-
exact npm tarball and SHA256SUMS are mirrored by the immutable v0.2.
|
|
550
|
-
https://github.com/hraness/oh/releases/tag/v0.2.
|
|
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
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.2.
|
|
34
|
-
tarball and checksum are mirrored by the immutable GitHub Release `v0.2.
|
|
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.
|
|
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<{
|