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.

messaging-agent-actions

Safe messaging automation with fixed intents, allowlisted actions, and workflow dispatch.

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.messaging
  • Tags: messaging, agents, actions, workflow
  • field.key.label
    messaging-agent-actions
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    messaging-agent-actions
    field.description.label

    Safe messaging automation with fixed intents, allowlisted actions, and workflow dispatch.

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.messaging
  • Tags: messaging, agents, actions, workflow
  • field.tags.label
    messaging,agents,actions,workflow
    field.owners.label
    @platform.messaging
    field.stability.label
    beta

    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',
    	],
    });