wyrm-mcp 6.8.1 โ 6.8.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wyrm-mcp",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.2",
|
|
4
4
|
"description": "Wyrm โ the memory layer that makes AI assistants remember, learn from failures, execute long-running goals, and federate across every session. MCP server that surfaces a curated working set of tools by default (the full surface is opt-in via WYRM_PROFILE=full), spanning persistent memory, counter-pattern blocking, OODA agent loop, knowledge graph, and cross-project memory. Works with Claude / Copilot / Cursor / Windsurf / Codex.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"test:watch": "npm run test -- --watch",
|
|
41
41
|
"lint": "eslint src --ext .ts",
|
|
42
42
|
"clean": "rm -rf dist",
|
|
43
|
-
"
|
|
43
|
+
"prepublishOnly": "npm run build"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
46
46
|
"mcp",
|
package/scripts/postinstall.cjs
CHANGED
|
@@ -31,7 +31,7 @@ try {
|
|
|
31
31
|
|
|
32
32
|
function shortBanner() {
|
|
33
33
|
process.stdout.write(
|
|
34
|
-
`\
|
|
34
|
+
`\nwyrm-mcp upgraded to ${version}.\n` +
|
|
35
35
|
` Run \`wyrm-setup\` to pick up any new session hooks/integrations (idempotent, safe to re-run).\n` +
|
|
36
36
|
` Ask your AI "What does Wyrm do?" any time.\n\n`,
|
|
37
37
|
);
|
|
@@ -40,7 +40,7 @@ function shortBanner() {
|
|
|
40
40
|
function firstInstallPitch() {
|
|
41
41
|
const lines = [
|
|
42
42
|
'',
|
|
43
|
-
'
|
|
43
|
+
'โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ',
|
|
44
44
|
` Wyrm ${version} ยท Persistent AI Memory System ยท Ghost Protocol`,
|
|
45
45
|
'โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ',
|
|
46
46
|
'',
|
|
@@ -23,7 +23,7 @@ once and you'll never need to ask "which dragon-thing is that?" again.
|
|
|
23
23
|
|
|
24
24
|
## Product lines
|
|
25
25
|
|
|
26
|
-
###
|
|
26
|
+
### Dragon stack โ security tooling (flagship)
|
|
27
27
|
|
|
28
28
|
The "7 active repos" per `dragon-platform/README.md`:
|
|
29
29
|
|
package/ui/index.html
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title
|
|
7
|
-
<link rel="icon" href="
|
|
6
|
+
<title>Wyrm</title>
|
|
7
|
+
<link rel="icon" href="/ui/dragon-mark.svg" type="image/svg+xml">
|
|
8
8
|
<style>
|
|
9
9
|
/* ============================================================
|
|
10
10
|
Dragon Constitution rule II:
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
<body>
|
|
228
228
|
<div class="app">
|
|
229
229
|
<aside class="sidebar">
|
|
230
|
-
<div class="brand"
|
|
230
|
+
<div class="brand"><img src="/ui/dragon-mark.svg" alt="" style="height:20px;width:auto;vertical-align:middle;margin-right:8px;filter:drop-shadow(0 0 6px rgba(192,200,216,.25))"/>Wyrm</div>
|
|
231
231
|
<nav>
|
|
232
232
|
<a href="#/" data-route="">Dashboard</a>
|
|
233
233
|
<a href="#/projects" data-route="projects">Projects</a>
|