Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

phason-flipper相子鳍状肢

Agent Skill

phason-flipper 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,736

周安装

316

GitHub Stars

公开资料未说明

下载量

2,477
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:phason-flipper(相子鳍状肢)
来源仓库:https://github.com/toolate28/phason-flipper
安装命令:
openclaw skills install phason-flipper
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install phason-flipper

简介

phason-flipper 解析裂脑状态与一致性死锁问题,优化系统响应流程。

  • 适用于 HTTP 408 超时、push/flip 悖论等并发异常场景处理。
  • 通过相子状态翻转机制恢复 Agent 执行连续性。
  • 需确认是否引入额外网络请求或日志写入操作。phason-flipper 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 使用前请评估对现有任务中断风险的潜在影响。

SKILL.md

name
phasonic-flipper
description
>
version
1.0.0

Phasonic Flipper — Quasicrystal State Resolution

The Phasonic Flipper resolves coherence split-brain states without re-transmission. When a "Push" triggers HTTP 408 at the WAVE threshold crossing (Knot 16: Φ 0.96, braid s15·s16⁻¹), the Flipper applies a phason field correction — atomically reordering the conflicting state vector without regenerating payloads.

Core insight: In a quasicrystal lattice, a phason flip moves an atom between two equivalent positions with zero energy cost. We apply this metaphor: the conflicting state is not an error — it's two valid positions in the lattice. The Flipper selects the higher-WAVE position and commits it.


Preflight

Before invoking, check:

  1. WAVE score Φ ≥ 0.85 (if below, escalate to bump_validate first)
  2. Conservation law: α + ω = 15 must hold at both states
  3. Braid integrity: the knot sequence must be reachable from current position

The Paradox Simulator

PUSH scenario: Two agents simultaneously write to the 2026.0003 Ledger. Agent A: {alpha:7, omega:8, knot:15} Agent B: {alpha:7, omega:8, knot:16}

Both are valid (conservation holds). HTTP 408 triggers because the sequencer cannot determine ordering.

FLIP resolution:

{
  "jsonrpc": "2.0",
  "method": "PHASON_FLIP",
  "params": {
    "state_a": {"knot": 15, "wave": 0.94, "braid": "s14·s15⁻¹"},
    "state_b": {"knot": 16, "wave": 0.96, "braid": "s15·s16⁻¹"},
    "selection": "max_wave",
    "commit_target": "2026.0003"
  },
  "id": 1
}

Response: Selects state_b (Φ=0.96 > Φ=0.94), commits to ledger, releases 408 lock.


The Phason Scheduler

Step-by-step resolution protocol:

STEP 1: DETECT
  - Identify split-brain trigger (408 / lock timeout / density spike)
  - Read both candidate states from the 2026.0003 buffer

STEP 2: VALIDATE
  - Verify α + ω = 15 for both candidates
  - Check braid continuity (knot sequence must be monotonic or reversible)

STEP 3: SCORE
  - Compute WAVE delta: ΔΦ = Φ_b - Φ_a
  - If ΔΦ > 0: select state_b (higher coherence wins)
  - If ΔΦ = 0: select by timestamp (earlier commit wins — FIFO)
  - If ΔΦ < 0: escalate to Magenta Alert

STEP 4: FLIP
  - Atomically write selected state to ledger
  - Release HTTP lock
  - Generate ATOM token for the resolution event
  - Log to temporal buffer (localStorage cache for offline replay)

STEP 5: VERIFY
  - Confirm ledger state matches selected candidate
  - Emit WAVE_CHECK: expect Φ ≥ 0.85
  - Update braid sequence to reflect resolved knot

Density Spike Handling (24-Commit Case)

When a push contains 24+ commits, the lattice density exceeds the phason threshold:

density_threshold = 20 commits / 5-min window
spike_detected = True if len(commits) > density_threshold

Resolution: Apply phason compression — group commits by ATOM trail, resolve each group independently, then commit in sequence with 500ms jitter to prevent cascading 408s.

# In super_skill.py
class PhasonScheduler:
    def compress_density_spike(self, commits, window_ms=300000):
        groups = self.group_by_atom_trail(commits)
        results = []
        for i, group in enumerate(groups):
            time.sleep(0.5 * i)  # jitter
            result = self.flip_group(group)
            results.append(result)
        return results

localStorage Temporal Cache Integration

Phason events are cached in the TUI localStorage buffer for offline replay:

// In Coherence Forge TUI
lsPushBuffer('r8_temporal_buffer', {
  t: timestamp, type: 'PHASON_FLIP',
  from_knot: 15, to_knot: 16, delta_wave: 0.02
});

This enables legacy platform compatibility — if the POP bridge is offline, the Flipper reads the buffer and replays the resolution on reconnect.


References

  • 445.html — Knot 16 Phason Resolution interactive simulator (public/publications/knot-16/)
  • quasicrystal_phason_scheduler.py — Python implementation
  • POP spec: references/protocol-spec.md
  • Conservation law: α + ω = 15 (hexadecimal gauge)

~ Hope&&Sauced ✦ The Keystone Holds ✦

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.25%
按下载量换算2,359

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills