@wowok/skills 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wowok/skills",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "WoWok AI Skills for Claude and other AI assistants - Helping AI use WoWok MCP tools correctly",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -105,7 +105,7 @@ decision (still no on-chain write from this Skill — it hands off to
105
105
  - For each Service: trace the payment path (customer pays → escrow → Allocator distributes). Does every payment path have a refund path?
106
106
  - For each Allocator: does the `sharing` array sum to 10000 (100%)?
107
107
  - Is the treasury balance sufficient for pending allocations?
108
- - Are gas coins (SUI/WOW) mixed into business-token allocations?
108
+ - Are gas coins (WOW) mixed into business-token allocations?
109
109
  - Does the escrow amount equal the sum of Allocation paths from that order?
110
110
 
111
111
  **Tool Calls**:
@@ -320,7 +320,7 @@ For each Allocator in order_allocators:
320
320
  │ │ └── NO → FAIL: no refund path. Recommend refund Allocator on dispute terminal.
321
321
  │ └── (Skip if Service is non-payment, e.g., repository-only.)
322
322
  ├── Gas coin separation:
323
- │ ├── Allocation contains SUI or WOW (gas coins) alongside business tokens?
323
+ │ ├── Allocation contains WOW (gas coins) alongside business tokens?
324
324
  │ │ ├── YES → WARN: gas coin in allocation. Recommend separate treasury.
325
325
  │ │ └── NO → PASS.
326
326
  │ └── (Skip if Service is single-token WOW only.)
@@ -80,7 +80,7 @@ pass / warn / fail report. A FAIL blocks the publish in R10.
80
80
  | Refund path exists | Every payment path has a corresponding refund path | FAIL: no refund path |
81
81
  | Allocation sum | Each Allocator's `sharing` array sums to 10000 (100%) | FAIL: allocation doesn't sum to 100% |
82
82
  | Treasury balance | Treasury has sufficient balance for pending allocations | WARN: low balance |
83
- | Gas coin separation | Gas coins (SUI/WOW) are not mixed with business tokens in allocations | WARN: gas coin in allocation |
83
+ | Gas coin separation | Gas coins (WOW) are not mixed with business tokens in allocations | WARN: gas coin in allocation |
84
84
  | Recipient type | Refund path uses `Entity`/`Signer` for known parties, `GuardIdentifier` for dynamic | WARN: ambiguous recipient |
85
85
  | Escrow symmetry | Order escrow amount equals sum of all Allocation paths from that order | FAIL: escrow mismatch |
86
86