File size: 5,672 Bytes
064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | import memoize from 'lodash-es/memoize.js'
import { basename } from 'path'
import type { OutputStyleConfig } from '../../constants/outputStyles.js'
import { getPluginErrorMessage } from '../../types/plugin.js'
import { logForDebugging } from '../debug.js'
import {
coerceDescriptionToString,
parseFrontmatter,
} from '../frontmatterParser.js'
import { getFsImplementation, isDuplicatePath } from '../fsOperations.js'
import { extractDescriptionFromMarkdown } from '../markdownConfigLoader.js'
import { loadAllPluginsCacheOnly } from './pluginLoader.js'
import { walkPluginMarkdown } from './walkPluginMarkdown.js'
async function loadOutputStylesFromDirectory(
outputStylesPath: string,
pluginName: string,
loadedPaths: Set<string>,
): Promise<OutputStyleConfig[]> {
const styles: OutputStyleConfig[] = []
await walkPluginMarkdown(
outputStylesPath,
async fullPath => {
const style = await loadOutputStyleFromFile(
fullPath,
pluginName,
loadedPaths,
)
if (style) styles.push(style)
},
{ logLabel: 'output-styles' },
)
return styles
}
async function loadOutputStyleFromFile(
filePath: string,
pluginName: string,
loadedPaths: Set<string>,
): Promise<OutputStyleConfig | null> {
const fs = getFsImplementation()
if (isDuplicatePath(fs, filePath, loadedPaths)) {
return null
}
try {
const content = await fs.readFile(filePath, { encoding: 'utf-8' })
const { frontmatter, content: markdownContent } = parseFrontmatter(
content,
filePath,
)
const fileName = basename(filePath, '.md')
const baseStyleName = (frontmatter.name as string) || fileName
// Namespace output styles with plugin name, consistent with commands and agents
const name = `${pluginName}:${baseStyleName}`
const description =
coerceDescriptionToString(frontmatter.description, name) ??
extractDescriptionFromMarkdown(
markdownContent,
`Output style from ${pluginName} plugin`,
)
// Parse forceForPlugin flag (supports both boolean and string values)
const forceRaw = frontmatter['force-for-plugin']
const forceForPlugin =
forceRaw === true || forceRaw === 'true'
? true
: forceRaw === false || forceRaw === 'false'
? false
: undefined
return {
name,
description,
prompt: markdownContent.trim(),
source: 'plugin',
forceForPlugin,
}
} catch (error) {
logForDebugging(`Failed to load output style from ${filePath}: ${error}`, {
level: 'error',
})
return null
}
}
export const loadPluginOutputStyles = memoize(
async (): Promise<OutputStyleConfig[]> => {
// Only load output styles from enabled plugins
const { enabled, errors } = await loadAllPluginsCacheOnly()
const allStyles: OutputStyleConfig[] = []
if (errors.length > 0) {
logForDebugging(
`Plugin loading errors: ${errors.map(e => getPluginErrorMessage(e)).join(', ')}`,
)
}
for (const plugin of enabled) {
// Track loaded file paths to prevent duplicates within this plugin
const loadedPaths = new Set<string>()
// Load output styles from default output-styles directory
if (plugin.outputStylesPath) {
try {
const styles = await loadOutputStylesFromDirectory(
plugin.outputStylesPath,
plugin.name,
loadedPaths,
)
allStyles.push(...styles)
if (styles.length > 0) {
logForDebugging(
`Loaded ${styles.length} output styles from plugin ${plugin.name} default directory`,
)
}
} catch (error) {
logForDebugging(
`Failed to load output styles from plugin ${plugin.name} default directory: ${error}`,
{ level: 'error' },
)
}
}
// Load output styles from additional paths specified in manifest
if (plugin.outputStylesPaths) {
for (const stylePath of plugin.outputStylesPaths) {
try {
const fs = getFsImplementation()
const stats = await fs.stat(stylePath)
if (stats.isDirectory()) {
// Load all .md files from directory
const styles = await loadOutputStylesFromDirectory(
stylePath,
plugin.name,
loadedPaths,
)
allStyles.push(...styles)
if (styles.length > 0) {
logForDebugging(
`Loaded ${styles.length} output styles from plugin ${plugin.name} custom path: ${stylePath}`,
)
}
} else if (stats.isFile() && stylePath.endsWith('.md')) {
// Load single output style file
const style = await loadOutputStyleFromFile(
stylePath,
plugin.name,
loadedPaths,
)
if (style) {
allStyles.push(style)
logForDebugging(
`Loaded output style from plugin ${plugin.name} custom file: ${stylePath}`,
)
}
}
} catch (error) {
logForDebugging(
`Failed to load output styles from plugin ${plugin.name} custom path ${stylePath}: ${error}`,
{ level: 'error' },
)
}
}
}
}
logForDebugging(`Total plugin output styles loaded: ${allStyles.length}`)
return allStyles
},
)
export function clearPluginOutputStyleCache(): void {
loadPluginOutputStyles.cache?.clear?.()
}
|