-
Decompose all subtasks required to accomplish this task into a dependency graph of nodes.
-
Spawn agents to work through this dependency graph.
- Note:
wait_for_agenttool can be buggy—may need to call it multiple times.
- Note:
-
Manage/orchestrate Voicetree MCP agents to work through the dependency graph.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import fs from 'fs'; | |
| import path from 'path'; | |
| import { defineConfig } from 'tsup'; | |
| // INFO: This is the only place you need to update when adding new entry folders | |
| const entryFolders = ['primitives', 'ui']; | |
| function getAllFilesInDirectory(dirPath: string): string[] { | |
| return fs.readdirSync(dirPath).reduce<string[]>((allFiles, file) => { |
OlderNewer