用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill work-feedback命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | work-feedback |
| description | Periodic status-table check-ins while background sub-agents work, gated by credentials.json. |
When an orchestrating agent spawns sub-agents that run in the background (e.g. Agent with run_in_background: true, or a Workflow run), the user loses visibility into progress until the final summary. This skill defines a periodic, table-only check-in that closes that gap.
Read .dev-team-agents/user-data/credentials.local.json before doing anything in this skill:
{
"work_feedback_active": true,
"work_feedback_interval_minutes": 5
}
work_feedback_active: false → do not run any part of this skill. No table, no scheduling. Proceed with the task silently as if this skill did not exist.work_feedback_interval_minutes → the polling interval in minutes. Convert to seconds and clamp to [60, 3600] (the ScheduleWakeup runtime limit) before use. A value outside that range after conversion is clamped, never rejected.active: true, interval_minutes: 5 — scripts/install.sh and /devteam:health-check Category 10 guarantee the keys exist, so an absence here means a stale read, not an opt-out.These two keys are the only source of truth for whether and how often this skill runs. Do not infer a different cadence from context, and do not skip the gate check because "it's probably fine."
Applies only when sub-agents are running in the background and the task has a known, ordered set of steps (from an approved plan, a /devteam:* command's roster, or an explicit step list stated to the user). Does not apply to:
installed_version from .dev-team-agents/user-data/state.json), and record the start timestamp — it is fixed for the whole run and never recomputed on later ticks.ScheduleWakeup with delaySeconds = the clamped interval from the gate above, and a reason naming what is being polled.TaskList/TaskOutput, or the workflow's own progress state) and update each step's status:
ScheduleWakeup again with the same interval. If all steps are ✅, emit the final all-✅ table and stop scheduling (stop: true) — do not keep polling a finished task.Never fire more than one wake-up cycle per interval, and never shorten the interval to "check sooner" — the interval is a user-controlled setting, not a suggestion.
### 📋 DEVTEAM AGENTS v<installed_version> • WORK FEEDBACK
Started at <yyyy-mm-dd hh:mm> (duration: <Xh Ym Zs>)
| # | Step | Status |
|---|--------------------|--------|
| 1 | <step 1 title> | ✅ |
| 2 | <step 2 title> | ⏳ |
| 3 | <step 3 title> | 🕐 |
###) starting with the 📋 marker, then product name and installed version in upper case, •, WORK FEEDBACK in upper case — no extra separators or emphasis.Started at followed by the fixed start timestamp recorded in Loop Mechanics step 1, then the elapsed duration since that timestamp in parentheses, formatted <h>h <m>m <s>s (omit a leading unit that is zero, e.g. 23m 4s when under an hour).