@rafinery/cli 0.8.10 → 0.8.11

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) Atai Barkai
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
File without changes
File without changes
File without changes
package/lib/releases.mjs CHANGED
@@ -246,13 +246,13 @@ export const RELEASES = [
246
246
  "`git merge` + push to main reconciles too. `rafa update` re-vendors the scan SOP.",
247
247
  },
248
248
  {
249
- version: "0.8.10",
249
+ version: "0.8.11",
250
250
  contract: 1,
251
251
  plans: 2,
252
252
  requires: "update",
253
253
  summary:
254
254
  "(0.8.7/0.8.9 were unusable publishes — npm shipped the `workspace:*` dep " +
255
- "literally; both unpublished, `pnpm publish` is the only publish path.) " +
255
+ "literally; all unpublished a prepublishOnly guard now BLOCKS npm publish outright.) " +
256
256
  "FRESH-SLATE BRANCH MIRRORING: a NEW code branch's brain-mirror branch is cut " +
257
257
  "FROM THE REMOTE TRUNK (the published org brain; fetched fresh, offline-safe " +
258
258
  "fallback ladder) — never from whatever branch the local .rafa mirror sat on. " +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rafinery/cli",
3
- "version": "0.8.10",
3
+ "version": "0.8.11",
4
4
  "description": "rafa — the AI engineer CLI. Vendors the rafa blueprint into your repo (shadcn-style) and runs the deterministic contract gates.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,16 +17,11 @@
17
17
  "node": ">=18"
18
18
  },
19
19
  "dependencies": {
20
- "@rafinery/okf": "workspace:*"
20
+ "@rafinery/okf": "0.1.1"
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "scripts": {
26
- "bundle": "node scripts/bundle-blueprint.mjs",
27
- "prepare": "node scripts/bundle-blueprint.mjs",
28
- "test": "node --test"
29
- },
30
25
  "keywords": [
31
26
  "rafa",
32
27
  "rafinery",
@@ -42,5 +37,9 @@
42
37
  "url": "git+https://github.com/rafinery-ai/rafinery.git",
43
38
  "directory": "packages/cli"
44
39
  },
45
- "homepage": "https://github.com/rafinery-ai/rafinery/tree/main/packages/cli"
46
- }
40
+ "homepage": "https://github.com/rafinery-ai/rafinery/tree/main/packages/cli",
41
+ "scripts": {
42
+ "bundle": "node scripts/bundle-blueprint.mjs",
43
+ "test": "node --test"
44
+ }
45
+ }