@nuucognition/flint-cli 0.4.0-alpha.2 → 0.5.0-alpha.1

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.
@@ -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-GQSLJAUU.js";
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-JNF2DSZM.js";
17
- import "./chunk-GQSLJAUU.js";
16
+ } from "./chunk-PONDZIXS.js";
17
+ import "./chunk-XCVQLFHY.js";
18
18
  export {
19
19
  ensureMetadataDirs,
20
20
  generateSourceMeshExportMetadata,
@@ -1,3 +1,9 @@
1
1
  [preset]
2
2
  name = "blank"
3
3
  description = "Empty flint with no shards"
4
+
5
+ [shards]
6
+ required = [
7
+ "NUU-Cognition/shard-claude-code",
8
+ "NUU-Cognition/shard-flint",
9
+ ]
@@ -4,14 +4,12 @@ description = "Standard flint with default shards"
4
4
 
5
5
  [shards]
6
6
  required = [
7
- "increments",
8
- "plan",
9
- "notepad",
10
- "reports",
11
- "comments",
12
- "learn",
13
- "flint",
14
- "knap",
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
  ]
@@ -12,7 +12,7 @@ import {
12
12
  unregisterFlint,
13
13
  updateFlintEntry,
14
14
  upsertFlintEntry
15
- } from "./chunk-NFM75BMP.js";
15
+ } from "./chunk-O7OVKLLV.js";
16
16
  export {
17
17
  cleanRegistryFile,
18
18
  findFlintByName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuucognition/flint-cli",
3
- "version": "0.4.0-alpha.2",
3
+ "version": "0.5.0-alpha.1",
4
4
  "type": "module",
5
5
  "description": "Flint cognitive workspace CLI",
6
6
  "license": "PROPRIETARY",
@@ -27,14 +27,15 @@
27
27
  "tsx": "^4.19.2",
28
28
  "typescript": "^5.9.2",
29
29
  "@nuucognition/eslint-config": "0.0.0",
30
- "@nuucognition/flint": "0.1.0",
31
- "@nuucognition/flint-migrations": "0.1.0",
32
30
  "@nuucognition/flint-server": "0.0.1",
31
+ "@nuucognition/flint": "0.1.0",
33
32
  "@nuucognition/flint-runtime": "0.0.1",
33
+ "@nuucognition/flint-migrations": "0.1.0",
34
+ "@nuucognition/orbh": "0.1.0",
34
35
  "@nuucognition/typescript-config": "0.0.0"
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",