@opum-ai/lore 0.6.2 → 0.7.0

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
@@ -30,23 +30,23 @@ semantic exit codes, machine-readable `--json`).
30
30
 
31
31
  - Built on **Bun + TypeScript** with an exact-pinned **Commander** parser fed by
32
32
  Lore's capability manifest; Lore still owns output, errors, and process lifecycle.
33
- - Published on npm as **`@opum-ai/lore@0.6.1`** (bin `lore`) with six
33
+ - Published on npm as **`@opum-ai/lore@0.6.2`** (bin `lore`) with six
34
34
  exact-pinned platform packages, including Windows ARM64.
35
35
  - The agent bridge is a generated **`.claude/skills/lore/SKILL.md`** plus a tiny
36
36
  CLAUDE.md nudge and `lore instructions`. An **MCP server is secondary and
37
37
  deferred to v2**.
38
38
 
39
- > **Status: 0.6.1 released.** Tag `v0.6.1`, the qualified workflow artifacts,
40
- > all seven public `@opum-ai/lore*` npm packages, and a clean registry install
41
- > agree on `0.6.1`.
39
+ > **Status: 0.6.2 released.** Tag `v0.6.2`, the qualified workflow artifacts,
40
+ > all seven public `@opum-ai/lore*` npm packages with `latest` moved on each,
41
+ > and a clean-room registry install agree on `0.6.2`.
42
42
  >
43
43
  > **Releases are currently manual, not a single dispatch.** OIDC trusted
44
44
  > publishing is configured on every package but cannot authenticate: GitHub
45
45
  > issues immutable-format OIDC subject claims for this repository and npm
46
46
  > matches the classic form, so `publish: true` fails with `E404` (LCLI-482).
47
- > `0.6.1` was therefore published with `scripts/publish-release.sh` and, unlike
48
- > `0.6.0`, **carries no provenance attestation** — provenance requires the CI
49
- > OIDC path. See
47
+ > `0.6.2` was therefore published with `scripts/publish-release.sh` and, like
48
+ > `0.6.1` but unlike `0.6.0`, **carries no provenance attestation** — a manual
49
+ > publish cannot mint one, and provenance requires the CI OIDC path. See
50
50
  > [Lore CLI release truth](docs/reference/lore-cli-release-truth.md).
51
51
 
52
52
  ---
package/bin/lore.cjs CHANGED
@@ -54,7 +54,7 @@ function resolveBinaryPath() {
54
54
  let pkgJsonPath;
55
55
  try {
56
56
  pkgJsonPath = require.resolve(`${pkgName}/package.json`);
57
- } catch (err) {
57
+ } catch (/** @type {any} */ err) {
58
58
  if (err && err.code === "MODULE_NOT_FOUND") {
59
59
  return null;
60
60
  }
@@ -104,7 +104,7 @@ function main() {
104
104
  let binaryPath;
105
105
  try {
106
106
  binaryPath = resolveBinaryPath();
107
- } catch (err) {
107
+ } catch (/** @type {any} */ err) {
108
108
  process.stderr.write(
109
109
  `lore: unexpected error resolving the compiled binary for ${platformPackageName()}: ${err.message}\n`,
110
110
  );
@@ -114,9 +114,9 @@ function main() {
114
114
  process.stderr.write(
115
115
  `lore: no compiled binary found for this platform (${process.platform}-${process.arch}).\n` +
116
116
  `Expected the optional dependency "${platformPackageName()}" to be installed alongside\n` +
117
- `@opum-ai/lore, but it is missing. If your platform/architecture is one lore\n` +
118
- `ships (macOS x64/arm64, Linux x64/arm64, Windows x64/arm64), try reinstalling with npm;\n` +
119
- `otherwise this platform is not yet supported.\n`,
117
+ "@opum-ai/lore, but it is missing. If your platform/architecture is one lore\n" +
118
+ "ships (macOS x64/arm64, Linux x64/arm64, Windows x64/arm64), try reinstalling with npm;\n" +
119
+ "otherwise this platform is not yet supported.\n",
120
120
  );
121
121
  process.exit(1);
122
122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opum-ai/lore",
3
- "version": "0.6.2",
3
+ "version": "0.7.0",
4
4
  "author": "Opum AI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -38,12 +38,12 @@
38
38
  "zod": "4.4.3"
39
39
  },
40
40
  "optionalDependencies": {
41
- "@opum-ai/lore-darwin-arm64": "0.6.2",
42
- "@opum-ai/lore-darwin-x64": "0.6.2",
43
- "@opum-ai/lore-linux-arm64": "0.6.2",
44
- "@opum-ai/lore-linux-x64": "0.6.2",
45
- "@opum-ai/lore-win32-arm64": "0.6.2",
46
- "@opum-ai/lore-win32-x64": "0.6.2"
41
+ "@opum-ai/lore-darwin-arm64": "0.7.0",
42
+ "@opum-ai/lore-darwin-x64": "0.7.0",
43
+ "@opum-ai/lore-linux-arm64": "0.7.0",
44
+ "@opum-ai/lore-linux-x64": "0.7.0",
45
+ "@opum-ai/lore-win32-arm64": "0.7.0",
46
+ "@opum-ai/lore-win32-x64": "0.7.0"
47
47
  },
48
48
  "bin": {
49
49
  "lore": "bin/lore.cjs"
@@ -68,9 +68,10 @@
68
68
  "scripts": {
69
69
  "lore": "bun run src/cli.ts",
70
70
  "build": "bun build --compile src/compiled.ts --outfile dist/lore",
71
- "typecheck": "tsc --noEmit",
71
+ "typecheck": "tsc --noEmit && tsc -p tsconfig.scripts.json --noEmit",
72
72
  "format": "biome format --write .",
73
73
  "lint": "biome check .",
74
+ "lint:shell": "bash scripts/lint-shell.sh",
74
75
  "lint:fix": "biome check --write .",
75
76
  "test": "bun test",
76
77
  "test:browser": "playwright test",