Documentation / @agentick/kernel / ContextMetadata
Interface: ContextMetadata ​
Defined in: kernel/src/context.ts:109
Extensible metadata storage within the context.
Use this to store application-specific data that should flow through the execution context.
Example ​
typescript
const ctx = Context.create({
metadata: {
conversationId: 'conv-123',
feature_flags: { beta: true },
}
});
// Access later
const convId = Context.get().metadata.conversationId;Extends ​
Record<string,any>
Indexable ​
[key: string]: any