{{ 'PAC.PromptWorkflow.Commands' | translate: { Default: 'Commands' } }}
{{ 'PAC.PromptWorkflow.CommandsPanelDesc' | translate: { Default: 'Enable workspace workflows and skill commands for this Xpert.' } }}
@if (loading()) {
{{ 'PAC.KEY_WORDS.Loading' | translate: { Default: 'Loading...' } }}
} @else {
@if (conflicts().length) { } @if (!profileConfigured()) { }
{{ 'PAC.PromptWorkflow.EnabledCommands' | translate: { Default: 'Enabled Commands' } }}
@if (entries().length) {
@for (entry of entries(); track $index; let index = $index) {
@switch (entry.source) { @case ('xpert') { } @case ('workspace_prompt_workflow') { } @case ('skill') { } }
/{{ displayEntryName(entry) }}
{{ entry.source }}
{{ displayEntryDescription(entry) }}
{{ 'PAC.PromptWorkflow.Enabled' | translate: { Default: 'Enabled' } }}
@if (entry.source === 'skill') {
{{ 'PAC.PromptWorkflow.Preferred' | translate: { Default: 'Preferred' } }}
} @if (entry.source !== 'skill') { }
}
} @else { }
{{ 'PAC.PromptWorkflow.WorkspaceLibrary' | translate: { Default: 'Workspace Prompt Workflows' } }}
@for (workflow of activeWorkflows(); track workflow.id) {
/{{ workflow.name }}
{{ workflow.description || workflow.template }}
}
{{ 'PAC.PromptWorkflow.SkillCommands' | translate: { Default: 'Skill Commands' } }}
@for (item of skillCommands(); track item.skillId + item.name) {
/{{ item.name }}
{{ item.description || item.skillLabel }}
}
{{ 'PAC.PromptWorkflow.LocalCommand' | translate: { Default: 'Xpert-local Command' } }}
}