Documentation / @agentick/core / EngineContextMetadata
Interface: EngineContextMetadata
Defined in: core/src/types.ts:61
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
Indexable
[key: string]: any