projecta-rrr 1.5.26 → 1.5.27
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/install.js +5 -48
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -17,54 +17,11 @@ const reset = '\x1b[0m';
|
|
|
17
17
|
const pkg = require('../package.json');
|
|
18
18
|
|
|
19
19
|
const banner = `
|
|
20
|
-
${yellow}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
${orange}-------------------------------------------------##=------------------------------------------------
|
|
26
|
-
-----------------------------------*------------####=-----------#+----------------------------------
|
|
27
|
-
----------------------------------=###=--------*####*---------*##=----------------------------------
|
|
28
|
-
----------------------------------=#####=-----########-----=#####+----------------------------------
|
|
29
|
-
----------------------------------+#######+--+########*--+#######*----------------------------------
|
|
30
|
-
----------------------------------+###########*++++++*###########*----------------------------------
|
|
31
|
-
----------------------+#*+--------+#####+-----------------=*#####*-------=+*#+----------------------
|
|
32
|
-
-----------------------*#######+=-*#*=------------------------=*#*-=*########-----------------------
|
|
33
|
-
------------------------##########=------------------------------=##########------------------------
|
|
34
|
-
------------------------=#######=----------------------------------=#######=------------------------
|
|
35
|
-
-------------------------+####+--------------------------------------+####+-------------------------
|
|
36
|
-
--------------------------*##=----------------------------------------=##*--------------------------
|
|
37
|
-
-----------------------==+*#--------------------------------------------##*++=----------------------
|
|
38
|
-
--------------=############----------------------------------------------*###########+--------------
|
|
39
|
-
----------------+#########=----------------------------------------------=#########+----------------
|
|
40
|
-
------------------+######+------------------------------------------------+######*------------------
|
|
41
|
-
--------------------+####=-----------------------=+------------------------####+--------------------
|
|
42
|
-
----------------------+##--------------------+#+####+#*--------------------*#+----------------------
|
|
43
|
-
----------------------+#+--------------------+########*--------------------+##+---------------------
|
|
44
|
-
------------------=*####+--------------------+########*--------------------*#####+------------------
|
|
45
|
-
----------------+########----------------+##++######***=##*----------------#########+---------------
|
|
46
|
-
-------------+###########-----------------=#++########*=##-----------------###########*=------------
|
|
47
|
-
----------------=+#######=----------------+#++########*=##----------------=######*+=----------------
|
|
48
|
-
---------------------=+*#*----------------+#++########*=##----------------*#*+----------------------
|
|
49
|
-
------------------------------------------+#=+########*-##------------------------------------------
|
|
50
|
-
-----------------*==+*#######==--------------------------------------==*#######+==*=----------------
|
|
51
|
-
-----------------*#############*------########################=-----*##############-----------------
|
|
52
|
-
-----------------*###############*----########################=---+################-----------------
|
|
53
|
-
-----------------##################=--########################=--*#################-----------------
|
|
54
|
-
----------------=#####=-#######=============-==========-=============*######==#####+----------------
|
|
55
|
-
----------------####=---*######=############+*#########=############=*######---=####=---------------
|
|
56
|
-
----------------##+*=---#######=############=++++++++++-############=*######=---*+##----------------
|
|
57
|
-
-----------------=-----+#######=############=*#########=############+*######*-----=-----------------
|
|
58
|
-
----------------------+##=*+*+*++++++*******=+**+++++**=**+++++++*********++#+----------------------
|
|
59
|
-
---------------------*###+##################=*#########=##################*+##*---------------------
|
|
60
|
-
--------------------+####+##################=+*********=##################*+###*--------------------
|
|
61
|
-
--------------------*####=******************=+*********=******************++####--------------------
|
|
62
|
-
-------------------*************************=+*********=*************************=------------------
|
|
63
|
-
-------------------#########################+**********=#########################-------------------${reset}
|
|
64
|
-
|
|
65
|
-
${yellow}RRR${reset} ${dim}v${pkg.version}${reset}
|
|
66
|
-
A meta-prompting, context engineering and spec-driven
|
|
67
|
-
development system for Claude Code by Projecta.ai
|
|
20
|
+
${yellow}┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
21
|
+
┃ ██▀▀█ ██▀▀█ ██▀▀█ ${reset}${dim}v${pkg.version}${reset}${yellow} ┃
|
|
22
|
+
┃ █▀█▀ █▀█▀ █▀█▀ ${reset}Projecta.ai${yellow} ┃
|
|
23
|
+
┃ ▀ ▀▀ ▀ ▀▀ ▀ ▀▀ ┃
|
|
24
|
+
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛${reset}
|
|
68
25
|
`;
|
|
69
26
|
|
|
70
27
|
// Parse args
|
package/package.json
CHANGED