SystemPromptConfigFile class final

Tool configures the system prompt via a config file written to disk. The consumer writes configContents to configPath before launch, then extends the process argv with argv.

Cleanup note: this variant deliberately does NOT specify when the config file is cleaned up. A future task that wires any concrete tool through this variant must decide how ownership interacts with SpawnManifest.files so DespawnService can collect the file on spawn exit — ideally by tracking configPath on the manifest alongside other per-spawn artifacts.

Inheritance

Constructors

SystemPromptConfigFile({required String configPath, required String configContents, required List<String> argv})
const

Properties

argv List<String>
Additional argv fragment to splice after the config file is written. Typically empty for pure config-file mechanisms.
final
configContents String
Exact bytes (as a Dart string) to persist at configPath. The consumer writes UTF-8.
final
configPath String
Absolute path the consumer must write configContents to before process launch.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited