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.

artisan.knowledge.product

Blueprint that surfaces canonical product knowledge to agents and workflows.

  • Type: app-config (app-config)
  • Version: 1.0.0
  • Tags: knowledge, product-canon
  • File: packages/examples/knowledge-canon/src/blueprint.ts
  • field.key.label
    artisan.knowledge.product
    field.version.label
    1.0.0
    field.type.label
    app-config (app-config)
    field.title.label
    artisan.knowledge.product
    field.description.label

    Blueprint that surfaces canonical product knowledge to agents and workflows.

  • Type: app-config (app-config)
  • Version: 1.0.0
  • Tags: knowledge, product-canon
  • File: packages/examples/knowledge-canon/src/blueprint.ts
  • field.tags.label
    knowledge,product-canon
    field.owners.label
    field.stability.label

    Blueprint that surfaces canonical product knowledge to agents and workflows.

    Source Definition

    export const artisanKnowledgeBlueprint = defineAppConfig({
    	meta: {
    		key: 'artisan.knowledge.product',
    		version: '1.0.0',
    		appId: 'artisan',
    		title: 'ArtisanOS Knowledge – Product Canon',
    		description:
    			'Blueprint that surfaces canonical product knowledge to agents and workflows.',
    		domain: 'knowledge',
    		owners: [OwnersEnum.PlatformContent],
    		tags: ['knowledge', 'product-canon', TagsEnum.Guide],
    		stability: StabilityEnum.Experimental,
    	},
    	workflows: {
    		answerFaq: { key: 'artisan.knowledge.answerFaq', version: '1.0.0' },
    	},
    	notes:
    		'Workflows and assistants running on this blueprint should bind the Product Canon knowledge space.',
    });