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.

agent.run.completed

Emitted when an agent run completes successfully.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: run
  • File: packages/libs/contracts-spec/src/agent/events/agentRunCompleted.event.ts
  • ```typescript

    field.key.label
    agent.run.completed
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    agent.run.completed
    field.description.label

    Emitted when an agent run completes successfully.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: run
  • File: packages/libs/contracts-spec/src/agent/events/agentRunCompleted.event.ts
  • ```typescript

    field.tags.label
    run
    field.owners.label
    field.stability.label

    Emitted when an agent run completes successfully.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { docId } from '../../docs/registry';
    import type { DocBlock } from '../../docs/types';
    import { defineEvent } from '../../events';
    import {
    	AGENT_DOMAIN,
    	AGENT_OWNERS,
    	AGENT_STABILITY,
    	AGENT_TAGS,
    } from '../constants';
    
    export const AgentRunCompletedEvent = defineEvent({
    	meta: {
    		key: 'agent.run.completed',
    		version: '1.0.0',
    		description: 'Emitted when an agent run completes successfully.',
    		domain: AGENT_DOMAIN,
    		owners: AGENT_OWNERS,
    		tags: [...AGENT_TAGS, 'run'],
    		stability: AGENT_STABILITY,
    		docId: [docId('docs.tech.agent.run.completed')],
    	},
    	capability: {
    		key: 'agent.execution',
    		version: '1.0.0',
    	},
    	pii: [],
    	payload: AgentRunCompletedPayload,
    });