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-registry

Shared registry and presentations for learning journey tracks

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

    Shared registry and presentations for learning journey tracks

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

    Shared registry and presentations for learning journey tracks

    Presentations (3)

    `learning.journey.track_list` (v1.0.0)

    `learning.journey.track_detail` (v1.0.0)

    `learning.journey.progress_widget` (v1.0.0)

    Source Definition

    /**
     * Learning Journey Registry Feature Module Specification
     *
     * Defines the feature module for the learning journey registry.
     */
    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    /**
     * Learning Journey Registry feature module that bundles
     * the shared presentations for learning journey tracks.
     */
    export const LearningJourneyRegistryFeature = defineFeature({
    	meta: {
    		key: 'learning-journey-registry',
    		version: '1.0.0',
    		title: 'Learning Journey Registry',
    		description:
    			'Shared registry and presentations for learning journey tracks',
    		domain: 'learning-journey',
    		owners: ['@learning-team'],
    		tags: ['learning', 'journey', 'onboarding', 'registry'],
    		stability: 'experimental',
    	},
    
    	// No operations in the registry - it's presentation-only
    	operations: [],
    
    	// Events emitted by this feature
    	events: [],
    
    	// Presentations associated with this feature
    	presentations: [
    		{ key: 'learning.journey.track_list', version: '1.0.0' },
    		{ key: 'learning.journey.track_detail', version: '1.0.0' },
    		{ key: 'learning.journey.progress_widget', version: '1.0.0' },
    	],
    
    	// No op to presentation links for registry
    	opToPresentation: [],
    
    	// Target requirements for multi-surface rendering
    	presentationsTargets: [
    		{
    			key: 'learning.journey.track_list',
    			version: '1.0.0',
    			targets: ['react', 'markdown'],
    		},
    		{
    			key: 'learning.journey.track_detail',
    			version: '1.0.0',
    			targets: ['react', 'markdown', 'application/json'],
    		},
    		{
    			key: 'learning.journey.progress_widget',
    			version: '1.0.0',
    			targets: ['react', 'markdown'],
    		},
    	],
    
    	// Capability requirements
    	capabilities: {
    		requires: [{ key: 'identity', version: '1.0.0' }],
    	},
    
    	docs: ['docs.learning-journey.registry'],
    });