The status bar now shows whether ptyc and pql are findable on PATH (green = found, amber = missing) instead of the obsolete daemon connection state. Per D-056 there is no daemon to connect to. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
538 B
Dart
21 lines
538 B
Dart
import 'package:clide/builtin/ipc_status/src/status_item.dart';
|
|
import 'package:clide/extension/extension.dart';
|
|
|
|
class IpcStatusExtension extends ClideExtension {
|
|
@override
|
|
String get id => 'builtin.ipc-status';
|
|
@override
|
|
String get title => 'Tool status';
|
|
@override
|
|
String get version => '0.2.0';
|
|
|
|
@override
|
|
List<ContributionPoint> get contributions => [
|
|
StatusItemContribution(
|
|
id: 'ipc-status.indicator',
|
|
priority: 100,
|
|
build: (_) => const ToolStatusItem(),
|
|
),
|
|
];
|
|
}
|