workboard
$
npx mdskill add Memento-Teams/Memento-Widesearch/workboardCoordinates multi-worker tasks via a shared markdown workboard for subtask tracking and results.
- Helps manage distributed tasks requiring collaboration among multiple workers.
- Integrates with markdown-based tools for reading and editing shared workboards.
- Decides based on task parameters to assign subtasks and track progress via tagged sections.
- Presents results through a structured workboard with status updates and summary areas.
SKILL.md
.github/skills/workboardView on GitHub ↗
--- name: workboard description: Use this skill when a task includes a shared workboard for multi-worker coordination. --- ## WORKBOARD (WORKER COORDINATION) — REQUIRED When calling execute_subtasks, you MUST always include a `workboard` parameter. The workboard is a markdown string shared with workers. Workers can read and edit it via `read_workboard` and `edit_workboard(tag, content)` by filling tagged sections assigned to them. Always create a workboard that: 1. Lists every subtask with its index and a status checkbox (e.g. `- [ ] 1 (t1): ...`) 2. Assigns a subtask ID to each worker (`t1`, `t2`, ...) 3. Includes empty tagged slots for each worker (e.g. `<t1_result></t1_result>`) 4. Provides any shared context workers might need 5. Includes a "Results" section (optional summary area for the manager) Example workboard format: ``` # Task Board ## Subtasks - [ ] 1 (t1): Search for X and summarize findings - [ ] 2 (t2): Search for Y and summarize findings ## Shared Context <any relevant context the workers should know> ## Worker Slots ### t1 <t1_status></t1_status> <t1_result></t1_result> ### t2 <t2_status></t2_status> <t2_result></t2_result> ## Results (manager may summarize here) ```
More from Memento-Teams/Memento-Widesearch
- decompose-annual-rank-statsSpecialized decomposition strategy for annual-rank-stats tasks.
- decompose-comparative-data-extractionOrchestrates parallel retrieval of distinct temporal or spatial data points followed by a centralized calculation and verification step.
- decompose-constrained-set-searchOrchestrates a multi-stage filter-and-verify process to find a specific entity satisfying three or more independent constraints.
- decompose-entity-benchmarkingSpecialized decomposition strategy for entity-benchmarking tasks involving multi-attribute data collection across a defined set of entities.
- decompose-geographic-registriesSpecialized decomposition strategy for geographic-registries tasks.
- decompose-linear-multi-hop-dependencyDecomposes queries where each answer serves as the mandatory search key for the subsequent step in a sequential chain.
- decompose-multimedia-source-verificationA two-stage strategy to isolate specific visual or bibliographic details from social media and video content by separating source identification from contextual extraction.
- decompose-split-by-categorySpecialized decomposition strategy for split-by-category tasks.
- decompose-split-by-entitySpecialized decomposition strategy for split-by-entity tasks requiring deep attribute extraction for a discrete list of subjects.
- decompose-split-by-rank-segmentSpecialized decomposition strategy for split-by-rank-segment tasks.