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.

learning-journey-crm-onboarding

CRM first-win onboarding journey with step-by-step guidance for new CRM users

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples.learning-journey.crm-onboarding
  • Tags: learning, crm, onboarding, journey
  • field.key.label
    learning-journey-crm-onboarding
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    learning-journey-crm-onboarding
    field.description.label

    CRM first-win onboarding journey with step-by-step guidance for new CRM users

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples.learning-journey.crm-onboarding
  • Tags: learning, crm, onboarding, journey
  • field.tags.label
    learning,crm,onboarding,journey
    field.owners.label
    @examples.learning-journey.crm-onboarding
    field.stability.label
    experimental

    CRM first-win onboarding journey with step-by-step guidance for new CRM users

    Operations (2)

    `learningJourney.crmOnboarding.recordEvent` (v1.0.0)

    `learningJourney.crmOnboarding.getTrack` (v1.0.0)

    Presentations (2)

    `learning.journey.crm.track` (v1.0.0)

    `learning.journey.crm.widget` (v1.0.0)

    Source Definition

    /**
     * Learning Journey CRM Onboarding Feature Module Specification
     *
     * Defines the feature module for CRM first-win onboarding journey.
     */
    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    /**
     * Learning Journey CRM Onboarding feature module that bundles
     * CRM-specific onboarding track operations and presentations.
     */
    export const LearningJourneyCrmOnboardingFeature = defineFeature({
    	meta: {
    		key: 'learning-journey-crm-onboarding',
    		title: 'Learning Journey: CRM Onboarding',
    		description:
    			'CRM first-win onboarding journey with step-by-step guidance for new CRM users',
    		domain: 'learning-journey',
    		owners: ['@examples.learning-journey.crm-onboarding'],
    		tags: ['learning', 'crm', 'onboarding', 'journey'],
    		stability: 'experimental',
    		version: '1.0.0',
    	},
    
    	// All contract operations included in this feature
    	operations: [
    		{ key: 'learningJourney.crmOnboarding.recordEvent', version: '1.0.0' },
    		{ key: 'learningJourney.crmOnboarding.getTrack', version: '1.0.0' },
    	],
    
    	// Events emitted by this feature
    	events: [],
    
    	// Presentations associated with this feature
    	presentations: [
    		{ key: 'learning.journey.crm.track', version: '1.0.0' },
    		{ key: 'learning.journey.crm.widget', version: '1.0.0' },
    	],
    
    	// Link operations to their primary presentations
    	opToPresentation: [
    		{
    			op: { key: 'learningJourney.crmOnboarding.getTrack', version: '1.0.0' },
    			pres: { key: 'learning.journey.crm.track', version: '1.0.0' },
    		},
    	],
    
    	// Target requirements for multi-surface rendering
    	presentationsTargets: [
    		{
    			key: 'learning.journey.crm.track',
    			version: '1.0.0',
    			targets: ['react', 'markdown', 'application/json'],
    		},
    		{
    			key: 'learning.journey.crm.widget',
    			version: '1.0.0',
    			targets: ['react'],
    		},
    	],
    
    	// Capability requirements
    	capabilities: {
    		requires: [{ key: 'identity', version: '1.0.0' }],
    	},
    
    	docs: ['docs.learning-journey.crm-onboarding'],
    });