@mkterswingman/5mghost-wonder 0.0.17 → 0.0.18
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.
|
@@ -159,6 +159,8 @@ export async function runBrowserNoExportRead(options) {
|
|
|
159
159
|
evidence.push("opendoc-response");
|
|
160
160
|
if (extracted?.text)
|
|
161
161
|
evidence.push("initial-attributed-text");
|
|
162
|
+
if ((extracted?.tables.length ?? 0) > 0)
|
|
163
|
+
evidence.push("table-control-characters");
|
|
162
164
|
if (extracted?.structureHints)
|
|
163
165
|
evidence.push("structure-hints");
|
|
164
166
|
const images = options.saveDir && extracted?.imageUrls
|
|
@@ -182,6 +184,7 @@ export async function runBrowserNoExportRead(options) {
|
|
|
182
184
|
textLength: extracted?.text.length,
|
|
183
185
|
imageUrls: extracted?.imageUrls,
|
|
184
186
|
images,
|
|
187
|
+
tables: extracted?.tables,
|
|
185
188
|
structureHints: extracted?.structureHints,
|
|
186
189
|
extraction: extracted?.text ? "opendoc-initial-attributed-text" : "none",
|
|
187
190
|
evidence,
|
|
@@ -314,6 +317,7 @@ export function extractTextFromOpendoc(body) {
|
|
|
314
317
|
if (!text)
|
|
315
318
|
return null;
|
|
316
319
|
const imageUrls = extractImageUrls(decodedText);
|
|
320
|
+
const tables = extractTablesFromDecodedText(decodedText);
|
|
317
321
|
const structureHints = analyzeOpendocStructure({
|
|
318
322
|
opendocBody: body,
|
|
319
323
|
htmlData: typeof payload.htmlData === "string" ? payload.htmlData : "",
|
|
@@ -325,6 +329,7 @@ export function extractTextFromOpendoc(body) {
|
|
|
325
329
|
padType: payload.clientVars?.padType ?? payload.padType,
|
|
326
330
|
text,
|
|
327
331
|
imageUrls,
|
|
332
|
+
tables,
|
|
328
333
|
structureHints,
|
|
329
334
|
warnings: [
|
|
330
335
|
"No-export text is decoded from opendoc initialAttributedText; rich styles are not reconstructed yet.",
|
|
@@ -334,6 +339,31 @@ export function extractTextFromOpendoc(body) {
|
|
|
334
339
|
],
|
|
335
340
|
};
|
|
336
341
|
}
|
|
342
|
+
function extractTablesFromDecodedText(decodedText) {
|
|
343
|
+
const tables = [];
|
|
344
|
+
const tablePattern = /\x1a([\s\S]*?)\x1b/g;
|
|
345
|
+
for (const match of decodedText.matchAll(tablePattern)) {
|
|
346
|
+
const body = match[1] ?? "";
|
|
347
|
+
const rows = body
|
|
348
|
+
.split("\x06")
|
|
349
|
+
.map((row) => row
|
|
350
|
+
.split("\x07")
|
|
351
|
+
.map((cell) => normalizeTableCellText(cell))
|
|
352
|
+
.filter((text) => text.length > 0)
|
|
353
|
+
.map((text) => ({ text })))
|
|
354
|
+
.filter((row) => row.length > 0);
|
|
355
|
+
if (rows.length > 0)
|
|
356
|
+
tables.push({ rows });
|
|
357
|
+
}
|
|
358
|
+
return tables;
|
|
359
|
+
}
|
|
360
|
+
function normalizeTableCellText(value) {
|
|
361
|
+
return value
|
|
362
|
+
.replace(/\r/g, "")
|
|
363
|
+
.replace(/[\u0000-\u0006\u0008-\u001f\u007f-\u009f]+/g, "")
|
|
364
|
+
.replace(/[^\S\r\n]+/g, " ")
|
|
365
|
+
.trim();
|
|
366
|
+
}
|
|
337
367
|
function analyzeOpendocStructure(input) {
|
|
338
368
|
return {
|
|
339
369
|
opendoc: summarizeStructureSignals(input.opendocBody),
|
package/package.json
CHANGED
|
@@ -7,9 +7,9 @@ description: Use this skill when the user wants to install or set up wonder, say
|
|
|
7
7
|
|
|
8
8
|
## Skill version
|
|
9
9
|
|
|
10
|
-
This skill matches **wonder 0.0.
|
|
10
|
+
This skill matches **wonder 0.0.18**.
|
|
11
11
|
|
|
12
|
-
Once the CLI is installed in Step 1, run `wonder --version`. If the output does not equal `0.0.
|
|
12
|
+
Once the CLI is installed in Step 1, run `wonder --version`. If the output does not equal `0.0.18`, the CLI on disk has drifted from the skill text loaded in this session. Ask the user to run `/update-5mghost-wonder`, then **start a fresh AI session** (`/exit` and re-enter, or open a new chat) — skill text already loaded into a running session does not refresh after `wonder update`, even though the file on disk has been replaced.
|
|
13
13
|
|
|
14
14
|
After a successful first install, also remind the user to start a fresh AI session before invoking `/use-5mghost-wonder` for the first time. The skill files were just written to disk; the current session never loaded them.
|
|
15
15
|
|
|
@@ -10,10 +10,10 @@ the referenced workflow files needed for the current task.
|
|
|
10
10
|
|
|
11
11
|
## Version Gate
|
|
12
12
|
|
|
13
|
-
This skill matches **wonder 0.0.
|
|
13
|
+
This skill matches **wonder 0.0.18**.
|
|
14
14
|
|
|
15
15
|
On first use in a session, follow `references/session-init.md`. If the installed
|
|
16
|
-
CLI version differs from `0.0.
|
|
16
|
+
CLI version differs from `0.0.18`, stop and ask the user to run
|
|
17
17
|
`/update-5mghost-wonder`, then start a fresh AI session.
|
|
18
18
|
|
|
19
19
|
## Hard Rules
|
|
@@ -37,10 +37,11 @@ wonder browser read <url> --save /tmp/wonder-browser-read
|
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
This currently attempts text extraction from the browser `opendoc`
|
|
40
|
-
`initialAttributedText`,
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
unless it also proves
|
|
40
|
+
`initialAttributedText`, decodes simple table cells from WeCom table control
|
|
41
|
+
characters, downloads detected image resources when `--save` is present, and
|
|
42
|
+
returns safe `structureHints` for `htmlData`, `initialAttributedText`, and the
|
|
43
|
+
full `opendoc` body. Treat it as `partial` unless it also proves merge ranges
|
|
44
|
+
and image anchors.
|
|
44
45
|
|
|
45
46
|
3. If the read is insufficient, run the evidence probe:
|
|
46
47
|
|
|
@@ -61,6 +62,7 @@ Use `--headed` only when login/debug visibility is needed.
|
|
|
61
62
|
- WebSocket messages if they expose structured document operations
|
|
62
63
|
- screenshots only as a fallback or visual cross-check
|
|
63
64
|
6. For tables, specifically look for:
|
|
65
|
+
- `tables[].rows[].text` for simple table cell content
|
|
64
66
|
- `structureHints.*.hasTableSignals` and `hasMergeSignals`
|
|
65
67
|
- `structureHints.htmlData.hasTableMarkup`
|
|
66
68
|
- cell coordinates
|
|
@@ -86,6 +88,13 @@ Return a concise result:
|
|
|
86
88
|
"mergeRangesAvailable": true,
|
|
87
89
|
"imagesAvailable": true,
|
|
88
90
|
"imageAnchorsAvailable": true,
|
|
91
|
+
"tables": [
|
|
92
|
+
{
|
|
93
|
+
"rows": [
|
|
94
|
+
[{ "text": "A1" }, { "text": "B1" }]
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
],
|
|
89
98
|
"structureHints": {
|
|
90
99
|
"htmlData": {
|
|
91
100
|
"hasTableMarkup": true,
|