(skillName: string)
| 228 | |
| 229 | /** Returns the per-skill total digest budget in bytes. */ |
| 230 | export function getSkillBudget(skillName: string): number { |
| 231 | const budget = SKILL_PREFLIGHT_BUDGET_BYTES[skillName]; |
| 232 | if (budget == null) throw new Error(`Skill not registered for brain preflight: ${skillName}`); |
| 233 | return budget; |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Given a write-path identifier (skill name or special token), returns the list |
no outgoing calls
no test coverage detected