OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Safe messaging automation with fixed intents, allowlisted actions, and workflow dispatch.
Operations (1)
•
`messaging.agentActions.process` (v1.0.0)
Source Definition
import { defineFeature } from '@lssm-tech/lib.contracts-spec';
export const MessagingAgentActionsFeature = defineFeature({
meta: {
key: 'messaging-agent-actions',
version: '1.0.0',
title: 'Messaging Agent Actions',
description:
'Safe messaging automation with fixed intents, allowlisted actions, and workflow dispatch.',
domain: 'messaging',
owners: ['@platform.messaging'],
tags: ['messaging', 'agents', 'actions', 'workflow'],
stability: 'beta',
},
operations: [{ key: 'messaging.agentActions.process', version: '1.0.0' }],
docs: [
'docs.examples.messaging-agent-actions',
'docs.examples.messaging-agent-actions.goal',
'docs.examples.messaging-agent-actions.usage',
],
});