spectoflow 0.16.1 → 0.16.2
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/bin/spectoflow.js +23 -17
- package/package.json +1 -1
package/bin/spectoflow.js
CHANGED
|
@@ -26,23 +26,29 @@ const c = { g: paint('32'), cy: paint('36'), b: paint('34'), y: paint('33'), dim
|
|
|
26
26
|
// The spectoflow mark in ASCII: a flat-top hexagon around the angular "S" (flow), rasterized to fit
|
|
27
27
|
// a terminal. Shown at the reading moments (init / help / list); secondary outputs use brandLine().
|
|
28
28
|
const LOGO = [
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'
|
|
32
|
-
'
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
36
|
-
'
|
|
37
|
-
'###
|
|
38
|
-
'
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
-
' ###
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'
|
|
29
|
+
' ########',
|
|
30
|
+
' ###### #######',
|
|
31
|
+
' ####### ######',
|
|
32
|
+
' ###### ######',
|
|
33
|
+
' ###### #### ######',
|
|
34
|
+
' ##### ###### ####',
|
|
35
|
+
' ### ###### ####',
|
|
36
|
+
' ### ##### ####',
|
|
37
|
+
' ### #### ## ####',
|
|
38
|
+
' ### #### ######### ####',
|
|
39
|
+
' ### #### ####### ##### ####',
|
|
40
|
+
' ### ######## ### ####',
|
|
41
|
+
' ### ## ### ####',
|
|
42
|
+
' ### #### ####',
|
|
43
|
+
' ### ###### ####',
|
|
44
|
+
' ### ###### ####',
|
|
45
|
+
' #### ###### ####',
|
|
46
|
+
' ###### ### ######',
|
|
47
|
+
' ###### ######',
|
|
48
|
+
' ###### ######',
|
|
49
|
+
' ###### ######',
|
|
50
|
+
' ##########',
|
|
51
|
+
' ####',
|
|
46
52
|
];
|
|
47
53
|
const LOGO_W = 41; // widest logo line, for centering the wordmark under it
|
|
48
54
|
const NAME = 's p e c t o f l o w';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spectoflow",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.2",
|
|
4
4
|
"description": "Agent-agnostic spec-driven development framework + real-time local control plane. Markdown artifacts, intent router, workflow-by-scope.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"spec-driven-development",
|