Compare commits

..

2 Commits

Author SHA1 Message Date
devops 71b4465595 chore: bump version to v0.2.21 [skip ci] 2026-06-09 20:28:41 +00:00
developer 9b63e5368e feat: Live Thinking Panel im AgentModal
CI - Build & Test / Backend (.NET) (push) Successful in 22s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 15s
CI - Build & Test / Security Check (push) Successful in 3s
- Scrollbarer Thinking-Stream (slide-in von links)
- Pulsierender Rahmen mit Glow-Effekt
- Blau+Violett Dots rotieren im Uhrzeigersinn
- thinkingStream in AgentNodeData + Beispieldaten für alle 5 Agenten
2026-06-09 22:27:53 +02:00
3 changed files with 137 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
0.2.20 0.2.21
@@ -71,6 +71,31 @@ defineEmits<{
</div> </div>
</section> </section>
<!-- Live Thinking -->
<section class="modal-section">
<h3 class="section-label">Live Thinking</h3>
<div class="thinking-panel">
<div class="thinking-orbiter">
<span class="orbiter-dot dot-blue"></span>
<span class="orbiter-dot dot-violet"></span>
</div>
<div class="thinking-stream" ref="thinkingStreamRef">
<div
v-for="(msg, idx) in agent.thinkingStream"
:key="idx"
class="thinking-entry"
:style="{ animationDelay: `${idx * 0.05}s` }"
>
<span class="entry-time">{{ msg.time }}</span>
<span class="entry-text">{{ msg.text }}</span>
</div>
<div v-if="!agent.thinkingStream?.length" class="thinking-placeholder">
Waiting for thought stream...
</div>
</div>
</div>
</section>
<!-- Footer Stats --> <!-- Footer Stats -->
<div class="modal-footer"> <div class="modal-footer">
<span class="footer-badge">Runtime: {{ runtime }}</span> <span class="footer-badge">Runtime: {{ runtime }}</span>
@@ -241,6 +266,91 @@ defineEmits<{
transition: width 0.5s ease; transition: width 0.5s ease;
} }
/* Live Thinking */
.thinking-panel {
position: relative;
border: 1px solid rgba(139, 124, 246, 0.2);
border-radius: 12px;
padding: 14px;
background: rgba(12, 16, 22, 0.6);
overflow: hidden;
animation: panel-pulse 2.5s ease-in-out infinite;
}
@keyframes panel-pulse {
0%, 100% { border-color: rgba(139, 124, 246, 0.2); box-shadow: 0 0 8px rgba(139,124,246,0.05); }
50% { border-color: rgba(139, 124, 246, 0.35); box-shadow: 0 0 16px rgba(139,124,246,0.1); }
}
.thinking-orbiter {
position: absolute;
inset: -8px;
pointer-events: none;
z-index: 0;
animation: spin-orbiter 4s linear infinite;
}
@keyframes spin-orbiter {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.orbiter-dot {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
filter: blur(1px);
}
.dot-blue {
top: 0;
left: 50%;
transform: translate(-50%, -50%);
background: #3b82f6;
box-shadow: 0 0 10px #3b82f6, 0 0 20px rgba(59,130,246,0.5);
}
.dot-violet {
bottom: 0;
left: 50%;
transform: translate(-50%, 50%);
background: #8b7cf6;
box-shadow: 0 0 10px #8b7cf6, 0 0 20px rgba(139,124,246,0.5);
}
.thinking-stream {
max-height: 160px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 6px;
position: relative;
z-index: 1;
}
.thinking-entry {
display: flex;
gap: 10px;
align-items: baseline;
animation: slide-in-right 0.3s ease-out both;
font-size: 10px;
}
@keyframes slide-in-right {
from { opacity: 0; transform: translateX(-16px); }
to { opacity: 1; transform: translateX(0); }
}
.entry-time {
font-size: 8.5px;
color: #6b7385;
flex-shrink: 0;
font-variant-numeric: tabular-nums;
min-width: 42px;
}
.entry-text {
color: #9ea5b3;
line-height: 1.4;
}
.thinking-placeholder {
font-size: 10px;
color: #4a5160;
font-style: italic;
}
/* Working Feed */ /* Working Feed */
.work-feed { .work-feed {
display: flex; display: flex;
@@ -14,6 +14,7 @@ export interface AgentNodeData {
active: boolean active: boolean
runtimeSeconds: number runtimeSeconds: number
workingFeed: string[] workingFeed: string[]
thinkingStream?: Array<{ time: string; text: string }>
} }
export interface MissionData { export interface MissionData {
@@ -118,6 +119,11 @@ export function useDashboardData() {
'Verifying full-width layout deployment', 'Verifying full-width layout deployment',
'Reviewing AgentModal integration', 'Reviewing AgentModal integration',
], ],
thinkingStream: [
{ time: '22:24', text: 'Analysing constraint: full-width layout' },
{ time: '22:25', text: 'Removing max-width from global CSS' },
{ time: '22:26', text: 'Verifying Dashboard grid reflow' },
],
}, },
{ {
id: 'developer', id: 'developer',
@@ -138,6 +144,11 @@ export function useDashboardData() {
'Implementing room generation algorithm', 'Implementing room generation algorithm',
'Writing unit tests for RoomFactory', 'Writing unit tests for RoomFactory',
], ],
thinkingStream: [
{ time: '22:22', text: 'Parsing dungeon spec from Iris' },
{ time: '22:23', text: 'Designing RoomFactory interface' },
{ time: '22:24', text: 'Implementing corridor connection logic' },
],
}, },
{ {
id: 'devops', id: 'devops',
@@ -158,6 +169,11 @@ export function useDashboardData() {
'Added .dockerignore for node_modules', 'Added .dockerignore for node_modules',
'Testing incremental builds', 'Testing incremental builds',
], ],
thinkingStream: [
{ time: '22:20', text: 'Checking build cache hit rates' },
{ time: '22:21', text: 'Benchmarking multi-stage vs single-stage' },
{ time: '22:22', text: 'Calculating potential speedup from caching' },
],
}, },
{ {
id: 'researcher', id: 'researcher',
@@ -177,6 +193,11 @@ export function useDashboardData() {
'Documented SignalR limitations', 'Documented SignalR limitations',
'Prototyping WebSocket fallback', 'Prototyping WebSocket fallback',
], ],
thinkingStream: [
{ time: '22:18', text: 'Cross-referencing WebSocket latency benchmarks' },
{ time: '22:19', text: 'Checking SSE browser support matrix' },
{ time: '22:20', text: 'Drafting recommendation summary' },
],
}, },
{ {
id: 'reviewer', id: 'reviewer',
@@ -197,6 +218,11 @@ export function useDashboardData() {
'Approved RoomValidator', 'Approved RoomValidator',
'Running integration tests', 'Running integration tests',
], ],
thinkingStream: [
{ time: '22:15', text: 'Analyzing DungeonController PR diff' },
{ time: '22:16', text: 'Checking RoomValidator edge cases' },
{ time: '22:17', text: 'Verifying integration test coverage' },
],
}, },
]) ])