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.

harness.targeting

Resolve preview, task, shared, and sandbox harness targets.

  • Type: capability (capability)
  • Version: 1.0.0
  • Tags: targeting
  • File: packages/libs/contracts-spec/src/harness/capabilities/harnessTargeting.capability.ts
  • field.key.label
    harness.targeting
    field.version.label
    1.0.0
    field.type.label
    capability (capability)
    field.title.label
    harness.targeting
    field.description.label

    Resolve preview, task, shared, and sandbox harness targets.

  • Type: capability (capability)
  • Version: 1.0.0
  • Tags: targeting
  • File: packages/libs/contracts-spec/src/harness/capabilities/harnessTargeting.capability.ts
  • field.tags.label
    targeting
    field.owners.label
    field.stability.label

    Resolve preview, task, shared, and sandbox harness targets.

    Source Definition

    import { defineCapability } from '../../capabilities';
    import {
    	HARNESS_DOMAIN,
    	HARNESS_OWNERS,
    	HARNESS_STABILITY,
    	HARNESS_TAGS,
    } from '../constants';
    
    export const HarnessTargetingCapability = defineCapability({
    	meta: {
    		key: 'harness.targeting',
    		version: '1.0.0',
    		kind: 'integration',
    		title: 'Harness Targeting',
    		description: 'Resolve preview, task, shared, and sandbox harness targets.',
    		domain: HARNESS_DOMAIN,
    		owners: HARNESS_OWNERS,
    		tags: [...HARNESS_TAGS, 'targeting'],
    		stability: HARNESS_STABILITY,
    	},
    	provides: [
    		{
    			surface: 'operation',
    			key: 'harness.target.resolve',
    			version: '1.0.0',
    			description: 'Resolve the execution target for a harness run.',
    		},
    	],
    });