obsidian-agent-fleet 0.3.1 → 0.4.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "agent-fleet",
3
3
  "name": "Agent Fleet",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "minAppVersion": "1.6.0",
6
6
  "description": "File-backed AI agents, task scheduling, and inbox monitoring inside Obsidian.",
7
7
  "author": "Denis Berekchiyan",
package/plugin/styles.css CHANGED
@@ -1263,6 +1263,52 @@
1263
1263
  gap: 4px;
1264
1264
  }
1265
1265
 
1266
+ /* ─── Channel card validation issues (shown below footer on .af-agent-card) ─── */
1267
+ .af-channel-issues {
1268
+ margin-top: 12px;
1269
+ padding: 10px 12px;
1270
+ border: 1px solid var(--af-red);
1271
+ border-radius: var(--af-radius-md);
1272
+ background: var(--af-red-bg);
1273
+ color: var(--af-red);
1274
+ font-size: 11px;
1275
+ line-height: 1.5;
1276
+ }
1277
+
1278
+ .af-channel-issue-row + .af-channel-issue-row {
1279
+ margin-top: 4px;
1280
+ }
1281
+
1282
+ /* Heartbeat indicator on agent cards */
1283
+ .af-heartbeat-indicator {
1284
+ display: inline-flex;
1285
+ align-items: center;
1286
+ margin-left: 6px;
1287
+ color: var(--af-green);
1288
+ opacity: 0.7;
1289
+ vertical-align: middle;
1290
+ }
1291
+
1292
+ .af-heartbeat-indicator svg {
1293
+ width: 14px;
1294
+ height: 14px;
1295
+ }
1296
+
1297
+ /* Channel form — agent checkboxes */
1298
+ .af-form-checkboxes {
1299
+ display: flex;
1300
+ flex-wrap: wrap;
1301
+ gap: 8px 16px;
1302
+ }
1303
+
1304
+ .af-form-checkbox-label {
1305
+ display: flex;
1306
+ align-items: center;
1307
+ gap: 4px;
1308
+ font-size: 13px;
1309
+ cursor: pointer;
1310
+ }
1311
+
1266
1312
  /* ─── Agent Detail Page ─── */
1267
1313
  .af-agent-detail-page,
1268
1314
  .af-task-detail-page {
@@ -1979,7 +2025,6 @@
1979
2025
  border: 1px solid var(--af-border);
1980
2026
  border-radius: var(--af-radius-lg);
1981
2027
  padding: 18px;
1982
- cursor: pointer;
1983
2028
  transition: all var(--af-transition);
1984
2029
  }
1985
2030
 
@@ -2530,6 +2575,57 @@
2530
2575
  margin-top: 2px;
2531
2576
  }
2532
2577
 
2578
+ /* Info-icon tooltip — replaces verbose subtitles on form labels */
2579
+ .af-form-tooltip {
2580
+ display: inline-flex;
2581
+ align-items: center;
2582
+ justify-content: center;
2583
+ width: 14px;
2584
+ height: 14px;
2585
+ margin-left: 4px;
2586
+ color: var(--af-text-faint);
2587
+ cursor: help;
2588
+ position: relative;
2589
+ vertical-align: middle;
2590
+ }
2591
+
2592
+ .af-form-tooltip svg {
2593
+ width: 12px;
2594
+ height: 12px;
2595
+ }
2596
+
2597
+ .af-form-tooltip .af-tooltip-text {
2598
+ display: none;
2599
+ position: absolute;
2600
+ left: 50%;
2601
+ bottom: calc(100% + 6px);
2602
+ transform: translateX(-50%);
2603
+ background: var(--af-bg-card);
2604
+ border: 1px solid var(--af-border);
2605
+ border-radius: var(--af-radius-md);
2606
+ padding: 6px 10px;
2607
+ font-size: 11px;
2608
+ font-weight: 400;
2609
+ color: var(--af-text-secondary);
2610
+ white-space: nowrap;
2611
+ min-width: 220px;
2612
+ max-width: 400px;
2613
+ white-space: normal;
2614
+ z-index: 100;
2615
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
2616
+ pointer-events: none;
2617
+ line-height: 1.4;
2618
+ }
2619
+
2620
+ .af-form-tooltip:hover .af-tooltip-text {
2621
+ display: block;
2622
+ }
2623
+
2624
+ .af-tooltip-text {
2625
+ text-transform: none;
2626
+ letter-spacing: normal;
2627
+ }
2628
+
2533
2629
  .af-form-sublabel {
2534
2630
  font-size: 11px;
2535
2631
  font-weight: 600;