accint-solve
仓库创建 2026年1月15日最近提交 3 小时前SkillHot 收录 3 小时前
▸ 精选理由
用来触发 acc 的 solve 流程并提交继续,便于集成。
▸ 风险提示
需调用 acc_act 并有权限操作 agent,可能影响决策流程。
这个 Skill 做什么
通过 acc_act(solve) 路由目标到 acc 的记忆/评分循环并处理返回帧。
把一个目标通过 acc 的记忆/评分循环路由执行:调用 acc_act(runtime=\"solve\"),审议返回的 brain_frame,然后用 continue 提交后续。用在需要把复杂目标交给 acc 系统“思考/求解”并逐帧处理输出时。特别之处是只负责路由和交互序列,不承担具体业务决策。
▸ 展开 SKILL.md 英文原文
Route a goal through acc's scored-memory loop via acc_act(runtime="solve"); deliberate any returned brain_frame and submit via continue.
4.4w
Stars
6.5k
Forks
40
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/sickn33/agentic-awesome-skills/main/skills/accint-solve/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/sickn33/agentic-awesome-skills/main/skills/accint-solve/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# solve
## When to Use
Use this skill when you need route a goal through acc's scored-memory loop via acc_act(runtime="solve"); deliberate any returned brain_frame and submit via continue.
Routing sugar over the two MCP verbs — no logic lives here.
1. Call `acc_act(runtime="solve", input="<the goal>")`.
2. If the result is **final**: surface the answer, the `commitment` id, and the cited `[ids]`.
3. If the result is a **brain_frame**: it is YOUR deliberation turn — the frame is typed
(which hole, what was retrieved, what is predicted). Reason over it, then submit via
`acc_act(runtime="continue", input={"frame_id": ..., "submit_token": ..., "proposal_text": ...})`.
4. End `proposal_via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有