@rubytech/taskmaster 1.5.2 → 1.6.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 +23 -2
- package/dist/agents/taskmaster-tools.js +8 -0
- package/dist/agents/tool-policy.js +4 -0
- package/dist/agents/tools/skill-draft-save-tool.js +110 -0
- package/dist/auto-reply/tokens.js +23 -0
- package/dist/build-info.json +3 -3
- package/dist/cli/provision-seed.js +1 -0
- package/dist/config/defaults.js +32 -0
- package/dist/config/io.js +4 -4
- package/dist/config/legacy.migrations.part-3.js +51 -0
- package/dist/config/validation.js +2 -2
- package/dist/control-ui/assets/{index-Ck-xl0xu.js → index-C12OTik-.js} +733 -613
- package/dist/control-ui/assets/index-C12OTik-.js.map +1 -0
- package/dist/control-ui/index.html +1 -1
- package/dist/cron/isolated-agent/delivery-record.js +54 -0
- package/dist/cron/isolated-agent/history.js +221 -0
- package/dist/cron/isolated-agent/run.js +56 -2
- package/dist/gateway/protocol/index.js +2 -1
- package/dist/gateway/protocol/schema/agents-models-skills.js +9 -0
- package/dist/gateway/protocol/schema/protocol-schemas.js +2 -1
- package/dist/gateway/server-methods/skills.js +29 -5
- package/dist/gateway/server.impl.js +17 -0
- package/dist/memory/audit.js +19 -2
- package/dist/memory/manager.js +1 -0
- package/package.json +1 -1
- package/skills/skill-builder/SKILL.md +13 -8
- package/taskmaster-docs/USER-GUIDE.md +39 -8
- package/dist/control-ui/assets/index-Ck-xl0xu.js.map +0 -1
|
@@ -768,18 +768,49 @@ You can also create events by asking the assistant in chat ("remind me every Mon
|
|
|
768
768
|
|
|
769
769
|
### Skills
|
|
770
770
|
|
|
771
|
-
Skills are
|
|
771
|
+
Skills are specialised abilities your assistant has — handling customer enquiries, creating quotes, checking the weather, generating images, and more. The Skills tab shows every skill that is installed, whether it is active, and flags anything that is missing (such as an API key a skill needs).
|
|
772
772
|
|
|
773
|
-
|
|
773
|
+
Each skill has a label:
|
|
774
774
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
775
|
+
| Label | Meaning |
|
|
776
|
+
|-------|---------|
|
|
777
|
+
| **Preloaded** | Ships with the product. Always active. Cannot be disabled or deleted. |
|
|
778
|
+
| **User** | Created by you (or by your assistant on your behalf). You can enable, disable, edit, or delete these. |
|
|
779
779
|
|
|
780
|
-
|
|
780
|
+
#### Filtering the list
|
|
781
781
|
|
|
782
|
-
Preloaded
|
|
782
|
+
Use the **All / Preloaded / User** chip buttons at the top of the list to show only the type you're interested in.
|
|
783
|
+
|
|
784
|
+
#### Viewing a skill
|
|
785
|
+
|
|
786
|
+
Tap any skill to open its detail view. The detail view has tabs — one for the skill's main instructions (SKILL.md) and one for each reference file the skill uses. You can read through everything the skill does without leaving the page.
|
|
787
|
+
|
|
788
|
+
#### Editing a user skill
|
|
789
|
+
|
|
790
|
+
From the detail view, tap **Edit** to open the skill editor. The editor has the same tabs as the detail view (SKILL.md and any reference files), so you can edit each part independently. If you are already viewing a reference tab when you tap Edit, the editor opens directly on that reference.
|
|
791
|
+
|
|
792
|
+
When you save an installed skill, the changes take effect immediately.
|
|
793
|
+
|
|
794
|
+
#### Enable / Disable
|
|
795
|
+
|
|
796
|
+
Toggle a user skill on or off with the switch on its card. A disabled skill stays installed but your assistant will not use it until you re-enable it.
|
|
797
|
+
|
|
798
|
+
#### Delete
|
|
799
|
+
|
|
800
|
+
Tap the delete icon on a user skill's card. You will be asked to confirm before the skill is removed.
|
|
801
|
+
|
|
802
|
+
#### Drafts — creating new skills
|
|
803
|
+
|
|
804
|
+
You do not need to write skill files by hand. Instead:
|
|
805
|
+
|
|
806
|
+
1. **Ask your assistant** to create a skill — it walks you through the process step by step, asking what you need the skill to do.
|
|
807
|
+
2. The assistant saves a **draft** using its built-in skill-builder.
|
|
808
|
+
3. Open the **Drafts** button in the Skills tab to see all pending drafts.
|
|
809
|
+
4. From the drafts list you can:
|
|
810
|
+
- **Edit** — review or modify the draft before installing it. The editor has the same tabs (SKILL.md and reference files) so you can fine-tune each part. Clicking **Save** saves your changes back to drafts — it does **not** install the skill.
|
|
811
|
+
- **Install** — activate the skill so your assistant starts using it.
|
|
812
|
+
- **Delete** — discard the draft.
|
|
813
|
+
5. Once a draft is installed it moves out of drafts and into the main skills list as a **User** skill.
|
|
783
814
|
|
|
784
815
|
### Logs
|
|
785
816
|
|