Install
openclaw skills install @intsig-textin/xparse-parserParse, read, search, navigate, summarize, and extract tables or structured evidence from PDFs, images, Office files, HTML, OFD, and other supported local documents or document URLs through xparse-cli. Use this Skill for single-document conversion, targeted section/page/fact extraction, and durable m
openclaw skills install @intsig-textin/xparse-parserUse the installed xparse-cli as the only parsing, authentication, quota, and
document-navigation execution kernel. Do not reproduce its HTTP, OAuth, quota,
PDF splitting, or result-merging logic in the Skill.
Inside the TextIn xParse WorkBuddy Connector, prefix every invocation with:
xparse-cli --profile workbuddy <command> ...
The Connector declares a Node.js runtime and installs the pinned CLI with the
standard global npm prefix, so WorkBuddy supplies xparse-cli on PATH. On
Windows Connector lifecycle commands use xparse-cli.cmd; document-task shell
commands may use the command form supported by the active shell. Outside
WorkBuddy, use xparse-cli <command> ....
For every new WorkBuddy user request, create one private 0600 JSON file before
the first xParse command:
{
"schema_version": "xparse_task_context.v1",
"user_intent": "the user's original request, in its original language",
"tool_call_reason": "the document information needed to complete this task"
}
--task-context <FILE> only on the first xParse invocation for that request.echo, or a heredoc.Run every operational xparse-cli invocation as a standalone shell command.
Do not pipe it through head, tail, grep, or another command, and do not
append cleanup, printing, file reads, or other shell commands that can replace
its exit status. Perform task-context cleanup in a separate shell call.
For every failed command, parse the final stderr object whose schema_version
is xparse_error.v1. Treat that object as failure even if a shell wrapper
reports exit code 0. Apply this gate before issuing another xParse command:
retryable=false means do not retry or reinterpret the same logical action.
Follow only the declared next_action. For CONTACT_SUPPORT, report the
error and preserved identifiers, then issue no more xParse commands for the
current request.retryable=true permits at most one Agent-layer retry of the same logical
action. Keep the same Task, Run, Resource, and operation_id where present.task read and task export does not create a
new logical action or reset its retry budget.next_action
explicitly calls for them. Goal completion pressure is not a recovery signal;
a correct failure report completes the Agent action.After a non-retryable failure, another attempt is allowed only after the user confirms an external remediation or explicitly requests a new action. Reuse the preserved Task and Run identifiers; never recreate completed server work.
Use --api auto by default. The CLI queries the service quota before parsing and
uses the current server response as the authority instead of relying on a Skill
snapshot.
| Mode | CLI behavior | Use it when |
|---|---|---|
--api auto | Uses the daily free API allowance first. When quota reports an AppKey-authenticated free package with sufficient free_remain_count, it can use that package through the existing authenticated route. | Default for supported PDF and image work. |
--api free | Forces the free endpoint and does not use the authenticated free-package route. | The user explicitly requires the free endpoint only. |
--api paid | Forces the paid endpoint and follows the service's existing package/balance billing behavior. | The user explicitly approves paid use, or approves it after learning that the format requires the paid API. |
Authentication is identity, not permission to spend. Never choose --api paid
only because OAuth or AppKey credentials exist.
Run xparse-cli quota --output json when the user asks about quota, when a routing failure
needs explanation, or before proposing a paid retry. Read all returned facts:
free_remain_count when present (routing uses only free_remain_count);Do not cache or calculate an allowance in the Skill. parse --api auto performs
its own quota preflight, and the parse response remains authoritative if quota
changes between inspection and execution. The Skill must not promise stronger
billing guarantees than the existing server provides.
WorkBuddy Device OAuth and AppKey are different identities. If quota returns
authenticated=false or omits free_package, do not infer package access from
an OAuth login indicator. Treat only fields in the current quota response as
available.
The free endpoint supports PDF and images. Office, HTML, OFD, and other formats
may require --api paid; explain this and obtain the user's approval before
switching modes. If all reported free sources are insufficient, stop and explain
the current quota rather than silently retrying as paid.
Choose by input shape and durability, not by whether authentication already exists:
Workflow selection and billing selection are independent decisions. Task
versus parse is chosen from the request's input shape and durability needs;
auto, free, and paid choose only the billing route. A quota, eligibility,
authorization, funding, or format outcome must never change an accepted
multi-document Task into individual parse calls. Only an explicit user request
that narrows the original scope to a genuinely new one-document action may be
treated as a new parse operation.
parse for one document or URL when the user needs an immediate result,
conversion, or local outline/search navigation.TASK_FREE_MODE_UNAVAILABLE, stop and explain it. Never replace the Task with
serial parse calls or silently switch to paid execution.For local files, start one server-persisted Task instead of launching multiple
parse commands:
xparse-cli task run --files '<GLOB>' --api auto
Inside WorkBuddy, apply the required prefix:
xparse-cli --profile workbuddy task run --files '<GLOB>' --api auto
--api auto is free-first and fails closed: it does not silently create a paid
Task. Use --api paid only after the user explicitly approves paid service
behavior. Do not parallelize individual parse commands for inputs that belong
to one Task.
task run returns after the server accepts the Run. In WorkBuddy, stderr is an
xparse_event.v1 JSONL stream: run_accepted exposes the accepted Task/Run
identity immediately, and run_status is emitted only when the state changes.
Stdout contains exactly one final submission JSON. Preserve operation_id,
task_id, and run_id. If submission fails or
the process loses its response, reuse the observed operation_id with
--operation-id; never invent a new ID for the same logical submission.
Keep Agent workflows on the default submit-and-return path. Do not add
--wait or a short fixed --timeout automatically. When a user explicitly
requests foreground waiting or wait-and-export, --wait polls the same Run;
its local timeout returns the current accepted identity with
wait_timed_out: true and next_action: POLL_STATUS. It does not cancel or
recreate the Run. Continue with task status for that exact Task and Run.
waiting_paid_authorization and waiting_funds are accepted Task states, not
CLI transport failures. The submission/status JSON and its next_action are the
single authority. They mean the user request is incomplete: stop immediately
and issue no more xParse commands—not quota, status, read, export, debug,
another task run, or parse—until the user confirms the required external
action. Then call task resume once for the exact Task and Run.
Use task status <TASK_ID> --run-id <RUN_ID> for bounded progress checks. Start
at 2 seconds, then back off to 5, 10, 20, and 30 seconds; do not spend more than
about two minutes polling in one Agent turn. Return control with the IDs and
current state when work is still running. Never start a duplicate Task merely
because the Run is still scheduled or running.
Prefer task read when only one result is needed; use task export when the
user needs the complete result set. On partial failure, run task debug before
choosing a recovery action. Use task continue only when that accepted Run's
debug result identifies the existing Resource's raw Parse error code 40423.
Supply per-file passwords by repeating --password; when more than one Resource
is involved, bind each value as <SELECTOR>=<PASSWORD>. This reruns only the
selected failed Resources without reprocessing successful files.
Task identity and state move forward only:
no identifiers -> task run once
operation_id + PASSWORD_INPUT_REQUIRED -> ask for the named passwords, then replay the originating task run or task rerun --mode new-files once with that ID and the returned selectors
operation_id only after an ambiguous submission -> retry task run once with that ID
task_id + run_id -> task status for that exact Run
waiting_paid_authorization -> stop; after user approval, resume that exact Run
waiting_funds -> stop; after confirmed funding, resume that exact Run
completed -> task read or task export for that exact Run
non-retryable result-access failure -> report and stop
PASSWORD_INPUT_REQUIRED permits only one documented correction replay of the
originating command with the same operation_id. For initial submission that
command is task run; for new files under an existing Task it is task rerun --mode new-files, and the error may legitimately include that existing
task_id. The CLI transparently reuses ready uploads; the Agent must not track
File Asset IDs or decide which files to upload. An operation_id without a
Task/Run ID after another ambiguous submission permits one unchanged replay.
Once a new task_id or run_id has been accepted for a logical submission,
never return to task run for it. A task read or task export
failure must not fall back to a new Task, serial parse, cached results, an
alternate selector, or a different Run. Use task debug only for
partial_failed/failed, not to investigate a completed Run whose result
access returned a non-retryable error.
Read task-runtime.md before starting, inspecting, or recovering a durable Task.
Use one parse command:
xparse-cli parse <INPUT> --api auto
For PDFs, pass an output directory so long Markdown is not truncated in terminal output. The CLI creates the directory when it does not exist:
xparse-cli parse report.pdf --api auto --output <DIR>
Read the saved result before requesting more detail. Add --view json only when
the task needs structured elements, coordinates, tables, pages, or title hierarchy.
For a local document, use:
get_doc_info -> parse the complete document -> navigate -> extract
get_doc_info <FILE> and retain its exact doc_id.parse <FILE> --api auto without --page-range. A successful complete
local parse writes the navigation cache automatically.get_outline, search_text, or read_pages to locate relevant content.read_content calls after navigation is complete.There is no separate cache-preparation command. A successful complete local
parse is the only preparation step.
Page-range parses intentionally do not replace the complete-document navigation
cache. URL parses have no stable local doc_id, so use their direct parse output
instead of local navigation commands.
Read navigation.md before performing targeted navigation or extraction.
read_content calls per task and issue independent reads together.search_text for names, dates, amounts, and percentages. Read a full
section only when its surrounding prose or table structure is needed.--parent-id; do not guess IDs.parse commands.retryable=true. Stop immediately on any non-retryable service
failure. Never silently skip a failure.| Goal | Command |
|---|---|
| Parse with automatic free routing | xparse-cli parse <FILE> --api auto |
| Force free endpoint only | xparse-cli parse <FILE> --api free |
| Explicit paid parse | xparse-cli parse <FILE> --api paid --auth-method oauth |
| Save Markdown | xparse-cli parse <FILE> --api auto --output <DIR> |
| Save JSON | xparse-cli parse <FILE> --api auto --view json --output <DIR> |
| Parse selected pages only | xparse-cli parse <FILE> --api auto --page-range 1-5 |
| Encrypted document | xparse-cli parse <FILE> --api auto --password <PWD> |
| Character details | xparse-cli parse <FILE> --api auto --view json --output <DIR> --include-char-details |
| Show current quota | xparse-cli quota --output json |
| Run a durable local-file Task | xparse-cli task run --files '<GLOB>' --api auto |
| Rerun every Resource under a Task | xparse-cli task rerun <TASK_ID> --mode all |
| Add files and create a new Run | xparse-cli task rerun <TASK_ID> --mode new-files --files '<GLOB>' |
| Rerun selected Resources | xparse-cli task rerun <TASK_ID> --mode selected-files --resource-id <RESOURCE_ID> |
| Check an exact Task Run | xparse-cli task status <TASK_ID> --run-id <RUN_ID> |
| Read one Task result | xparse-cli task read <TASK_ID> <FILE_OR_RESOURCE> --run-id <RUN_ID> |
| Export all completed results | xparse-cli task export <TASK_ID> --run-id <RUN_ID> --output <DIR> |
| Inspect per-file failures | xparse-cli task debug <TASK_ID> --run-id <RUN_ID> |
| Continue one existing Resource after Run error 40423 | xparse-cli task continue <TASK_ID> --password <PASSWORD> |
| Continue multiple existing Resources after Run error 40423 | xparse-cli task continue <TASK_ID> --password <SELECTOR>=<PASSWORD> --password <SELECTOR>=<PASSWORD> |
| Resume after paid approval | xparse-cli task resume <TASK_ID> --run-id <RUN_ID> --approve-paid |
| Resume after funding | xparse-cli task resume <TASK_ID> --run-id <RUN_ID> --after-funding |
| Start local navigation | xparse-cli get_doc_info <FILE> |
| Show cached outline | xparse-cli get_outline <DOC_ID> |
| Search cached text | xparse-cli search_text <DOC_ID> <PATTERN> |
--output accepts a directory, not an output filename. The CLI creates a missing
directory and writes <basename>.md or <basename>.json inside it.
workbuddy
profile. If disconnected, ask the user to reconnect the Connector; never ask
for or echo a Secret, Token, or device code.--verbose while handling authentication.Check installation with xparse-cli version. The package requires Node.js 18
or newer and can be installed with:
npm i -g xparse-cli
For users in China, use the npmmirror registry:
npm i -g xparse-cli --registry=https://registry.npmmirror.com
The WorkBuddy Connector installs its pinned CLI version automatically. Do not replace the Connector-managed version from within a document task.
Use this Skill and its references as the command index. When live discovery is
necessary, read complete xparse-cli --help, then the complete help for the exact
command. Do not truncate help output with head, tail, or a fixed sed range.
Stop on unsupported or corrupt files, invalid credentials, exhausted quota, missing paid approval, any non-retryable service failure, or a transient failure after its single allowed Agent-layer retry.