You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bun run test test/ensure-ask-skill.test.ts test/builtin-skills.test.ts test/skill-injection-mode.test.ts test/session-skill-injection.test.ts:4 个文件、59 个测试通过。
bun run build:通过,包括 TypeScript、scripts 类型检查、dashboard bundle、dist 和 embedded assets 审计。
// Skills are matched by DESCRIPTION — the blocked-scenario trigger must live// in the frontmatter, or a stuck agent won't realize send has --attention.constfm=send!.content.split('---')[1]??'';expect(fm).toContain('--attention');
如果愿意补,建议两条:① 断言 description 含授权口径(这条会让上面那个问题机械地变红,正是它的价值);② 断言正文「什么时候用」节含新的门控措辞。注意顺序:第 ① 条需要先改了 description 才会绿。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
当前 botmux-ask 将写文件和调用外部 API 列为需要用户选择的场景,容易让已获授权的常规工作重复等待确认。本次明确以任务授权和具体操作规则判断是否需要提问,并将需求分支提问限定为会实质改变目标、范围或影响且无法依据已有要求确定的选择。
已有授权覆盖的步骤继续执行;具体流程要求重新确认时仍遵循该要求,workflow humanGate / decision 的现有约束保持有效。
影响面:
src/skills/definitions.ts中的共享 ASK_SKILL 文案,适用于使用该 Skill 的 CLI、平台及会话。命令参数、按钮交互和权限检查逻辑保持原有行为。验证在与提交内容一致的隔离源码副本中执行,使用 Bun 1.4.0 和锁定依赖:
bun install --frozen-lockfile:成功。bun run test test/ensure-ask-skill.test.ts test/builtin-skills.test.ts test/skill-injection-mode.test.ts test/session-skill-injection.test.ts:4 个文件、59 个测试通过。bun run build:通过,包括 TypeScript、scripts 类型检查、dashboard bundle、dist 和 embedded assets 审计。git diff --check:通过。验证覆盖 Skill 安装和注入;模型采用新措辞后的实际提问频率有待使用反馈。发布状态:本次提交 PR,运行中的 daemon 尚未部署此分支。