Ship Assistent 0.8.1: split modules and shared+personal vector memory.
Personal RAG never leaks into the shared store; retrieve merges shared plus the persona chain, with personal overwrite on kind+key. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+126
-73
@@ -84,16 +84,6 @@
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.sa-board-hint {
|
||||
flex: 1;
|
||||
font-size: 0.75rem;
|
||||
opacity: 0.55;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.sa-board {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
@@ -247,43 +237,6 @@
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.sa-image-frame {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 1px dashed color-mix(in srgb, currentColor 28%, transparent);
|
||||
border-radius: 0.55rem;
|
||||
overflow: hidden;
|
||||
background:
|
||||
radial-gradient(ellipse at 30% 20%, color-mix(in srgb, currentColor 8%, transparent), transparent 55%),
|
||||
color-mix(in srgb, currentColor 4%, transparent);
|
||||
min-height: 14rem;
|
||||
outline: none;
|
||||
transition: border-color 0.15s ease, box-shadow 0.15s ease;
|
||||
}
|
||||
|
||||
.sa-image-frame:focus-visible {
|
||||
box-shadow: 0 0 0 2px color-mix(in srgb, currentColor 35%, transparent);
|
||||
}
|
||||
|
||||
.sa-image-frame.sa-has-image {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.sa-image-frame.sa-dragover {
|
||||
border-color: color-mix(in srgb, currentColor 70%, transparent);
|
||||
box-shadow: inset 0 0 0 2px color-mix(in srgb, currentColor 25%, transparent);
|
||||
}
|
||||
|
||||
.sa-image-frame img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sa-image-empty {
|
||||
padding: 1.25rem 1rem;
|
||||
text-align: center;
|
||||
@@ -302,32 +255,6 @@
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.sa-drop-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: color-mix(in srgb, currentColor 18%, transparent);
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.04em;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.sa-vision-chip {
|
||||
position: absolute;
|
||||
top: 0.45rem;
|
||||
left: 0.45rem;
|
||||
padding: 0.15rem 0.45rem;
|
||||
border-radius: 999px;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
background: color-mix(in srgb, currentColor 16%, transparent);
|
||||
border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
|
||||
}
|
||||
|
||||
.sa-image-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@@ -786,6 +713,132 @@
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.sa-mem-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
margin-top: 0.35rem;
|
||||
}
|
||||
|
||||
.sa-mem-head .sa-skills-label {
|
||||
flex: 1;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.sa-settings .sa-mem-kind {
|
||||
width: auto;
|
||||
min-width: 8rem;
|
||||
max-width: 12rem;
|
||||
}
|
||||
|
||||
.sa-mem-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
max-height: 14rem;
|
||||
overflow: auto;
|
||||
padding: 0.25rem;
|
||||
border-radius: 0.4rem;
|
||||
border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
|
||||
background: color-mix(in srgb, currentColor 4%, transparent);
|
||||
}
|
||||
|
||||
.sa-mem-empty {
|
||||
font-size: 0.8rem;
|
||||
opacity: 0.65;
|
||||
padding: 0.35rem 0.25rem;
|
||||
}
|
||||
|
||||
.sa-mem-row {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 0.35rem;
|
||||
padding: 0.3rem 0.35rem;
|
||||
border-radius: 0.35rem;
|
||||
background: color-mix(in srgb, currentColor 4%, transparent);
|
||||
}
|
||||
|
||||
.sa-mem-row-body {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sa-mem-row-head {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
.sa-mem-kind-badge {
|
||||
font-size: 0.62rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
opacity: 0.55;
|
||||
}
|
||||
|
||||
.sa-mem-row-key {
|
||||
font-size: 0.82rem;
|
||||
font-weight: 600;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.sa-mem-row-text {
|
||||
font-size: 0.76rem;
|
||||
opacity: 0.78;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.sa-mem-row-meta {
|
||||
font-size: 0.68rem;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.sa-mem-forget {
|
||||
flex: 0 0 auto;
|
||||
padding: 0.1rem 0.4rem !important;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.sa-mem-foot {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
gap: 0.35rem;
|
||||
font-size: 0.72rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.sa-health {
|
||||
font-size: 0.7rem;
|
||||
padding: 0.05rem 0.4rem;
|
||||
border-radius: 0.75rem;
|
||||
border: 1px solid color-mix(in srgb, currentColor 25%, transparent);
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.sa-health-ok {
|
||||
color: color-mix(in srgb, #6ee7a8 75%, currentColor);
|
||||
border-color: color-mix(in srgb, #6ee7a8 40%, transparent);
|
||||
}
|
||||
|
||||
.sa-health-warn {
|
||||
color: color-mix(in srgb, #e3b341 80%, currentColor);
|
||||
border-color: color-mix(in srgb, #e3b341 40%, transparent);
|
||||
}
|
||||
|
||||
.sa-health-down {
|
||||
color: color-mix(in srgb, #f2777a 80%, currentColor);
|
||||
border-color: color-mix(in srgb, #f2777a 45%, transparent);
|
||||
}
|
||||
|
||||
.sa-card-row-wanted {
|
||||
border-color: color-mix(in srgb, #e3b341 40%, transparent);
|
||||
}
|
||||
|
||||
.sa-settings .sa-select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user