بنقرة واحدة
quicker-authoring-loop-control
Quicker 列表循环 each + simpleIf + break/continue。写遍历列表、条件跳出循环、提前结束迭代类动作时加载。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Quicker 列表循环 each + simpleIf + break/continue。写遍历列表、条件跳出循环、提前结束迭代类动作时加载。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Routes Quicker headless action editing (P0–P7): pick workflow topic, then schema/step-runner refs. Use when creating or editing Quicker actions, subprograms, steps, or data.json on disk.
After quicker-rpc source changes, run pwsh ./build.ps1 -t (hot-reload plugin + qkrpc CLI/serve) without restarting agent-gui. Use when editing Plugin, Console, Contracts, AgentModel, build scripts, or RPC/CLI; when the user asks to build, test build, build -t, hot update, /hot-update, reload plugin, or restart qkrpc serve. For official getquicker release use quicker-rpc-publish + quicker-qkbuild-version-publish (third field +1).
Guides action designer (action-editor) UI work in agent-gui. UI originates from ../Quicker/Quicker.Designer; step double-click popup and per-field editing behavior must match ../Quicker/QuickerPc/Quicker ActionDesignerWindow and StepEditor components. Use when editing agent-gui/lib/action-editor, StepEditorPopup, param editors, step field visibility, or aligning web step editing with desktop Quicker.
Guides agents to find Quicker.exe internal types and methods for quicker-rpc plugin work. Use when implementing or debugging reflection against Quicker.exe, locating internal Quicker APIs, handling obfuscated Release builds, qkref references, or service access from QuickerRpc.Plugin.
Analyze QuickerAgent chat exports (quicker-agent-chat-export JSON) to score authoring flow, detect tool/schema issues, and recommend prompt/tool/skill optimizations. Use when the user provides an exported thread JSON or asks to improve agent-gui behavior from real sessions.
getquicker User/Actions 分页 HTML 抓取:汇总获赞 totalLikes 与动作数 actionCount。写分页 HTTP 抓取、HTML 解析聚合类动作时加载。
| name | quicker-authoring-loop-control |
| description | Quicker 列表循环 each + simpleIf + break/continue。写遍历列表、条件跳出循环、提前结束迭代类动作时加载。 |
| allowed-tools | docs |
| compatibility | QuickerAgent (on-demand); requires Quicker + QuickerRpc plugin |
父 skill:quicker-authoring · 状态:promoted · 参考:
docs/authoring-references/action-patterns/loop-control.md
sys:each / sys:repeat 遍历,需在循环内 break 或 continue。不是单步 listOperations、不是文件批处理业务本身。
evalexpression 或上游)sys:each + ifSteps 子步骤sys:simpleIf($= 条件)→ True 内 break / continuefound 等变量ifSteps。simpleIf,避免裸 sys:if 空 Else 崩溃(B03 卡点)。condition 必须 $= 前缀;each 输出 item/count 映射到变量表。useMultiThread 除非已读 KC 多线程说明。break 后不会执行列表剩余项(trace 可见「检测到Break标记」)。action-patterns/loop-control.md