mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
819d7dc8aa
* feat: expose semantic MCP tools * docs: remove semantic mcp prd * refactor: deepen semantic command surface * refactor: add mcp execution seam * refactor: deepen command grammar * refactor: remove legacy command definitions * refactor: collapse semantic cli wrappers * refactor: remove local mcp placeholders * refactor: derive semantic cli routing * refactor: trim mcp status metadata * refactor: derive semantic input contracts * refactor: split semantic grammar modules * refactor: derive batch input schema * refactor: centralize cli command schema catalog * refactor: share semantic cli output projections * refactor: remove legacy cli output paths * refactor: consolidate command interface surface * docs: align command contract wording * refactor: split command projection from cli grammar * refactor: trim projection exports * fix: satisfy fallow command contract audit * refactor: structure public batch steps * chore: clean batch architecture references * fix: keep legacy cli batch steps working * fix: serialize mcp batches * chore: tighten command surface cleanup * fix: serialize mcp stdin requests * chore: keep mcp config out of command contracts * fix: project structured batch targets * chore: harden command input typing * fix: project maestro backend for replay tests * fix: preserve session mcp request options
18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
export {
|
|
BATCH_BLOCKED_COMMANDS,
|
|
DEFAULT_BATCH_MAX_STEPS,
|
|
INHERITED_PARENT_FLAG_KEYS,
|
|
buildBatchStepFlags,
|
|
runBatch,
|
|
validateAndNormalizeBatchSteps,
|
|
} from './core/batch.ts';
|
|
|
|
export type {
|
|
BatchFlags,
|
|
BatchInvoke,
|
|
BatchRequest,
|
|
DaemonBatchStep,
|
|
BatchStepResult,
|
|
NormalizedBatchStep,
|
|
} from './core/batch.ts';
|