@opencoreai/opencore 0.2.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/LICENSE +62 -0
- package/README.md +205 -0
- package/bin/opencore.mjs +343 -0
- package/opencore dashboard/app.js +923 -0
- package/opencore dashboard/index.html +15 -0
- package/opencore dashboard/styles.css +965 -0
- package/package.json +46 -0
- package/scripts/postinstall.mjs +448 -0
- package/src/credential-store.mjs +209 -0
- package/src/dashboard-server.ts +403 -0
- package/src/index.ts +2523 -0
- package/src/mac-controller.mjs +614 -0
- package/src/opencore-indicator.js +140 -0
- package/src/skill-catalog.mjs +305 -0
- package/templates/default-guidelines.md +142 -0
- package/templates/default-heartbeat.md +20 -0
- package/templates/default-instructions.md +72 -0
- package/templates/default-memory.md +7 -0
- package/templates/default-soul.md +130 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>OpenCore Dashboard</title>
|
|
7
|
+
<link rel="stylesheet" href="./styles.css" />
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="root"></div>
|
|
11
|
+
<script src="/vendor/react.production.min.js"></script>
|
|
12
|
+
<script src="/vendor/react-dom.production.min.js"></script>
|
|
13
|
+
<script src="./app.js"></script>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|