@nuucognition/flint-cli 0.4.0-alpha.2 → 0.5.0-alpha.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/dist/{chunk-TTXIQOT3.js → chunk-HZD727IL.js} +4091 -2096
- package/dist/{chunk-NFM75BMP.js → chunk-O7OVKLLV.js} +2 -2
- package/dist/{chunk-JNF2DSZM.js → chunk-PONDZIXS.js} +2 -2
- package/dist/{chunk-GQSLJAUU.js → chunk-XCVQLFHY.js} +129 -37
- package/dist/{chunk-AUNE7HYH.js → chunk-ZP5A4PAH.js} +5 -4
- package/dist/{dist-JRUBIV33.js → dist-UIVVEOGP.js} +115 -25
- package/dist/{exports-AFOJ3JTW-IM354CSW.js → exports-E3262H6I-A4GXPTSR.js} +4 -2
- package/dist/index.js +5185 -1377
- package/dist/{mesh-config-TEPKR6QZ-TINWSM6H.js → mesh-config-BAIYF4KD-QNNQOBSL.js} +13 -9
- package/dist/{metadata-XC5LTUVJ-SZQLR3Q7.js → metadata-SJT4H53O-EXBS6PS4.js} +2 -2
- package/dist/presets/blank/preset.toml +6 -0
- package/dist/presets/default/preset.toml +8 -10
- package/dist/{registry-HLABZE3X-UM7FWWRH.js → registry-YN5W7EY7-2W767O74.js} +1 -1
- package/package.json +6 -5
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
FLINT_VERSION,
|
|
5
5
|
addExportToConfig,
|
|
6
6
|
addLatticeDeclaration,
|
|
7
|
-
addLatticeReference,
|
|
8
7
|
addMeshExportToConfig,
|
|
8
|
+
addPlateDeclaration,
|
|
9
9
|
addShardToConfig,
|
|
10
10
|
addSourceRepository,
|
|
11
11
|
addWorkspaceRepository,
|
|
@@ -19,9 +19,10 @@ import {
|
|
|
19
19
|
getLatticeDeclaration,
|
|
20
20
|
getLatticeDeclarations,
|
|
21
21
|
getLatticeFulfillment,
|
|
22
|
-
getLatticeReference,
|
|
23
|
-
getLatticeReferences,
|
|
24
22
|
getMeshExportSources,
|
|
23
|
+
getPlateDeclaration,
|
|
24
|
+
getPlateDeclarations,
|
|
25
|
+
getPlateDeclarationsFromConfig,
|
|
25
26
|
getRequiredShardNames,
|
|
26
27
|
getShardDeclarations,
|
|
27
28
|
getShardDeclarationsFromConfig,
|
|
@@ -42,27 +43,28 @@ import {
|
|
|
42
43
|
recordMigration,
|
|
43
44
|
removeExportFromConfig,
|
|
44
45
|
removeLatticeDeclaration,
|
|
45
|
-
removeLatticeReference,
|
|
46
46
|
removeMeshExportFromConfig,
|
|
47
|
+
removePlateDeclaration,
|
|
47
48
|
removeShardFromConfig,
|
|
48
49
|
removeSourceRepository,
|
|
49
50
|
removeWorkspaceRepository,
|
|
50
51
|
resolveShardMode,
|
|
52
|
+
setPlateRepo,
|
|
51
53
|
stampSynced,
|
|
52
54
|
stampVersion,
|
|
53
55
|
toKebabCase,
|
|
54
56
|
toSnakeCase,
|
|
55
57
|
writeFlintJson,
|
|
56
58
|
writeFlintToml
|
|
57
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-XCVQLFHY.js";
|
|
58
60
|
export {
|
|
59
61
|
FLINT_CONFIG_FILENAME,
|
|
60
62
|
FLINT_JSON_FILENAME,
|
|
61
63
|
FLINT_VERSION,
|
|
62
64
|
addExportToConfig,
|
|
63
65
|
addLatticeDeclaration,
|
|
64
|
-
addLatticeReference,
|
|
65
66
|
addMeshExportToConfig,
|
|
67
|
+
addPlateDeclaration,
|
|
66
68
|
addShardToConfig,
|
|
67
69
|
addSourceRepository,
|
|
68
70
|
addWorkspaceRepository,
|
|
@@ -76,9 +78,10 @@ export {
|
|
|
76
78
|
getLatticeDeclaration,
|
|
77
79
|
getLatticeDeclarations,
|
|
78
80
|
getLatticeFulfillment,
|
|
79
|
-
getLatticeReference,
|
|
80
|
-
getLatticeReferences,
|
|
81
81
|
getMeshExportSources,
|
|
82
|
+
getPlateDeclaration,
|
|
83
|
+
getPlateDeclarations,
|
|
84
|
+
getPlateDeclarationsFromConfig,
|
|
82
85
|
getRequiredShardNames,
|
|
83
86
|
getShardDeclarations,
|
|
84
87
|
getShardDeclarationsFromConfig,
|
|
@@ -99,12 +102,13 @@ export {
|
|
|
99
102
|
recordMigration,
|
|
100
103
|
removeExportFromConfig,
|
|
101
104
|
removeLatticeDeclaration,
|
|
102
|
-
removeLatticeReference,
|
|
103
105
|
removeMeshExportFromConfig,
|
|
106
|
+
removePlateDeclaration,
|
|
104
107
|
removeShardFromConfig,
|
|
105
108
|
removeSourceRepository,
|
|
106
109
|
removeWorkspaceRepository,
|
|
107
110
|
resolveShardMode,
|
|
111
|
+
setPlateRepo,
|
|
108
112
|
stampSynced,
|
|
109
113
|
stampVersion,
|
|
110
114
|
toKebabCase,
|
|
@@ -13,8 +13,8 @@ import {
|
|
|
13
13
|
resolveSource,
|
|
14
14
|
syncSourceMeshExportMetadata,
|
|
15
15
|
syncSourceRepoMetadata
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
} from "./chunk-PONDZIXS.js";
|
|
17
|
+
import "./chunk-XCVQLFHY.js";
|
|
18
18
|
export {
|
|
19
19
|
ensureMetadataDirs,
|
|
20
20
|
generateSourceMeshExportMetadata,
|
|
@@ -4,14 +4,12 @@ description = "Standard flint with default shards"
|
|
|
4
4
|
|
|
5
5
|
[shards]
|
|
6
6
|
required = [
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"flint",
|
|
14
|
-
"
|
|
15
|
-
"orbcode",
|
|
16
|
-
"projects",
|
|
7
|
+
"NUU-Cognition/shard-claude-code",
|
|
8
|
+
"NUU-Cognition/shard-agents",
|
|
9
|
+
"NUU-Cognition/shard-increments",
|
|
10
|
+
"NUU-Cognition/shard-plan",
|
|
11
|
+
"NUU-Cognition/shard-notepad",
|
|
12
|
+
"NUU-Cognition/shard-reports",
|
|
13
|
+
"NUU-Cognition/shard-flint",
|
|
14
|
+
"NUU-Cognition/shard-projects",
|
|
17
15
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuucognition/flint-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0-alpha.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Flint cognitive workspace CLI",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -28,13 +28,14 @@
|
|
|
28
28
|
"typescript": "^5.9.2",
|
|
29
29
|
"@nuucognition/eslint-config": "0.0.0",
|
|
30
30
|
"@nuucognition/flint": "0.1.0",
|
|
31
|
-
"@nuucognition/flint-migrations": "0.1.0",
|
|
32
31
|
"@nuucognition/flint-server": "0.0.1",
|
|
33
|
-
"@nuucognition/
|
|
34
|
-
"@nuucognition/
|
|
32
|
+
"@nuucognition/orbh": "0.1.0",
|
|
33
|
+
"@nuucognition/flint-migrations": "0.1.0",
|
|
34
|
+
"@nuucognition/typescript-config": "0.0.0",
|
|
35
|
+
"@nuucognition/flint-runtime": "0.0.1"
|
|
35
36
|
},
|
|
36
37
|
"scripts": {
|
|
37
|
-
"predev": "pnpm --dir ../../packages/flint build && pnpm --dir ../../packages/flint-migrations build && pnpm --dir ../../packages/flint-runtime build && pnpm --dir ../../packages/flint-server build",
|
|
38
|
+
"predev": "pnpm --dir ../../packages/orbh build && pnpm --dir ../../packages/flint build && pnpm --dir ../../packages/flint-migrations build && pnpm --dir ../../packages/flint-runtime build && pnpm --dir ../../packages/flint-server build",
|
|
38
39
|
"dev": "FLINT_MODE=dev tsx src/index.ts",
|
|
39
40
|
"build": "tsup",
|
|
40
41
|
"typecheck": "tsc --noEmit",
|