@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
15 lines (13 loc) • 373 B
text/typescript
import { buildErrorSchema } from '@sprucelabs/schema'
export default buildErrorSchema({
id: 'agentAlreadyRegistered',
name: 'agent already registered',
fields: {
promptPath: {
type: 'text',
isRequired: true,
label: 'Prompt Path',
hint: 'The path to the existing agent prompt file.',
},
},
})