accint-solve

仓库创建 2026年1月15日最近提交 21 天前SkillHot 收录 20 天前
▸ 精选理由

适用于使用 acc_act(runtime="solve") 的代理流程自动化。

这个 Skill 做什么

将目标通过 acc 的 scored-memory 循环路由并提交解答。

把一个目标交给名为 acc 的记忆评分循环去处理:用 acc_act(runtime="solve") 把问题投进去,审读返回的 brain_frame,然后通过 continue 提交解答。适合把需要检索、评分与多轮推理的任务交给这套记忆-评分-决策环路解决。特点是它偏路由与协调——不做复杂业务逻辑,只负责把问题送进正确的处理流水并收回最终结果。

▸ 展开 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.2w
Stars
6.8k
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/accint-solve/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/sickn33/antigravity-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 公开信息 · 原文版权归作者所有