@nuucognition/flint-cli 0.1.0-beta.0 → 0.2.0-beta.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.
@@ -2,6 +2,7 @@ import {
2
2
  FLINT_CONFIG_FILENAME,
3
3
  FLINT_JSON_FILENAME,
4
4
  FLINT_VERSION,
5
+ addExportToConfig,
5
6
  addImportToConfig,
6
7
  addLatticeReference,
7
8
  addModToConfig,
@@ -12,7 +13,9 @@ import {
12
13
  addWorkspaceSourceRepository,
13
14
  createFlintJson,
14
15
  createFlintToml,
16
+ getExportDeclarations,
15
17
  getFlintConfigPath,
18
+ getFlintImports,
16
19
  getFlintJsonPath,
17
20
  getFlintJsonVersion,
18
21
  getLatticeReference,
@@ -35,11 +38,13 @@ import {
35
38
  hasFlintToml,
36
39
  hasMigration,
37
40
  isFlint,
41
+ isLocalShard,
38
42
  migrateModConfig,
39
43
  migrateShardConfig,
40
44
  readFlintJson,
41
45
  readFlintToml,
42
46
  recordMigration,
47
+ removeExportFromConfig,
43
48
  removeImportFromConfig,
44
49
  removeLatticeReference,
45
50
  removeModFromConfig,
@@ -48,16 +53,18 @@ import {
48
53
  removeWorkspaceReference,
49
54
  removeWorkspaceRepository,
50
55
  removeWorkspaceSourceRepository,
56
+ resolveShardMode,
51
57
  stampSynced,
52
58
  stampVersion,
53
59
  toKebabCase,
54
60
  writeFlintJson,
55
61
  writeFlintToml
56
- } from "./chunk-EICASOEX.js";
62
+ } from "./chunk-5YLBX2W6.js";
57
63
  export {
58
64
  FLINT_CONFIG_FILENAME,
59
65
  FLINT_JSON_FILENAME,
60
66
  FLINT_VERSION,
67
+ addExportToConfig,
61
68
  addImportToConfig,
62
69
  addLatticeReference,
63
70
  addModToConfig,
@@ -68,7 +75,9 @@ export {
68
75
  addWorkspaceSourceRepository,
69
76
  createFlintJson,
70
77
  createFlintToml,
78
+ getExportDeclarations,
71
79
  getFlintConfigPath,
80
+ getFlintImports,
72
81
  getFlintJsonPath,
73
82
  getFlintJsonVersion,
74
83
  getLatticeReference,
@@ -91,11 +100,13 @@ export {
91
100
  hasFlintToml,
92
101
  hasMigration,
93
102
  isFlint,
103
+ isLocalShard,
94
104
  migrateModConfig,
95
105
  migrateShardConfig,
96
106
  readFlintJson,
97
107
  readFlintToml,
98
108
  recordMigration,
109
+ removeExportFromConfig,
99
110
  removeImportFromConfig,
100
111
  removeLatticeReference,
101
112
  removeModFromConfig,
@@ -104,6 +115,7 @@ export {
104
115
  removeWorkspaceReference,
105
116
  removeWorkspaceRepository,
106
117
  removeWorkspaceSourceRepository,
118
+ resolveShardMode,
107
119
  stampSynced,
108
120
  stampVersion,
109
121
  toKebabCase,
@@ -0,0 +1,3 @@
1
+ [preset]
2
+ name = "blank"
3
+ description = "Empty flint with no shards or mods"
@@ -0,0 +1,23 @@
1
+ [preset]
2
+ name = "default"
3
+ description = "Standard flint with default shards and mods"
4
+
5
+ [shards]
6
+ required = [
7
+ "increments",
8
+ "plan",
9
+ "notepad",
10
+ "reports",
11
+ "comments",
12
+ "learn",
13
+ "flint",
14
+ "knap",
15
+ "orbcode",
16
+ "projects",
17
+ ]
18
+
19
+ [mods]
20
+ required = [
21
+ "claude-code",
22
+ "agents",
23
+ ]
@@ -12,7 +12,7 @@ import {
12
12
  unregisterFlint,
13
13
  updateFlintEntry,
14
14
  upsertFlintEntry
15
- } from "./chunk-F5Q2BJFK.js";
15
+ } from "./chunk-UNMULXL5.js";
16
16
  export {
17
17
  cleanRegistryFile,
18
18
  findFlintById,
package/package.json CHANGED
@@ -1,17 +1,19 @@
1
1
  {
2
2
  "name": "@nuucognition/flint-cli",
3
- "version": "0.1.0-beta.0",
3
+ "version": "0.2.0-beta.1",
4
4
  "type": "module",
5
5
  "description": "Flint cognitive workspace CLI",
6
6
  "license": "PROPRIETARY",
7
7
  "bin": {
8
- "flint": "./bin/flint-prod.js"
8
+ "flint": "./bin/flint-prod.js",
9
+ "flint-dev": "./bin/flint.js"
9
10
  },
10
11
  "files": [
11
12
  "bin/",
12
13
  "dist/"
13
14
  ],
14
15
  "dependencies": {
16
+ "cfonts": "^3.3.1",
15
17
  "commander": "^12.1.0",
16
18
  "glob": "^10.5.0",
17
19
  "picocolors": "^1.1.1",
@@ -24,10 +26,10 @@
24
26
  "tsx": "^4.19.2",
25
27
  "typescript": "^5.9.2",
26
28
  "@nuucognition/eslint-config": "0.0.0",
29
+ "@nuucognition/flint": "0.1.0",
27
30
  "@nuucognition/typescript-config": "0.0.0",
28
- "@nuucognition/flint-migrations": "0.1.0",
29
31
  "@nuucognition/flint-runtime": "0.0.1",
30
- "@nuucognition/flint": "0.1.0",
32
+ "@nuucognition/flint-migrations": "0.1.0",
31
33
  "@nuucognition/lattice": "0.1.0"
32
34
  },
33
35
  "scripts": {