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.
List all feature flags.
Goal
View all configured flags.
Context
Admin dashboard.
Source Definition
import { defineCommand, defineQuery } from '@lssm-tech/lib.contracts-spec';
import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
export const ListFlagsContract = defineQuery({
meta: {
key: 'flag.list',
version: '1.0.0',
stability: 'stable',
owners: ['platform.feature-flags'],
tags: ['feature-flags', 'list'],
description: 'List all feature flags.',
goal: 'View all configured flags.',
context: 'Admin dashboard.',
},
io: {
input: ListFlagsInput,
output: ListFlagsOutput,
},
policy: {
auth: 'admin',
},
});