Token导航 LogoToken导航TokenDH.com
开发只读clawhub未标认证来源可访问clear审计通过

omega-notation欧米茄表示法

Agent Skill

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

总安装

6,120

周安装

250

GitHub Stars

公开资料未说明

下载量

1,980
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install omega-notation

简介

为 AI Agent 输出结构化数据设计的高效压缩表示法。

  • 显著降低评估、决策、路由等场景下的 token 消耗成本。
  • 支持 JSON Schema 映射与序列化/反序列化转换。
  • 需配合特定解析器使用,确保输出格式符合预期结构。
  • 适用于高频结构化数据处理的长期节省预算场景。omega-notation 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
omega-notation
description
Structured output compression for AI agents. Dramatically reduces token cost on structured data (evals, decisions, routing, policies, media summaries). Designed for machine-to-machine agent communication, not prose.
version
1.0.1
author
Shadow Rose
tags
[compression, tokens, cost-reduction, structured-output, agent-communication]

Ω Notation — Token Compression for AI Agents

What It Does

Compresses structured agent outputs into ultra-dense shorthand that other agents can parse. Designed for machine-to-machine communication where every token costs money.

Compression Performance

Data TypeReductionNotes
JSON evals/decisions~95-98%Highest gains — format-heavy, payload-light
Routing/dispatch~90-95%Repetitive structure compresses well
Policy rules~85-90%Conditional logic has moderate density
Media summaries~80-85%Mixed structure + free text
Semi-structured logs~60-70%Less redundant format to strip
Conversational text~30-40%High semantic density, low format redundancy

Key insight: Compression scales with how much of the original is *format* vs *meaning*. Structured data is mostly format (brackets, keys, boilerplate). Conversation is mostly meaning. Omega Notation strips format — it doesn't compress meaning.

When To Use

  • Agent-to-agent structured messages (evals, routing, decisions)
  • High-volume pipelines where token cost matters (batch processing, multi-agent orchestration)
  • Decision crystallization (fitness scores, deltas, confidence)
  • Policy enforcement outputs
  • Media/video summary digests
  • Any structured data flowing between AI systems

When NOT To Use

  • Conversational replies to humans
  • Prose, documentation, or creative writing
  • Anything where human readability matters
  • As a global default for all outputs (will break conversational ability)
  • Free-form text with no repeating structure

Format

Every Ω message starts with a header:

!omega v1 dict=auto

Supported Types

PrefixTypeExample
e.dEval digeste.d {c:0.95 d:proceed} [cat:finance]
d.cDecision crystallized.c "task-name" {fit:0.98} Δfit:+0.03
r.dRoute dispatchr.d "handler" {to:opus pri:high}
p.ePolicy enforcep.e "safety" {if:conf<0.5 then:escalate}
t.esTier escalatet.es {from:1 to:2 reason:"low-conf"}
m.cMedia compressm.c "vid-1" {h:phash:abc len:142 cap:"""summary"""}

Tags

Append tags in brackets: [cat:finance] [pri:high] [src:apex]

Deltas

Use Δ prefix for changes: Δfit:+0.03 Δconf:-0.1

Multi-line

Multiple operations in one message:

!omega v1 dict=auto
e.d {c:0.92 d:hold} [cat:trading]
d.c "btc-position" {fit:0.87} Δfit:-0.05
t.es {from:1 to:2 reason:"regime-shift"}

Round-Trip Integrity

Omega Notation includes a TypeScript serializer/deserializer with full round-trip verification. Structured data compressed → decompressed returns identical objects. The test() function validates this automatically.

Usage

When you want structured output compressed, include Ω Notation format in your request:

Give me the eval results in Ω Notation format.

The agent will use the prefix syntax (e.d, d.c, r.d, etc.) for that response. Conversational replies stay normal — Ω Notation is invoked per-request, not globally.

Dictionary System

  • dict=auto — agent builds shorthand mappings over time within a session
  • dict=none — no dictionary, all explicit
  • Custom: dict={proceed:p, escalate:e, hold:h} — define upfront

Technical Details

  • TypeScript implementation with serialize/deserialize functions
  • No external dependencies
  • Built-in round-trip test
  • Extensible type system — add new prefixes for domain-specific structured data

Modes

mode=struct (default, shipped)

Structured data compression. 90-98% reduction. Round-trip verified. Use this.

mode=context (v2, coming soon)

Prose/context compression using law-derived predictive encoding. Based on the Law of Non-Closure applied to LLM-to-LLM communication — the decoder's knowledge IS the codebook, so only surprise content needs transmitting. Theoretical ceiling: ~70-80% reduction on conversational text. Not yet implemented.

Theoretical Basis

Omega Notation exploits the fact that structured data is mostly *format* (brackets, keys, whitespace, boilerplate) with small *payloads* (values, scores, names). Stripping predictable format while preserving payload achieves high compression on structured types. Conversational text has the inverse ratio — mostly payload, little format — which is why compression drops for prose.

v2 will use a fundamentally different approach for prose: predictive compression where the LLM's training acts as a shared codebook between encoder and decoder. Only tokens the decoder can't predict need transmitting. The compression floor is H(message | decoder_knowledge) — a result derived from information theory and thermodynamic law.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.8%
按下载量换算1,600

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills