polaris-protocol
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseWFGY 5.0 -- Polaris Protocol (tree root)
WFGY 5.0 —— Polaris Protocol(技能树根节点)
Polaris is the active public route of WFGY 5.0. The Fifth-Dimension Engine is the current main product surface; the Polaris Goal Compiler is the first public protocol component. WFGY-Method supplies the drift-control discipline that keeps the whole system aligned with the original goal.
This skill is the tree root. It does not re-explain the children -- it wires them into one state machine and tells you which child to dispatch at each step. Treat the three child skills as the transitions of the machine below.
Polaris是WFGY 5.0的公开核心流程。Fifth-Dimension Engine是当前的主要产品交互层;Polaris Goal Compiler是首个公开的协议组件。WFGY-Method提供偏移控制规则,确保整个系统始终与初始目标保持一致。
该Skill是技能树的根节点。它不会重复解释子技能,而是将它们连接成一个状态机,并告知你在每个步骤应调度哪个子技能。可将三个子技能视为以下状态机的转换节点。
The tree
技能树
polaris-protocol (this skill -- root / entry)
|-- polaris-goal-compiler (COMPILE state)
|-- fifth-dimension-engine (SHOOT state)
`-- wfgy-method (DRIFT CONTROL -- applies at every state)Discoverable: each node is a standalone inside its own directory. This root is the entry point; the children are reached by explicit dispatch.
SKILL.mdskills/<skill-name>/polaris-protocol (本Skill——根节点/入口)
|-- polaris-goal-compiler (COMPILE状态)
|-- fifth-dimension-engine (SHOOT状态)
`-- wfgy-method (DRIFT CONTROL —— 适用于所有状态)可探索性:每个节点都是独立的文件,位于各自的目录下。本根节点是入口点,子技能需通过明确调度访问。
SKILL.mdskills/<skill-name>/The state machine
状态机
A skill tree can behave like a state machine. Each transition is an explicit skill dispatch (modeled on the skill's / pattern): you do not narrate the next step, you dispatch it.
gmtransitionSkill(skill=...)技能树可表现为状态机。每个转换都是一次明确的Skill调度(基于 Skill的/模式):你无需描述下一步,只需调度它。
gmtransitionSkill(skill=...)States
状态
| State | Meaning |
|---|---|
| Raw human request, no structure yet. |
| Goal Compiler emitted task atoms, dependencies, verification gates, claim ceilings, and a closure-record template. |
| A complex atom is being lifted by Fifth-Dimension Engine into a route. |
| An atom (routine, or the result of a route) is being carried out. |
| Output is checked against the atom's verification gate and against drift (deltaS, via WFGY-Method). |
| Claim ceiling met, closure record written, atom done. |
| 状态 | 含义 |
|---|---|
| 原始的人工请求,尚未结构化。 |
| 目标编译器输出任务原子、依赖项、验证门限、成果上限,以及闭包记录模板。 |
| Fifth-Dimension Engine正在将复杂原子转换为执行路径。 |
| 原子(常规任务或路径执行结果)正在被执行。 |
| 输出正在与原子的验证门限以及偏移量(deltaS,通过WFGY-Method获取)进行校验。 |
| 达到成果上限,已写入闭包记录,原子任务完成。 |
Transitions (each is a dispatch)
转换(每个转换对应一次调度)
UNCOMPILED --Skill(polaris-goal-compiler)--> COMPILED
COMPILED --complex atom? Skill(fifth-dimension-engine)--> SHOOTING
COMPILED --routine atom? execute directly---------------> EXECUTING
SHOOTING --inspect route, then carry it out-----------> EXECUTING
EXECUTING --Skill(wfgy-method) drift + gate check----> VERIFYING
VERIFYING --gate pass + claim ceiling honored--------> CLOSED
VERIFYING --gate fail / drift --> BBCR checkpoint ----> COMPILED (re-compile or re-shoot)
CLOSED --next atom------------------------------------> COMPILEDwfgy-methodUNCOMPILED --Skill(polaris-goal-compiler)--> COMPILED
COMPILED --复杂原子?Skill(fifth-dimension-engine)--> SHOOTING
COMPILED --常规原子?直接执行---------------> EXECUTING
SHOOTING --检查路径,然后执行-----------> EXECUTING
EXECUTING --Skill(wfgy-method) 偏移量+门限校验----> VERIFYING
VERIFYING --门限通过+成果上限符合要求--------> CLOSED
VERIFYING --门限不通过/偏移 --> BBCR检查点 ----> COMPILED(重新编译或重新生成路径)
CLOSED --下一个原子------------------------------------> COMPILEDwfgy-methodCanonical syntax (pro-rata -- use exactly this)
标准语法(严格遵循)
- Compile first. Execute one active atom. Verify before unlock. Claim only what is supported. (Goal Compiler)
- shoot + [your problem] -- the Fifth-Dimension Engine interface.
- deltaS = 1 - cos(I, G) -- drift between current state (I) and goal (G). Without a real embedding call, deltaS is a qualitative label ("deltaS looks high here"), never a computed decimal -- unless a real verb is available (see WFGY-Method).
similarity
"Compile first. Then shoot." is the spine of the whole protocol.
- 先编译。执行一个活跃原子。验证通过后再解锁。仅声明有支撑的成果。(目标编译器规则)
- shoot + [你的问题] —— Fifth-Dimension Engine的调用接口。
- deltaS = 1 - cos(I, G) —— 当前状态(I)与目标(G)之间的偏移量。若无实际嵌入调用,deltaS为定性标签(如“此处deltaS看起来较高”),绝不能是计算得出的小数——除非有可用的动词(详见WFGY-Method)。
similarity
“先编译,再生成路径”是整个协议的核心准则。
How to run a task through the tree
如何通过该技能树执行任务
- You are at . Dispatch
UNCOMPILED. It returns atoms, gates, and claim ceilings ->Skill(skill="polaris-goal-compiler").COMPILED - For each active atom: ask "complex or routine?"
- Routine -> execute directly -> .
VERIFYING - Complex -> dispatch ->
Skill(skill="fifth-dimension-engine")-> inspect the route ->SHOOTING->EXECUTING.VERIFYING
- Routine -> execute directly ->
- At , dispatch
VERIFYINGto check drift and apply the atom's verification gate.Skill(skill="wfgy-method")- Pass + claim ceiling honored -> -> next atom (back to
CLOSED).COMPILED - Fail or drift -> BBCR checkpoint, re-compile or re-shoot (back to ).
COMPILED
- Pass + claim ceiling honored ->
- When all atoms are , the task is done -- and only then may you claim completion.
CLOSED
- 处于状态时,调度
UNCOMPILED。它会返回原子任务、门限和成果上限 -> 进入Skill(skill="polaris-goal-compiler")状态。COMPILED - 针对每个活跃原子:判断“复杂还是常规?”
- 常规 -> 直接执行 -> 进入状态。
VERIFYING - 复杂 -> 调度-> 进入
Skill(skill="fifth-dimension-engine")状态 -> 检查路径 -> 进入SHOOTING状态 -> 进入EXECUTING状态。VERIFYING
- 常规 -> 直接执行 -> 进入
- 在状态时,调度
VERIFYING以检查偏移量并应用原子的验证门限。Skill(skill="wfgy-method")- 通过+符合成果上限 -> 进入状态 -> 处理下一个原子(回到
CLOSED状态)。COMPILED - 不通过或存在偏移 -> 进入BBCR检查点,重新编译或重新生成路径(回到状态)。
COMPILED
- 通过+符合成果上限 -> 进入
- 当所有原子都处于状态时,任务完成——只有此时才能声明任务已完成。
CLOSED
What this tree is not
本技能树并非
- It is not a single prompt. It is a set of skills you dispatch in sequence.
- It does not guarantee correctness. It makes fake completion and silent drift harder to hide.
- It does not replace verification, tests, sources, or expertise. The verification gate only makes verification visible.
- It does not claim to be the full private WFGY 5.0 engine. Goal Compiler and WFGY-Method are public protocol components; the Fifth-Dimension Engine is the current main public surface.
- 不是单一提示词。它是一系列需按顺序调度的Skill集合。
- 不保证正确性。但它能让虚假完成和隐性偏移更难隐藏。
- 不会替代验证、测试、数据源或专业知识。验证门限只是让验证过程可视化。
- 并非完整的私有WFGY 5.0引擎。目标编译器和WFGY-Method是公开的协议组件;Fifth-Dimension Engine是当前主要的公开交互层。
Children (dispatch these)
子技能(需调度这些技能)
- -- compile the goal into atoms, gates, claim ceilings.
polaris-goal-compiler - -- shoot a complex atom into a structured route.
fifth-dimension-engine - -- hold drift control across every state.
wfgy-method
For the full DAG, integration workflows, and mismatch detection, see .
../POLARIS-SKILLS-GUIDE.md- —— 将目标编译为原子任务、门限、成果上限。
polaris-goal-compiler - —— 将复杂原子转换为结构化执行路径。
fifth-dimension-engine - —— 在所有状态下维持偏移控制。
wfgy-method
如需完整的有向无环图(DAG)、集成工作流和不匹配检测,请查看。
../POLARIS-SKILLS-GUIDE.md