ask-expert
ask-expert,来自 a5c-ai/babysitter 的 agent 技能。
它会碰到什么
扫了多少1 个文本文件,2 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Breakpoints Adapter Skill
When to Use
Use ask_breakpoint when you need an answer from a human responder and the codebase, existing docs, and your own analysis are not enough.
Good fits:
- architecture trade-offs
- security reviews
- domain-specific implementation questions
- approval or intervention checkpoints
Do not route breakpoints you can already answer confidently from the available context.
Before Asking
- Check who is available with
list_responders. - Gather the code paths, constraints, and prior attempts you want the responder to see.
- Decide whether you need a named responder with
targetRespondersor general routing bydomainandtags.
Tool Contract
Tool: ask_breakpoint
{
"question": "Should we keep the GitHub Issues backend for this workflow, or move this project to the server backend?",
"context": "The repo already has routing.json entries for github-issues. We now need token-backed polling for multiple responders.",
"fileReferences": [
"packages/adapters/tasks/src/backends/index.ts",
"packages/adapters/tasks/src/mcp/backend-resolver.ts"
],
"tags": ["backends", "routing", "operations"],
"domain": "platform",
"targetResponders": ["platform-responder"],
"routingStrategy": "single",
"timeout": 600000
}
Current ask_breakpoint parameters:
questioncontextmarkdowncodeSnippetsfileReferencestagsdomainurgencyinteractionKindtargetRespondersroutingStrategytimeoutbreakpointIdbackendbreakpointsDirproven
Routing Guidance
- Use
routingStrategy: "single"when one named responder should answer. - Use
routingStrategy: "first-response-wins"for the fastest qualified answer. - Use
routingStrategy: "collect-all"when you want multiple viewpoints. - Use
routingStrategy: "quorum"when you need a majority outcome.
After the Answer
ask_breakpointwaits for the answer path to resolve, timeout, or cancellation.- Use
check_breakpoint_statuswith the returnedbreakpointIdwhen you need to inspect the stored breakpoint record after the initial exchange. - If the response must be signed, set
proven: trueonask_breakpointand optionally callverify_breakpoint_answerafterward for an explicit verification record.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。