( projectRoot: string, name: string, options?: SkillFixtureOptions )
| 114 | } |
| 115 | |
| 116 | export async function writeProjectSkill( |
| 117 | projectRoot: string, |
| 118 | name: string, |
| 119 | options?: SkillFixtureOptions |
| 120 | ): Promise<void> { |
| 121 | await writeSkill(path.join(projectRoot, ".mux", "skills"), name, options); |
| 122 | } |
| 123 | |
| 124 | export async function writeSkillWithReference(muxHome: string, name: string): Promise<void> { |
| 125 | await writeGlobalSkill(muxHome, name, { |
no test coverage detected