UNPKG

@promptbook/markdown-utils

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

29 lines (28 loc) 655 B
import type { string_agent_url } from '../../types/typeAliases'; /** * Parsed TEAM teammate entry. * * @private */ export type TeamTeammate = { url: string_agent_url; label: string; instructions: string; }; /** * Options for parsing TEAM commitment content. * * @private */ export type ParseTeamCommitmentOptions = { strict?: boolean; }; /** * Parses TEAM commitment content into teammates with instructions. * * @private */ export declare function parseTeamCommitmentContent(content: string, options?: ParseTeamCommitmentOptions): TeamTeammate[]; /** * Note: [💞] Ignore a discrepancy between file name and entity name */