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.
Perform file system access within an ACP session.
Goal
Expose file system access through governed ACP transport.
Context
Used by ACP clients for read/write/list operations.
Source Definition
import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
import { docRef } from '../../docs/registry';
import type { DocBlock } from '../../docs/types';
import { defineCommand } from '../../operations';
import { ACP_DOMAIN, ACP_OWNERS, ACP_STABILITY, ACP_TAGS } from '../constants';
export const AcpFsAccessCommand = defineCommand({
meta: {
key: 'acp.fs.access',
title: 'ACP File System Access',
version: '1.0.0',
description: 'Perform file system access within an ACP session.',
goal: 'Expose file system access through governed ACP transport.',
context: 'Used by ACP clients for read/write/list operations.',
domain: ACP_DOMAIN,
owners: ACP_OWNERS,
tags: [...ACP_TAGS, 'filesystem'],
stability: ACP_STABILITY,
docId: [docRef(AcpFsAccessDocBlock.id)],
},
capability: {
key: 'acp.transport',
version: '1.0.0',
},
io: {
input: AcpFsAccessInput,
output: AcpFsAccessOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});