import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements'; import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition'; /** * META ID commitment definition * * The `META ID` commitment carries the permanent id of the agent when an agent source is moved * between systems. It is a low-level commitment which is normally written and stripped by the * persistence layer instead of being written by hand. * This commitment is metadata-only and does not modify model requirements. * * @private [🪔] Maybe export the commitments through some package */ export declare class MetaIdCommitmentDefinition extends BaseCommitmentDefinition<'META ID'> { constructor(); /** * Short one-line description of META ID. */ get description(): string; /** * Icon for this commitment. */ get icon(): string; /** * `META ID` is written by the persistence layer, not by agent authors. */ get isLowLevel(): boolean; /** * Markdown documentation for META ID commitment. */ get documentation(): string; applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements; }