@memoryblock/web 0.1.0-beta → 0.1.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/README.md +36 -0
- package/package.json +1 -1
- package/public/app.js +1 -1
- package/public/images/favicons/android-chrome-192x192.png +0 -0
- package/public/images/favicons/android-chrome-512x512.png +0 -0
- package/public/images/favicons/apple-touch-icon.png +0 -0
- package/public/images/favicons/favicon.ico +0 -0
- package/public/images/memoryblock-logo.png +0 -0
- package/public/index.html +4 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @memoryblock/web
|
|
2
|
+
|
|
3
|
+
Front-end dashboard and Web UI for **memoryblock**.
|
|
4
|
+
|
|
5
|
+
This package handles:
|
|
6
|
+
- Centralized web panel
|
|
7
|
+
- Block chat interface
|
|
8
|
+
- Visual settings configuration
|
|
9
|
+
- Live plugin management architecture
|
|
10
|
+
|
|
11
|
+
## The `memoryblock` Ecosystem
|
|
12
|
+
|
|
13
|
+
**memoryblock** is a highly modular system. Here are the official packages:
|
|
14
|
+
|
|
15
|
+
**The Core**
|
|
16
|
+
* [**memoryblock**](https://www.npmjs.com/package/memoryblock) - The core engine interface and types.
|
|
17
|
+
* [**@memoryblock/daemon**](https://www.npmjs.com/package/@memoryblock/daemon) - Background daemon manager.
|
|
18
|
+
* [**@memoryblock/api**](https://www.npmjs.com/package/@memoryblock/api) - Core REST and WebSocket API server.
|
|
19
|
+
|
|
20
|
+
**Integrations & Tooling**
|
|
21
|
+
* [**@memoryblock/adapters**](https://www.npmjs.com/package/@memoryblock/adapters) - LLM adapters (OpenAI, Anthropic, Bedrock, etc).
|
|
22
|
+
* [**@memoryblock/channels**](https://www.npmjs.com/package/@memoryblock/channels) - Communication channels (CLI, Telegram, Web).
|
|
23
|
+
* [**@memoryblock/tools**](https://www.npmjs.com/package/@memoryblock/tools) - Standard tool definitions and schemas.
|
|
24
|
+
* [**@memoryblock/locale**](https://www.npmjs.com/package/@memoryblock/locale) - Localization strings and formatting.
|
|
25
|
+
* [**@memoryblock/web**](https://www.npmjs.com/package/@memoryblock/web) - Front-end dashboard and Web UI.
|
|
26
|
+
|
|
27
|
+
**Plugins**
|
|
28
|
+
* [**@memoryblock/plugin-installer**](https://www.npmjs.com/package/@memoryblock/plugin-installer) - Plugin installer and registry manager.
|
|
29
|
+
* [**@memoryblock/plugin-agents**](https://www.npmjs.com/package/@memoryblock/plugin-agents) - Secondary AI agents orchestrator.
|
|
30
|
+
* [**@memoryblock/plugin-aws**](https://www.npmjs.com/package/@memoryblock/plugin-aws) - AWS integrations.
|
|
31
|
+
* [**@memoryblock/plugin-fetch-webpage**](https://www.npmjs.com/package/@memoryblock/plugin-fetch-webpage) - Web content fetching and parsing.
|
|
32
|
+
* [**@memoryblock/plugin-web-search**](https://www.npmjs.com/package/@memoryblock/plugin-web-search) - Web search capabilities.
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
Distributed under the MIT License. See `LICENSE` for more information.
|
package/package.json
CHANGED
package/public/app.js
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/index.html
CHANGED
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
<meta name="description" content="Manage your AI blocks, monitors, and agents.">
|
|
8
8
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
|
|
10
|
+
<link rel="icon" type="image/x-icon" href="/images/favicons/favicon.ico">
|
|
11
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicons/apple-touch-icon.png">
|
|
12
|
+
<link rel="icon" type="image/png" sizes="192x192" href="/images/favicons/android-chrome-192x192.png">
|
|
13
|
+
<link rel="icon" type="image/png" sizes="512x512" href="/images/favicons/android-chrome-512x512.png">
|
|
10
14
|
<link rel="stylesheet" href="style.css">
|
|
11
15
|
</head>
|
|
12
16
|
<body>
|