We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0711271 commit b78df7fCopy full SHA for b78df7f
1 file changed
src/index.ts
@@ -594,7 +594,7 @@ function parseAgentsContent(
594
/**
595
* Merge AGENTS.md files from multiple sources
596
*/
597
-function mergeAgentsFiles(agentsFiles: string[]): string {
+export function mergeAgentsFiles(agentsFiles: string[]): string {
598
const allSections: Record<
599
string,
600
{ title: string; level: number; contents: string[] }
@@ -638,7 +638,7 @@ function mergeAgentsFiles(agentsFiles: string[]): string {
638
639
* Collect AGENTS.md files from template directories
640
641
-function collectAgentsFiles(agentsMdSearchDirs: string[]): string[] {
+export function collectAgentsFiles(agentsMdSearchDirs: string[]): string[] {
642
const agentsFiles: string[] = [];
643
644
for (const dir of agentsMdSearchDirs) {
0 commit comments