assuremind 1.0.2 → 1.1.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/CONTRIBUTING.md +5 -4
- package/LICENSE +20 -20
- package/README.md +93 -310
- package/dist/cli/index.js +1400 -303
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.mts +59 -0
- package/dist/index.d.ts +59 -0
- package/dist/index.js +43 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -3
- package/dist/index.mjs.map +1 -1
- package/docs/CLI-REFERENCE.md +17 -0
- package/docs/GETTING-STARTED.md +7 -0
- package/docs/STUDIO.md +37 -3
- package/package.json +3 -1
- package/templates/{AUTOMIND.md → ASSUREMIND.md} +30 -2
- package/templates/docs/CLI-REFERENCE.md +18 -1
- package/templates/docs/GETTING-STARTED.md +7 -1
- package/templates/docs/STUDIO.md +43 -2
- package/ui/dist/assets/index-By2Hw5l2.css +1 -0
- package/ui/dist/assets/index-DaQ-JHje.js +819 -0
- package/ui/dist/favicon.svg +36 -36
- package/ui/dist/index.html +2 -2
- package/ui/dist/assets/index-CdtAorWT.js +0 -819
- package/ui/dist/assets/index-KjpMCzao.css +0 -1
package/ui/dist/favicon.svg
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
<svg viewBox="0 0 40 40" width="40" height="40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="bg" x1="0" y1="0" x2="40" y2="40" gradientUnits="userSpaceOnUse">
|
|
4
|
-
<stop offset="0" stop-color="#312e81"/>
|
|
5
|
-
<stop offset="0.50" stop-color="#6366f1"/>
|
|
6
|
-
<stop offset="1" stop-color="#7c3aed"/>
|
|
7
|
-
</linearGradient>
|
|
8
|
-
</defs>
|
|
9
|
-
|
|
10
|
-
<!-- Background tile -->
|
|
11
|
-
<rect width="40" height="40" rx="9" fill="url(#bg)"/>
|
|
12
|
-
|
|
13
|
-
<!-- Subtle top-gloss -->
|
|
14
|
-
<rect x="3" y="1.5" width="34" height="9" rx="4.5" fill="white" fill-opacity="0.07"/>
|
|
15
|
-
|
|
16
|
-
<!-- "A" left leg -->
|
|
17
|
-
<line x1="5.5" y1="34" x2="20" y2="12" stroke="white" stroke-width="4.5" stroke-linecap="round" stroke-opacity="0.93"/>
|
|
18
|
-
<!-- "A" right leg -->
|
|
19
|
-
<line x1="34.5" y1="34" x2="20" y2="12" stroke="white" stroke-width="4.5" stroke-linecap="round" stroke-opacity="0.93"/>
|
|
20
|
-
<!-- "A" crossbar -->
|
|
21
|
-
<line x1="12.5" y1="24" x2="27.5" y2="24" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-opacity="0.93"/>
|
|
22
|
-
|
|
23
|
-
<!-- Mind crown — centre ray -->
|
|
24
|
-
<line x1="20" y1="11" x2="20" y2="5.5" stroke="white" stroke-width="2.0" stroke-linecap="round" stroke-opacity="0.82"/>
|
|
25
|
-
<!-- Mind crown — left ray -->
|
|
26
|
-
<line x1="20" y1="11" x2="15.8" y2="7.2" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-opacity="0.68"/>
|
|
27
|
-
<!-- Mind crown — right ray -->
|
|
28
|
-
<line x1="20" y1="11" x2="24.2" y2="7.2" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-opacity="0.68"/>
|
|
29
|
-
|
|
30
|
-
<!-- Apex jewel — outer halo -->
|
|
31
|
-
<circle cx="20" cy="11" r="4.5" fill="white" fill-opacity="0.10"/>
|
|
32
|
-
<!-- Apex jewel — mid glow -->
|
|
33
|
-
<circle cx="20" cy="11" r="3.0" fill="white" fill-opacity="0.28"/>
|
|
34
|
-
<!-- Apex jewel — bright core -->
|
|
35
|
-
<circle cx="20" cy="11" r="1.8" fill="white" fill-opacity="0.96"/>
|
|
36
|
-
</svg>
|
|
1
|
+
<svg viewBox="0 0 40 40" width="40" height="40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0" y1="0" x2="40" y2="40" gradientUnits="userSpaceOnUse">
|
|
4
|
+
<stop offset="0" stop-color="#312e81"/>
|
|
5
|
+
<stop offset="0.50" stop-color="#6366f1"/>
|
|
6
|
+
<stop offset="1" stop-color="#7c3aed"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
|
|
10
|
+
<!-- Background tile -->
|
|
11
|
+
<rect width="40" height="40" rx="9" fill="url(#bg)"/>
|
|
12
|
+
|
|
13
|
+
<!-- Subtle top-gloss -->
|
|
14
|
+
<rect x="3" y="1.5" width="34" height="9" rx="4.5" fill="white" fill-opacity="0.07"/>
|
|
15
|
+
|
|
16
|
+
<!-- "A" left leg -->
|
|
17
|
+
<line x1="5.5" y1="34" x2="20" y2="12" stroke="white" stroke-width="4.5" stroke-linecap="round" stroke-opacity="0.93"/>
|
|
18
|
+
<!-- "A" right leg -->
|
|
19
|
+
<line x1="34.5" y1="34" x2="20" y2="12" stroke="white" stroke-width="4.5" stroke-linecap="round" stroke-opacity="0.93"/>
|
|
20
|
+
<!-- "A" crossbar -->
|
|
21
|
+
<line x1="12.5" y1="24" x2="27.5" y2="24" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-opacity="0.93"/>
|
|
22
|
+
|
|
23
|
+
<!-- Mind crown — centre ray -->
|
|
24
|
+
<line x1="20" y1="11" x2="20" y2="5.5" stroke="white" stroke-width="2.0" stroke-linecap="round" stroke-opacity="0.82"/>
|
|
25
|
+
<!-- Mind crown — left ray -->
|
|
26
|
+
<line x1="20" y1="11" x2="15.8" y2="7.2" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-opacity="0.68"/>
|
|
27
|
+
<!-- Mind crown — right ray -->
|
|
28
|
+
<line x1="20" y1="11" x2="24.2" y2="7.2" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-opacity="0.68"/>
|
|
29
|
+
|
|
30
|
+
<!-- Apex jewel — outer halo -->
|
|
31
|
+
<circle cx="20" cy="11" r="4.5" fill="white" fill-opacity="0.10"/>
|
|
32
|
+
<!-- Apex jewel — mid glow -->
|
|
33
|
+
<circle cx="20" cy="11" r="3.0" fill="white" fill-opacity="0.28"/>
|
|
34
|
+
<!-- Apex jewel — bright core -->
|
|
35
|
+
<circle cx="20" cy="11" r="1.8" fill="white" fill-opacity="0.96"/>
|
|
36
|
+
</svg>
|
package/ui/dist/index.html
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<title>Assuremind Studio</title>
|
|
7
7
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
8
8
|
<link rel="alternate icon" type="image/png" href="/assuremind-logo.png" />
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-DaQ-JHje.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="/assets/index-By2Hw5l2.css">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
13
13
|
<div id="root"></div>
|