@wowok/skills 1.1.0 → 1.1.1
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/README.md +16 -20
- package/dist/cli.js +114 -19
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/skills.d.ts +46 -1
- package/dist/skills.d.ts.map +1 -1
- package/dist/skills.js +154 -16
- package/dist/skills.js.map +1 -1
- package/dist/types.d.ts +31 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +3 -4
- package/scripts/install.js +5 -3
- package/wowok-arbitrator/SKILL.md +279 -0
- package/wowok-guard/SKILL.md +143 -167
- package/wowok-machine/SKILL.md +167 -279
- package/wowok-order/SKILL.md +281 -429
- package/wowok-provider/SKILL.md +453 -0
- package/wowok-safety/SKILL.md +42 -20
- package/wowok-tools/SKILL.md +328 -343
- package/schemas/onchain_operations/_common.md +0 -406
- package/schemas/onchain_operations/_index.md +0 -196
- package/schemas/onchain_operations/allocation.md +0 -28
- package/schemas/onchain_operations/arbitration.md +0 -106
- package/schemas/onchain_operations/contact.md +0 -40
- package/schemas/onchain_operations/demand.md +0 -53
- package/schemas/onchain_operations/gen_passport.md +0 -23
- package/schemas/onchain_operations/guard.md +0 -56
- package/schemas/onchain_operations/machine.md +0 -89
- package/schemas/onchain_operations/order.md +0 -56
- package/schemas/onchain_operations/payment.md +0 -24
- package/schemas/onchain_operations/permission.md +0 -68
- package/schemas/onchain_operations/personal.md +0 -58
- package/schemas/onchain_operations/progress.md +0 -38
- package/schemas/onchain_operations/repository.md +0 -70
- package/schemas/onchain_operations/reward.md +0 -38
- package/schemas/onchain_operations/service.md +0 -78
- package/schemas/onchain_operations/treasury.md +0 -68
- package/schemas/schema-account_operation.md +0 -402
- package/schemas/schema-guard2file.md +0 -153
- package/schemas/schema-local_info_operation.md +0 -160
- package/schemas/schema-local_mark_operation.md +0 -148
- package/schemas/schema-machineNode2file.md +0 -155
- package/schemas/schema-messenger_operation.md +0 -547
- package/schemas/schema-onchain_events.md +0 -201
- package/schemas/schema-onchain_table_data.md +0 -334
- package/schemas/schema-query_toolkit.md +0 -395
- package/schemas/schema-wip_file.md +0 -240
- package/schemas/schema-wowok_buildin_info.md +0 -296
- package/wowok-build/SKILL.md +0 -139
|
@@ -1,296 +0,0 @@
|
|
|
1
|
-
# WoWok Built-in Info Tool Schema
|
|
2
|
-
|
|
3
|
-
> **Tool Name**: `wowok_buildin_info`
|
|
4
|
-
> **Description**: Query WoWok protocol information: 'constants', 'built-in permissions', 'guard instructions', 'current network', or 'value types'.
|
|
5
|
-
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
## Tool Schema
|
|
9
|
-
|
|
10
|
-
```typescript
|
|
11
|
-
wowok_buildin_info: ProtocolInfoQuery
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
## Input Schema
|
|
17
|
-
|
|
18
|
-
```typescript
|
|
19
|
-
ProtocolInfoQuery =
|
|
20
|
-
| { info: "constants" }
|
|
21
|
-
| { info: "built-in permissions"; filter?: PermissionFilter }
|
|
22
|
-
| { info: "guard instructions"; filter?: GuardInstructFilterOptions }
|
|
23
|
-
| { info: "current network" }
|
|
24
|
-
| { info: "value types" }
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
|
-
## Sub Schemas
|
|
30
|
-
|
|
31
|
-
### PermissionFilter
|
|
32
|
-
|
|
33
|
-
```typescript
|
|
34
|
-
PermissionFilter {
|
|
35
|
-
index?: number, // Filter by permission index
|
|
36
|
-
name?: string, // Filter by permission name (partial match, case-insensitive)
|
|
37
|
-
module?: string // Filter by module name (e.g., 'service', 'order', 'machine')
|
|
38
|
-
}
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
### GuardInstructFilterOptions
|
|
42
|
-
|
|
43
|
-
```typescript
|
|
44
|
-
GuardInstructFilterOptions {
|
|
45
|
-
id?: number, // Filter by instruction ID
|
|
46
|
-
name?: string, // Filter by instruction name (partial match, case-insensitive)
|
|
47
|
-
objectType?: string, // Filter by object type
|
|
48
|
-
returnType?: string // Filter by return value type
|
|
49
|
-
}
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
## Output Schema
|
|
55
|
-
|
|
56
|
-
```typescript
|
|
57
|
-
ProtocolInfoResult {
|
|
58
|
-
result: ProtocolInfoResultWrapped
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
ProtocolInfoResultWrapped =
|
|
62
|
-
| { info: "constants"; result: ConstantItem[] }
|
|
63
|
-
| { info: "built-in permissions"; result: PermissionInfoType[] }
|
|
64
|
-
| { info: "guard instructions"; result: GuardItem[] }
|
|
65
|
-
| { info: "current network"; result: Entrypoint }
|
|
66
|
-
| { info: "value types"; result: ConstantItem[] }
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
---
|
|
70
|
-
|
|
71
|
-
## Result Type Schemas
|
|
72
|
-
|
|
73
|
-
### ConstantItem
|
|
74
|
-
|
|
75
|
-
```typescript
|
|
76
|
-
ConstantItem {
|
|
77
|
-
name: string, // Constant name
|
|
78
|
-
value: string, // Constant value
|
|
79
|
-
description: string // Constant description
|
|
80
|
-
}
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
### PermissionInfoType
|
|
84
|
-
|
|
85
|
-
```typescript
|
|
86
|
-
PermissionInfoType {
|
|
87
|
-
index: number, // Permission index (0-65535)
|
|
88
|
-
name: string, // Permission name
|
|
89
|
-
module: string, // Module name
|
|
90
|
-
description: string // Permission description
|
|
91
|
-
}
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### GuardItem
|
|
95
|
-
|
|
96
|
-
```typescript
|
|
97
|
-
GuardItem {
|
|
98
|
-
id: number, // Instruction ID
|
|
99
|
-
name: string, // Instruction name
|
|
100
|
-
objectType: string, // Object type this instruction operates on
|
|
101
|
-
parameters: ValueType[], // Parameter types
|
|
102
|
-
return: ValueType, // Return value type
|
|
103
|
-
description: string, // Instruction description
|
|
104
|
-
parameters_description: string[] // Parameter descriptions
|
|
105
|
-
}
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
### Entrypoint
|
|
109
|
-
|
|
110
|
-
```typescript
|
|
111
|
-
Entrypoint = "localnet" | "testnet"
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
### ValueType
|
|
115
|
-
|
|
116
|
-
```typescript
|
|
117
|
-
ValueType =
|
|
118
|
-
| "Bool" | "Address" | "String"
|
|
119
|
-
| "U8" | "U16" | "U32" | "U64" | "U128" | "U256"
|
|
120
|
-
| "VecBool" | "VecAddress" | "VecString"
|
|
121
|
-
| "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256"
|
|
122
|
-
| "VecVecU8"
|
|
123
|
-
| number // Numeric representation (0-18)
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
---
|
|
127
|
-
|
|
128
|
-
## Query Type Selection Guide
|
|
129
|
-
|
|
130
|
-
| Query Type | Description | Use Case |
|
|
131
|
-
|------------|-------------|----------|
|
|
132
|
-
| `constants` | Protocol constants | Get system-wide constant values |
|
|
133
|
-
| `built-in permissions` | Built-in permission definitions | Find permission indices for Permission objects |
|
|
134
|
-
| `guard instructions` | Guard query instructions | Find available data queries for Guard nodes |
|
|
135
|
-
| `current network` | Current network entrypoint | Verify which network is active |
|
|
136
|
-
| `value types` | Supported value types | Get type mappings for Guard/Repository data |
|
|
137
|
-
|
|
138
|
-
---
|
|
139
|
-
|
|
140
|
-
## Examples
|
|
141
|
-
|
|
142
|
-
### Query Constants
|
|
143
|
-
|
|
144
|
-
```typescript
|
|
145
|
-
wowok_buildin_info: {
|
|
146
|
-
info: "constants"
|
|
147
|
-
}
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
### Query Built-in Permissions with Filter
|
|
151
|
-
|
|
152
|
-
```typescript
|
|
153
|
-
wowok_buildin_info: {
|
|
154
|
-
info: "built-in permissions",
|
|
155
|
-
filter: {
|
|
156
|
-
module: "service" // Filter for service-related permissions
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
### Query Guard Instructions with Filter
|
|
162
|
-
|
|
163
|
-
```typescript
|
|
164
|
-
wowok_buildin_info: {
|
|
165
|
-
info: "guard instructions",
|
|
166
|
-
filter: {
|
|
167
|
-
objectType: "Service", // Filter for Service object queries
|
|
168
|
-
returnType: "U64" // Filter for U64 return type
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
### Query Current Network
|
|
174
|
-
|
|
175
|
-
```typescript
|
|
176
|
-
wowok_buildin_info: {
|
|
177
|
-
info: "current network"
|
|
178
|
-
}
|
|
179
|
-
```
|
|
180
|
-
|
|
181
|
-
### Query Value Types
|
|
182
|
-
|
|
183
|
-
```typescript
|
|
184
|
-
wowok_buildin_info: {
|
|
185
|
-
info: "value types"
|
|
186
|
-
}
|
|
187
|
-
```
|
|
188
|
-
|
|
189
|
-
---
|
|
190
|
-
|
|
191
|
-
## Output Examples
|
|
192
|
-
|
|
193
|
-
### Constants Result
|
|
194
|
-
|
|
195
|
-
```json
|
|
196
|
-
{
|
|
197
|
-
"result": {
|
|
198
|
-
"info": "constants",
|
|
199
|
-
"result": [
|
|
200
|
-
{
|
|
201
|
-
"name": "MAX_GUARD_NODES",
|
|
202
|
-
"value": "64",
|
|
203
|
-
"description": "Maximum number of nodes in a Guard"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"name": "MAX_MACHINE_NODES",
|
|
207
|
-
"value": "256",
|
|
208
|
-
"description": "Maximum number of nodes in a Machine"
|
|
209
|
-
}
|
|
210
|
-
]
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
```
|
|
214
|
-
|
|
215
|
-
### Built-in Permissions Result
|
|
216
|
-
|
|
217
|
-
```json
|
|
218
|
-
{
|
|
219
|
-
"result": {
|
|
220
|
-
"info": "built-in permissions",
|
|
221
|
-
"result": [
|
|
222
|
-
{
|
|
223
|
-
"index": 0,
|
|
224
|
-
"name": "service.create",
|
|
225
|
-
"module": "service",
|
|
226
|
-
"description": "Create new service"
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
"index": 1,
|
|
230
|
-
"name": "service.update",
|
|
231
|
-
"module": "service",
|
|
232
|
-
"description": "Update service settings"
|
|
233
|
-
}
|
|
234
|
-
]
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
```
|
|
238
|
-
|
|
239
|
-
### Guard Instructions Result
|
|
240
|
-
|
|
241
|
-
```json
|
|
242
|
-
{
|
|
243
|
-
"result": {
|
|
244
|
-
"info": "guard instructions",
|
|
245
|
-
"result": [
|
|
246
|
-
{
|
|
247
|
-
"id": 1001,
|
|
248
|
-
"name": "service.description",
|
|
249
|
-
"objectType": "Service",
|
|
250
|
-
"parameters": [],
|
|
251
|
-
"return": "String",
|
|
252
|
-
"description": "Get service description",
|
|
253
|
-
"parameters_description": []
|
|
254
|
-
}
|
|
255
|
-
]
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
### Current Network Result
|
|
261
|
-
|
|
262
|
-
```json
|
|
263
|
-
{
|
|
264
|
-
"result": {
|
|
265
|
-
"info": "current network",
|
|
266
|
-
"result": "testnet"
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
```
|
|
270
|
-
|
|
271
|
-
### Value Types Result
|
|
272
|
-
|
|
273
|
-
```json
|
|
274
|
-
{
|
|
275
|
-
"result": {
|
|
276
|
-
"info": "value types",
|
|
277
|
-
"result": [
|
|
278
|
-
{
|
|
279
|
-
"name": "Bool",
|
|
280
|
-
"value": "0",
|
|
281
|
-
"description": "Boolean type"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"name": "Address",
|
|
285
|
-
"value": "1",
|
|
286
|
-
"description": "Address type"
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
"name": "String",
|
|
290
|
-
"value": "2",
|
|
291
|
-
"description": "String type"
|
|
292
|
-
}
|
|
293
|
-
]
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
```
|
package/wowok-build/SKILL.md
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: wowok-build
|
|
3
|
-
description: |
|
|
4
|
-
WoWok commercial service building — the canonical skill for constructing
|
|
5
|
-
production-ready service marketplaces (Service + Machine + Guard + Allocators + Reward + Arbitration).
|
|
6
|
-
|
|
7
|
-
This skill covers the complete 4-phase build process for commercial services.
|
|
8
|
-
For individual tool usage and auxiliary objects (Demand, Treasury, Repository, Contact),
|
|
9
|
-
see wowok-tools.
|
|
10
|
-
when_to_use:
|
|
11
|
-
- User wants to create a commercial service/marketplace on WoWok
|
|
12
|
-
- User wants to build a complete workflow system with order management
|
|
13
|
-
- User wants to set up order splitting (Allocators), incentive pools (Reward), or dispute resolution (Arbitration)
|
|
14
|
-
- User mentions "build service", "create marketplace", "setup workflow", "revenue sharing"
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
# WoWok Commercial Service Building
|
|
18
|
-
|
|
19
|
-
Build production-ready service marketplaces on WoWok with proper dependency management.
|
|
20
|
-
|
|
21
|
-
> **Prerequisites**: Understand CREATE vs MODIFY pattern in [_index.md](../docs/skills/onchain_operations/_index.md)
|
|
22
|
-
> **Auxiliary Objects**: Demand, Treasury, Repository, Contact — see [wowok-tools](../wowok-tools/SKILL.md)
|
|
23
|
-
> **Guard Design**: See [wowok-guard](../wowok-guard/SKILL.md) | **Order Lifecycle**: See [wowok-order](../wowok-order/SKILL.md)
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## Core Principle: Dependency-First Construction
|
|
28
|
-
|
|
29
|
-
Commercial services MUST be built in strict dependency order. An object cannot reference another object that does not yet exist.
|
|
30
|
-
|
|
31
|
-
**Immutability Rules**:
|
|
32
|
-
- **Machine**: Nodes become **IMMUTABLE** after `publish: true`
|
|
33
|
-
- **Service**: `machine` and `order_allocators` become **LOCKED** after `publish: true`
|
|
34
|
-
- **Guard**: **IMMUTABLE** after creation (CREATE-only)
|
|
35
|
-
|
|
36
|
-
**Why This Matters**: Guards created in Phase 2 validate **FUTURE** runtime objects (Order, Progress) that don't exist yet. They store query logic, not object state.
|
|
37
|
-
|
|
38
|
-
---
|
|
39
|
-
|
|
40
|
-
## The 4-Phase Build Process
|
|
41
|
-
|
|
42
|
-
```
|
|
43
|
-
PHASE 1 — Foundation
|
|
44
|
-
1. Permission — [permission.md](../docs/skills/onchain_operations/permission.md)
|
|
45
|
-
2. Service — [service.md](../docs/skills/onchain_operations/service.md) — CREATE only, DO NOT publish
|
|
46
|
-
3. Machine — [machine.md](../docs/skills/onchain_operations/machine.md) — CREATE and define ALL nodes, DO NOT publish
|
|
47
|
-
|
|
48
|
-
PHASE 2 — Trust Layer
|
|
49
|
-
4. Guards — [guard.md](../docs/skills/onchain_operations/guard.md) — validate Reward claims, Allocators conditions, Machine node transitions, etc. Create all guards needed.
|
|
50
|
-
|
|
51
|
-
PHASE 3 — Sub-Components
|
|
52
|
-
5. Allocators — [service.md](../docs/skills/onchain_operations/service.md) — CREATE rules, MODIFY Service.order_allocators to bind
|
|
53
|
-
6. Reward — [reward.md](../docs/skills/onchain_operations/reward.md) — CREATE/MODIFY incentive pools
|
|
54
|
-
7. Arbitration — [arbitration.md](../docs/skills/onchain_operations/arbitration.md) — CREATE/MODIFY dispute resolution
|
|
55
|
-
|
|
56
|
-
PHASE 4 — Publication
|
|
57
|
-
8. Publish Machine — nodes become IMMUTABLE
|
|
58
|
-
9. Bind Machine to Service — MODIFY Service.machine
|
|
59
|
-
10. Publish Service — Machine & Allocators LOCKED
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
---
|
|
63
|
-
|
|
64
|
-
## Pre-Build: Discover Resources
|
|
65
|
-
|
|
66
|
-
Query before building to avoid collisions:
|
|
67
|
-
|
|
68
|
-
```typescript
|
|
69
|
-
query_toolkit({ query_type: "account_list" })
|
|
70
|
-
query_toolkit({ query_type: "local_mark_list" })
|
|
71
|
-
query_toolkit({ query_type: "onchain_objects", objects: ["<name>"] })
|
|
72
|
-
wowok_buildin_info({ info_type: "permissions" })
|
|
73
|
-
wowok_buildin_info({ info_type: "guard_instructions" })
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
**Schema**: [query_toolkit](../docs/skills/schema-query_toolkit.md) | [wowok_buildin_info](../docs/skills/schema-wowok_buildin_info.md)
|
|
77
|
-
|
|
78
|
-
---
|
|
79
|
-
|
|
80
|
-
## Key Operations Reference
|
|
81
|
-
|
|
82
|
-
### CREATE vs MODIFY
|
|
83
|
-
|
|
84
|
-
See [_index.md](../docs/skills/onchain_operations/_index.md) for the unified pattern:
|
|
85
|
-
- **Object shape** (`{ name?, ... }`) = CREATE
|
|
86
|
-
- **String value** (`"<name>"`) = MODIFY
|
|
87
|
-
|
|
88
|
-
### Reuse Existing Objects (Recommended)
|
|
89
|
-
|
|
90
|
-
Instead of defining from scratch, **export from existing on-chain objects** as templates:
|
|
91
|
-
|
|
92
|
-
**Export Machine for editing:**
|
|
93
|
-
```typescript
|
|
94
|
-
// Use any existing Machine ID or name as template
|
|
95
|
-
machineNode2file({ machine: "<existing_machine_id>", file_path: "./my_nodes.json" })
|
|
96
|
-
// Edit my_nodes.json, then use it to create new Machine
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
**Export Guard for editing:**
|
|
100
|
-
```typescript
|
|
101
|
-
// Use any existing Guard ID or name as template
|
|
102
|
-
guard2file({ guard: "<existing_guard_id>", file_path: "./my_guard.json" })
|
|
103
|
-
// Edit my_guard.json, then use it to create new Guard
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
**Use exported files to create new objects:**
|
|
107
|
-
- **Machine**: `node: { json_or_markdown_file: "./my_nodes.json" }` — loads complete node definition
|
|
108
|
-
- **Guard**: `root: { type: "file", file_path: "./my_guard.json" }` — loads rule tree from file
|
|
109
|
-
|
|
110
|
-
**Benefits**: Leverage proven templates, modify only what differs, significantly reduce definition workload.
|
|
111
|
-
|
|
112
|
-
**Schemas**: [machineNode2file](../docs/skills/schema-machineNode2file.md) | [guard2file](../docs/skills/schema-guard2file.md)
|
|
113
|
-
|
|
114
|
-
---
|
|
115
|
-
|
|
116
|
-
### Error Recovery
|
|
117
|
-
|
|
118
|
-
| Error | Fix |
|
|
119
|
-
|-------|-----|
|
|
120
|
-
| "object not found" | `env.no_cache: true` |
|
|
121
|
-
| "permission denied" | Check Permission config |
|
|
122
|
-
| "dependency not found" | Create referenced objects first |
|
|
123
|
-
| "cannot modify after publish" | Machine/Allocators immutable |
|
|
124
|
-
| Guard validation failure | Review Guard table vs submitted data |
|
|
125
|
-
| "invalid object format" | Object=CREATE, String=MODIFY |
|
|
126
|
-
|
|
127
|
-
---
|
|
128
|
-
|
|
129
|
-
## Schema Reference
|
|
130
|
-
|
|
131
|
-
**Common Types**: [_common.md](../docs/skills/onchain_operations/_common.md) — `TypedPermissionObject`, `WithPermissionObject`, `CallEnv`, `SubmissionCall`
|
|
132
|
-
|
|
133
|
-
**Operations** (CREATE & MODIFY): [service](../docs/skills/onchain_operations/service.md) | [machine](../docs/skills/onchain_operations/machine.md) | [permission](../docs/skills/onchain_operations/permission.md) | [repository](../docs/skills/onchain_operations/repository.md) | [treasury](../docs/skills/onchain_operations/treasury.md) | [demand](../docs/skills/onchain_operations/demand.md) | [contact](../docs/skills/onchain_operations/contact.md) | [reward](../docs/skills/onchain_operations/reward.md) | [arbitration](../docs/skills/onchain_operations/arbitration.md)
|
|
134
|
-
|
|
135
|
-
**CREATE-only**: [guard](../docs/skills/onchain_operations/guard.md) (immutable) | [payment](../docs/skills/onchain_operations/payment.md)
|
|
136
|
-
|
|
137
|
-
**MODIFY-only**: [order](../docs/skills/onchain_operations/order.md) | [progress](../docs/skills/onchain_operations/progress.md) | [personal](../docs/skills/onchain_operations/personal.md)
|
|
138
|
-
|
|
139
|
-
**Tools**: [query_toolkit](../docs/skills/schema-query_toolkit.md) | [guard2file](../docs/skills/schema-guard2file.md) | [machineNode2file](../docs/skills/schema-machineNode2file.md) | [all_tools](../wowok-tools/SKILL.md)
|