But let's say you're working with some legacy services where XML is the thing. And you discover that the available XML parser APIs are bad. Really bad. What do you? Maybe you use Xsylum, that's what.
src/ ├── cli/ # CLI入口和命令处理 │ ├── index.ts # 主入口文件 │ ├── commands/ # 命令实现 │ │ ├── init.ts # 项目初始化 │ │ ├── parse.ts # PRD解析 │ │ ├── status.ts # 状态查看 ...