@rubytech/taskmaster 1.8.1 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/skills/workspace.js +3 -0
- package/dist/build-info.json +3 -3
- package/dist/control-ui/assets/{index-ySW2rUvm.js → index-zUaHKRVM.js} +180 -180
- package/dist/control-ui/assets/index-zUaHKRVM.js.map +1 -0
- package/dist/control-ui/index.html +1 -1
- package/package.json +1 -1
- package/templates/taskmaster/skills/taskmaster-sales/SKILL.md +163 -0
- package/dist/control-ui/assets/index-ySW2rUvm.js.map +0 -1
- package/templates/taskmaster/skills/taskmaster/SKILL.md +0 -70
|
@@ -256,6 +256,9 @@ export async function syncSkillsToWorkspace(params) {
|
|
|
256
256
|
const FORCE_RESYNC_SKILLS = new Set([
|
|
257
257
|
// v1.6: skill-builder updated to use skill_draft_save tool instead of write
|
|
258
258
|
"skill-builder",
|
|
259
|
+
// v1.8: new bundled taskmaster skill replaces any old workspace copies
|
|
260
|
+
// (template versions may contain private commercial data)
|
|
261
|
+
"taskmaster",
|
|
259
262
|
]);
|
|
260
263
|
/**
|
|
261
264
|
* Copy bundled skills into a workspace's `skills/` directory.
|
package/dist/build-info.json
CHANGED