modscape 0.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/LICENSE +21 -0
- package/README.md +137 -0
- package/package.json +27 -0
- package/src/build.js +108 -0
- package/src/dev.js +154 -0
- package/src/index.js +47 -0
- package/src/init.js +102 -0
- package/src/templates/claude/clauderules +9 -0
- package/src/templates/claude/command.md +14 -0
- package/src/templates/codex/prompt.md +15 -0
- package/src/templates/gemini/SKILL.md +20 -0
- package/src/templates/gemini/command.toml +14 -0
- package/src/templates/rules.md +88 -0
- package/visualizer-dist/assets/index-B6WXUgSk.css +1 -0
- package/visualizer-dist/assets/index-D1C3Ic_0.js +40 -0
- package/visualizer-dist/favicon.svg +24 -0
- package/visualizer-dist/index.html +14 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<!-- Background Round Rect -->
|
|
3
|
+
<rect width="512" height="512" rx="112" fill="#FFFFFF"/>
|
|
4
|
+
|
|
5
|
+
<!-- Relationship Lines (Connecting in M-shape) -->
|
|
6
|
+
<path d="M120 350 L120 160 L256 310 L392 160 L392 350"
|
|
7
|
+
stroke="#CBD5E1" stroke-width="24" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
|
|
9
|
+
<!-- Colorful Rounded Rect Nodes -->
|
|
10
|
+
<!-- Left Bottom (Satellite) -->
|
|
11
|
+
<rect x="80" y="310" width="80" height="80" rx="16" fill="#8b5cf6"/>
|
|
12
|
+
|
|
13
|
+
<!-- Left Top (Hub) -->
|
|
14
|
+
<rect x="80" y="120" width="80" height="80" rx="16" fill="#f59e0b"/>
|
|
15
|
+
|
|
16
|
+
<!-- Center "V" (Fact) -->
|
|
17
|
+
<rect x="216" y="270" width="80" height="80" rx="16" fill="#ef4444"/>
|
|
18
|
+
|
|
19
|
+
<!-- Right Top (Link) -->
|
|
20
|
+
<rect x="352" y="120" width="80" height="80" rx="16" fill="#10b981"/>
|
|
21
|
+
|
|
22
|
+
<!-- Right Bottom (Dimension) -->
|
|
23
|
+
<rect x="352" y="310" width="80" height="80" rx="16" fill="#3b82f6"/>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Modscape</title>
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-D1C3Ic_0.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-B6WXUgSk.css">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<div id="root"></div>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|