mop-agent 0.1.5 → 0.1.6

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 CHANGED
@@ -5,7 +5,7 @@ through MOP-FLOW. It stores project memory, performs semantic recall and
5
5
  consolidation, serves grounded chat, and can request approved actions from a
6
6
  linked FLOW node.
7
7
 
8
- > **Release status:** npm package `mop-agent@0.1.5` contains the corrected VPS
8
+ > **Release status:** npm package `mop-agent@0.1.6` contains the corrected VPS
9
9
  > installer and first-run Admin/Assistant flow. The canonical installation command is
10
10
  > exactly `npx mop-agent`.
11
11
 
@@ -8,9 +8,96 @@
8
8
 
9
9
  * { box-sizing: border-box; }
10
10
  html { color-scheme: light; }
11
- body { min-height: 100vh; }
11
+ body {
12
+ min-height: 100vh;
13
+ position: relative;
14
+ background-color: var(--mop-cream);
15
+ background-image:
16
+ linear-gradient(rgba(45, 74, 62, .055) 1px, transparent 1px),
17
+ linear-gradient(90deg, rgba(116, 34, 32, .04) 1px, transparent 1px);
18
+ background-size: 8px 8px;
19
+ }
20
+
21
+ /* Global CRT/pixel veil: fixed above every route, but never catches input. */
22
+ body::before {
23
+ content: "";
24
+ position: fixed;
25
+ inset: 0;
26
+ z-index: 2147483646;
27
+ pointer-events: none;
28
+ background-image:
29
+ repeating-linear-gradient(
30
+ 0deg,
31
+ rgba(45, 74, 62, .035) 0,
32
+ rgba(45, 74, 62, .035) 1px,
33
+ transparent 1px,
34
+ transparent 4px
35
+ ),
36
+ repeating-linear-gradient(
37
+ 90deg,
38
+ rgba(116, 34, 32, .022) 0,
39
+ rgba(116, 34, 32, .022) 1px,
40
+ transparent 1px,
41
+ transparent 4px
42
+ );
43
+ background-size: 4px 4px;
44
+ mix-blend-mode: multiply;
45
+ }
46
+
47
+ body::after {
48
+ content: "";
49
+ position: fixed;
50
+ inset: 0;
51
+ z-index: 2147483647;
52
+ pointer-events: none;
53
+ background:
54
+ radial-gradient(circle at center, transparent 56%, rgba(45, 74, 62, .08) 100%),
55
+ repeating-linear-gradient(0deg, transparent 0, transparent 7px, rgba(116, 34, 32, .025) 7px, rgba(116, 34, 32, .025) 8px);
56
+ }
57
+
58
+ button,
59
+ input,
60
+ select,
61
+ textarea {
62
+ border-radius: 3px !important;
63
+ box-shadow: 2px 2px 0 rgba(45, 74, 62, .17);
64
+ }
65
+
66
+ button {
67
+ transition: transform 80ms steps(2, end), box-shadow 80ms steps(2, end);
68
+ }
69
+
70
+ button:hover:not(:disabled) {
71
+ transform: translate(-1px, -1px);
72
+ box-shadow: 3px 3px 0 rgba(45, 74, 62, .24);
73
+ }
74
+
75
+ button:active:not(:disabled) {
76
+ transform: translate(1px, 1px);
77
+ box-shadow: 0 0 0 rgba(45, 74, 62, 0);
78
+ }
79
+
80
+ code,
81
+ pre,
82
+ input,
83
+ textarea {
84
+ font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
85
+ }
86
+
87
+ h1,
88
+ h2,
89
+ h3,
90
+ button {
91
+ letter-spacing: .025em;
92
+ }
93
+
12
94
  ::selection { background: #742220; color: #fef9e1; }
13
95
 
96
+ @media (prefers-reduced-transparency: reduce) {
97
+ body::before,
98
+ body::after { display: none; }
99
+ }
100
+
14
101
  @media (max-width: 760px) {
15
102
  .mop-setup-shell { grid-template-columns: 1fr !important; }
16
103
  .mop-setup-brand { min-height: 34vh; padding: 36px !important; }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "mop-agent",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "mop-agent",
9
- "version": "0.1.5",
9
+ "version": "0.1.6",
10
10
  "license": "UNLICENSED",
11
11
  "workspaces": [
12
12
  "packages/*",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mop-agent",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Self-hosted AI assistant with persistent cross-project memory, installed with npx mop-agent.",
5
5
  "author": "BURHANDEV ENTERPRISE",
6
6
  "license": "UNLICENSED",