@rafinery/cli 0.8.5 → 0.8.6
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
|
@@ -230,11 +230,13 @@ export const RELEASES = [
|
|
|
230
230
|
"update` re-vendors the cards.",
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
|
-
version: "0.8.
|
|
233
|
+
version: "0.8.6",
|
|
234
234
|
contract: 1,
|
|
235
235
|
plans: 2,
|
|
236
236
|
requires: "update",
|
|
237
237
|
summary:
|
|
238
|
+
"(0.8.5 was an unusable publish — npm shipped the `@rafinery/okf: workspace:*` dep " +
|
|
239
|
+
"literally; republished via `pnpm publish`, which rewrites it to a real version.) " +
|
|
238
240
|
"Doctrine: the reconciler is the org brain's ONLY trunk writer. `rafa push` " +
|
|
239
241
|
"(direct brain-trunk write) is RETIRED — a scan now LANDS through the commit hooks: " +
|
|
240
242
|
"commit your code on a feature branch (post-commit mirrors the validated .rafa/ " +
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rafinery/cli",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "rafa
|
|
3
|
+
"version": "0.8.6",
|
|
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": {
|
|
7
7
|
"rafa": "bin/rafa.mjs",
|
|
@@ -18,16 +18,11 @@
|
|
|
18
18
|
"node": ">=18"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@rafinery/okf": "
|
|
21
|
+
"@rafinery/okf": "0.1.1"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"bundle": "node scripts/bundle-blueprint.mjs",
|
|
28
|
-
"prepare": "node scripts/bundle-blueprint.mjs",
|
|
29
|
-
"test": "node --test"
|
|
30
|
-
},
|
|
31
26
|
"keywords": [
|
|
32
27
|
"rafa",
|
|
33
28
|
"rafinery",
|
|
@@ -43,5 +38,9 @@
|
|
|
43
38
|
"url": "git+https://github.com/rafinery-ai/rafinery.git",
|
|
44
39
|
"directory": "packages/cli"
|
|
45
40
|
},
|
|
46
|
-
"homepage": "https://github.com/rafinery-ai/rafinery/tree/main/packages/cli"
|
|
47
|
-
|
|
41
|
+
"homepage": "https://github.com/rafinery-ai/rafinery/tree/main/packages/cli",
|
|
42
|
+
"scripts": {
|
|
43
|
+
"bundle": "node scripts/bundle-blueprint.mjs",
|
|
44
|
+
"test": "node --test"
|
|
45
|
+
}
|
|
46
|
+
}
|