Raise the declared minimums in pubspec.yaml to what our deps already require: Flutter >=3.35.0 / Dart >=3.9.0 (was 3.19.0 / 3.5.0). alchemist 0.12 needs Flutter 3.32; Dart 3.9 first ships in Flutter 3.35, so 3.35 is the binding floor. Pin the exact build toolchain in .fvmrc (Flutter 3.44.1). Moving to the Dart 3.9 language level switches `dart format` to the new "tall" style and enables two new lints. This commit is the resulting mechanical churn, isolated from any behaviour change: - whole-tree `dart format` reformat (tall style) - `dart fix` for unnecessary_underscores + use_null_aware_elements No runtime behaviour change; `make test` green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
146 lines
7.5 KiB
Dart
146 lines
7.5 KiB
Dart
/// Bootstrap for clide-hosted Claude sessions (Epic B / T-208, D-83).
|
|
///
|
|
/// D-83 names the clide-HOSTED stream-json session the primary dogfood
|
|
/// target: it is the process clide spawns, so clide controls its
|
|
/// environment and can hand it everything it needs to drive the IDE
|
|
/// without the user explaining anything. This module assembles that
|
|
/// hand-off, injected centrally in [ClaudeSessionOrchestrator.spawn] so
|
|
/// every hosted session (primary, secondary, fork, teammate) gets it:
|
|
///
|
|
/// * T-215 — `CLIDE_SOCK` / `CLIDE_WORKSPACE` env + `clide` on PATH, so
|
|
/// `clide …` resolves and points at this workspace's socket with zero
|
|
/// manual discovery.
|
|
/// * T-216 — a context note (`--append-system-prompt`) telling the agent
|
|
/// it is inside clide and how to drive it via `clide …` (the D-6
|
|
/// parity contract).
|
|
/// * T-217 — a `Bash(clide:*)` allow rule (`--allowedTools`) so the agent
|
|
/// is not prompted on every `clide …` call.
|
|
///
|
|
/// The pure helpers ([clideContextNote], [agentEnvDelta], [resolveClideCliDir])
|
|
/// hold the logic and are unit-tested directly; [agentBootstrap] is the thin
|
|
/// IO wrapper the orchestrator calls. Flutter-free by design.
|
|
library;
|
|
|
|
import 'dart:ffi' show Abi;
|
|
import 'dart:io';
|
|
|
|
import 'package:clide/src/ipc/paths.dart' show workspaceSocketPath;
|
|
|
|
/// The `--allowedTools` rule that pre-approves `clide …` Bash calls for a
|
|
/// hosted session (T-217), so the agent isn't prompted on every IDE call.
|
|
/// Claude Code's settings/flag syntax for a command-scoped Bash rule is
|
|
/// `Bash(<prefix>:*)` — see `permissions.allow` in `claude_config.dart`.
|
|
const String clideBashAllowRule = 'Bash(clide:*)';
|
|
|
|
/// Spawn args that carry the [clideBashAllowRule] into a session.
|
|
const List<String> clideAllowedToolsArgs = ['--allowedTools', clideBashAllowRule];
|
|
|
|
/// The agent context note injected via `--append-system-prompt` (T-216).
|
|
///
|
|
/// Tells a hosted session it is inside clide and how to drive the IDE
|
|
/// through the `clide` CLI. Lists only subsystems that dispatch today;
|
|
/// the orient-snapshot (`clide status`) and live pane/editor reflection
|
|
/// arrive with Epic C (T-218..T-221) and are deliberately left out so the
|
|
/// note never points the agent at a command that returns nothing yet.
|
|
String clideContextNote(String workspaceRoot) =>
|
|
'You are running inside clide, an IDE that is hosting this session. clide exposes its IDE '
|
|
'surface as a `clide` command on your PATH; drive it with `clide <subsystem> <verb>`. '
|
|
'Subsystems that respond today: `files` (workspace tree — `clide files root`, `files list`), '
|
|
'`editor` (`clide editor open <path>`, `editor active`), `git` (`clide git status`), '
|
|
'`search` (`clide search grep <query>`), `pql` (planning/query), and `panel`/`pane` (layout). '
|
|
'Each command prints JSON to stdout; exit codes are 0=ok, 1=handled error, 3=unknown command. '
|
|
'CLIDE_WORKSPACE holds the workspace root ($workspaceRoot) and CLIDE_SOCK the IPC socket. '
|
|
'Parity contract (D-6): every action the user takes in the UI has a `clide` verb, and `clide` '
|
|
'is how you observe and drive the same workspace the user sees — prefer it for IDE actions so '
|
|
'your work and the user\'s stay in one shared workspace.';
|
|
|
|
/// Build the environment DELTA to overlay on a hosted session's inherited
|
|
/// environment (T-215). `Process.start` keeps the parent environment by
|
|
/// default, so this returns only the keys to add/override:
|
|
///
|
|
/// * `CLIDE_SOCK` — the per-workspace socket ([workspaceSocketPath], D-70).
|
|
/// * `CLIDE_WORKSPACE` — the workspace root.
|
|
/// * `PATH` — prepended with [clideCliDir] when it is non-null (i.e. `clide`
|
|
/// is not already resolvable), otherwise left untouched.
|
|
Map<String, String> agentEnvDelta({required String workspaceRoot, required String socketPath, required String? currentPath, required String? clideCliDir}) {
|
|
final delta = <String, String>{'CLIDE_SOCK': socketPath, 'CLIDE_WORKSPACE': workspaceRoot};
|
|
if (clideCliDir != null && clideCliDir.isNotEmpty) {
|
|
delta['PATH'] = (currentPath == null || currentPath.isEmpty) ? clideCliDir : '$clideCliDir:$currentPath';
|
|
}
|
|
return delta;
|
|
}
|
|
|
|
/// Locate the directory to prepend to a hosted agent's PATH so `clide`
|
|
/// resolves (T-215). Returns null when `clide` is ALREADY on [currentPath]
|
|
/// (the installed case — T-211 drops it in `~/.local/bin`, normally already
|
|
/// on PATH) or when no candidate holds an executable `clide` (degrade
|
|
/// gracefully — the session still spawns, the agent just can't call `clide`).
|
|
///
|
|
/// [candidateDirs] is an ordered fallback list; [isExecutableFile] probes
|
|
/// `<dir>/clide`. Both are injected so the resolver is pure and testable.
|
|
String? resolveClideCliDir({required String? currentPath, required List<String> candidateDirs, required bool Function(String path) isExecutableFile}) {
|
|
if (currentPath != null) {
|
|
for (final dir in currentPath.split(':')) {
|
|
if (dir.isNotEmpty && isExecutableFile('$dir/clide')) return null;
|
|
}
|
|
}
|
|
for (final dir in candidateDirs) {
|
|
if (dir.isNotEmpty && isExecutableFile('$dir/clide')) return dir;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/// The `native/<os>-<arch>/` directory name the Makefile builds the C client
|
|
/// into (e.g. `linux-x64`, `macos-arm64`) — used to find the dev-tree binary
|
|
/// when clide runs un-installed (dogfooding clide-on-clide).
|
|
String nativeClideDirName({Abi? abi}) {
|
|
switch (abi ?? Abi.current()) {
|
|
case Abi.macosArm64:
|
|
return 'macos-arm64';
|
|
case Abi.macosX64:
|
|
return 'macos-x64';
|
|
case Abi.linuxArm64:
|
|
return 'linux-arm64';
|
|
case Abi.linuxX64:
|
|
return 'linux-x64';
|
|
default:
|
|
// Windows / other — clide is desktop linux/macos today; fall back to a
|
|
// best-effort name so the probe simply misses rather than throwing.
|
|
return Platform.isMacOS ? 'macos-x64' : 'linux-x64';
|
|
}
|
|
}
|
|
|
|
/// The result of [agentBootstrap]: the env delta to overlay and the extra
|
|
/// spawn args (context note + allow rule) to prepend to a session's argv.
|
|
class AgentBootstrap {
|
|
const AgentBootstrap({required this.envDelta, required this.extraArgs});
|
|
final Map<String, String> envDelta;
|
|
final List<String> extraArgs;
|
|
}
|
|
|
|
/// Assemble the full bootstrap for a session spawned in [workspaceRoot]
|
|
/// (the IO wrapper over the pure helpers). [base] is the session's existing
|
|
/// env (usually null → inherit clide's). The returned [AgentBootstrap.extraArgs]
|
|
/// carries the context note; team callers append their own preamble and the
|
|
/// orchestrator merges both into one `--append-system-prompt`.
|
|
AgentBootstrap agentBootstrap(String workspaceRoot, {Map<String, String>? base}) {
|
|
final home = Platform.environment['HOME'];
|
|
final currentPath = (base ?? Platform.environment)['PATH'] ?? Platform.environment['PATH'];
|
|
final candidates = <String>[
|
|
if (home != null && home.isNotEmpty) '$home/.local/bin',
|
|
'$workspaceRoot/native/${nativeClideDirName()}',
|
|
File(Platform.resolvedExecutable).parent.path,
|
|
];
|
|
final cliDir = resolveClideCliDir(currentPath: currentPath, candidateDirs: candidates, isExecutableFile: _isExecutableFile);
|
|
final delta = agentEnvDelta(workspaceRoot: workspaceRoot, socketPath: workspaceSocketPath(workspaceRoot), currentPath: currentPath, clideCliDir: cliDir);
|
|
return AgentBootstrap(envDelta: {...?base, ...delta}, extraArgs: ['--allowedTools', clideBashAllowRule]);
|
|
}
|
|
|
|
bool _isExecutableFile(String path) {
|
|
final f = File(path);
|
|
if (!f.existsSync()) return false;
|
|
// On POSIX an executable bit is what matters; statSync mode's owner-exec
|
|
// bit (0100) is a sufficient, dependency-free check.
|
|
return (f.statSync().mode & 0x40) != 0;
|
|
}
|