@uipath/skills 1.198.0-preview.21 → 1.198.0
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": "@uipath/skills",
|
|
3
|
-
"version": "1.198.0
|
|
3
|
+
"version": "1.198.0",
|
|
4
4
|
"description": "UiPath agent skills for Claude Code, Codex, Cursor, Copilot, Gemini and OpenCode — RPA, UI automation, UI testing, coded agents/apps/workflows, and troubleshooting. Distributed as the UiPath Claude Code plugin.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "UiPath"
|
|
@@ -292,26 +292,32 @@ The user can adjust type, priority, or title (the title carries the area / optio
|
|
|
292
292
|
|
|
293
293
|
### Step 4 -- Send feedback
|
|
294
294
|
|
|
295
|
+
**Never inline the multi-line description as a `--description "…"` argument.** On Windows PowerShell the native-command argument serializer mangles multi-line values (lines starting with `-` reach the CLI as options → `ValidationError`). Always pass the body through `--description-file`.
|
|
296
|
+
|
|
297
|
+
1. Write the sanitized description body to a temp file using the **Write tool** (not a shell heredoc — heredocs are bash-only and fail on PowerShell). Use an absolute path in the OS temp dir, e.g. `<temp>/uip-feedback/description.md`.
|
|
298
|
+
2. Invoke the CLI with `--description-file` pointing at that file:
|
|
299
|
+
|
|
295
300
|
```bash
|
|
296
301
|
uip feedback send \
|
|
297
302
|
--type "<bug|improvement>" \
|
|
298
303
|
--title "<TITLE>" \
|
|
299
|
-
--description "
|
|
300
|
-
<DESCRIPTION_BODY>
|
|
301
|
-
FEEDBACK_EOF
|
|
302
|
-
)" \
|
|
304
|
+
--description-file "<TEMP>/uip-feedback/description.md" \
|
|
303
305
|
--priority "<critical|normal|minor>" \
|
|
304
306
|
--attachment <FILE1> <FILE2> \
|
|
305
307
|
--output json
|
|
306
308
|
```
|
|
307
309
|
|
|
308
|
-
|
|
310
|
+
`--description-file` reads the body from disk, so it is immune to shell quoting and works identically on PowerShell, cmd, and bash. (If the CLI predates this flag, pipe the body via stdin instead; do not inline it.)
|
|
311
|
+
|
|
312
|
+
The title (`--title`) is short and single-line, so passing it inline is safe. Its leading `[Tag]` segments (the area, plus an optional `[CLI]`/`[Skill]` marker) become Jira labels automatically -- no extra flags.
|
|
309
313
|
|
|
310
314
|
If an email is available from `uip login status`, include `--email "<EMAIL>"`. The CLI places it in the issue's Environment field, never in the description body.
|
|
311
315
|
|
|
312
316
|
Parse the JSON output. On success, show the user a confirmation with any reference ID returned.
|
|
313
317
|
|
|
314
|
-
**
|
|
318
|
+
**Diagnose failures correctly.** A `ValidationError` that names an option you did not pass (e.g. it complains about `-` or a bullet line) is a **shell-quoting** failure, not a CLI bug — you inlined a multi-line value. Fix it by using `--description-file`; do not report the CLI as broken and do not retry the same inline invocation.
|
|
319
|
+
|
|
320
|
+
**Fallback:** Only after `--description-file` genuinely fails (network, auth, real CLI error) save the full feedback to `./feedback-report.md` using the description body and tell the user: _"Could not send automatically. The report is saved to `feedback-report.md`."_
|
|
315
321
|
|
|
316
322
|
Clean up temp attachments:
|
|
317
323
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: uipath-ixp
|
|
3
|
-
description: "UiPath IXP (Document Understanding) via `uip ixp` — create projects (with autopilot taxonomy suggestion, an imported taxonomy file, or empty), upload/download/delete documents, author the taxonomy (field groups, fields, data types, per-field and overall extraction instructions), configure the extraction model and pre-processing, review/confirm/unconfirm predictions, mark fields missing, pull metrics and model versions, publish/tag/roll back model versions.
|
|
3
|
+
description: "UiPath IXP (Document Understanding) via `uip ixp` — create projects (with autopilot taxonomy suggestion, an imported taxonomy file, or empty), upload/download/delete documents, author the taxonomy (field groups, fields, data types, per-field and overall extraction instructions), configure the extraction model and pre-processing, review/confirm/unconfirm predictions, mark fields missing, pull metrics and model versions, publish/tag/roll back model versions. DO NOT TRIGGER during .flow / Maestro Flow work — discovering or listing IxP / document-extraction models, extractors, or nodes available to Maestro Flow, and adding or wiring an IxP node, belong to uipath-maestro-flow even when they sound like IXP model management."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# UiPath IXP Document Extraction Assistant
|
|
@@ -70,7 +70,7 @@ If the user provides a taxonomy file, use `--skip-taxonomy` and `import-taxonomy
|
|
|
70
70
|
| "Import this taxonomy" / provides a taxonomy file | [Project Setup Guide](references/project-setup-guide.md) — Option B (`--skip-taxonomy` + `import-taxonomy`) |
|
|
71
71
|
| "Label documents" / "Review predictions" | [Label Documents Guide](references/label-documents-guide.md) |
|
|
72
72
|
| "Improve scores" / "Fix prompts" / "Improve F1" | [Improve Prompts Guide](references/improve-prompts-guide.md) |
|
|
73
|
-
| "Publish the model" / "Tag as live" | `uip ixp projects publish <project-name> --output json` — publishes the latest version, untagged. Add `--tag <live\|staging>` to also tag it. See [cli-reference](references/cli-reference.md) for `--model-version`/`--description`. |
|
|
73
|
+
| "Publish the model" / "Tag as live" | `uip ixp projects publish <project-name> --output json` — publishes the latest version, untagged. Add `--tag <live\|staging>` to also tag it. See [cli-reference](references/cli-reference.md) for `--model-version`/`--description`. **Publishing does not deploy the model to an Orchestrator folder** — folder/environment binding is a product-side step with no `uip ixp` (or other CLI) equivalent, so publishing is the last step this skill performs. Don't chain a folder deployment onto it, deploy locally, or improvise another path. Only when the user explicitly asks to deploy to a folder/environment do you hand that back to them (it's done in-product) — see the "Deploy this model" row under [Unsupported Capabilities](#unsupported-capabilities). Deploying to a folder is what makes the model available to downstream consumers such as Maestro Flow. |
|
|
74
74
|
| "Roll back to a previous version" / "Restore version N" | `uip ixp projects publish <project-name> --model-version <N> --output json` — re-publishes an earlier version. Get available versions from `uip ixp projects list-models <project-name> --output json`. |
|
|
75
75
|
| "Unpublish a model" / "Take a model out of production" | `uip ixp projects unpublish <project-name> --model-version <N> --output json` — removes a version from the published set (it stays trained/listable). `--model-version` is required; find published versions via `list-models` (`Pinned: true`). To change which version is live, `publish` a different one instead. |
|
|
76
76
|
| "Remove the live/staging tag" / "Untag a version" | `uip ixp projects untag <project-name> --tag <live\|staging> --output json` — removes the named tag (the version it pointed at stays published). **`untag` is the only way to remove a tag** — do NOT `unpublish` or re-`publish` to clear it (`unpublish` removes publication, not the tag; `publish` without `--tag` leaves the existing tag untouched). To switch `live`→`staging`, `publish --tag staging` instead. |
|
|
@@ -129,7 +129,7 @@ Structural edits to a field within an existing field group. For instruction-only
|
|
|
129
129
|
|
|
130
130
|
## Deployments
|
|
131
131
|
|
|
132
|
-
For working with runtime (deployed) IXP models — separate from the training workflow above.
|
|
132
|
+
For working with runtime (deployed) IXP models — separate from the training workflow above. The `uip ixp` publish and tag commands operate within the project; they do **not** deploy a model to an Orchestrator folder. Making a model available to downstream consumers such as Maestro Flow requires deploying it to a folder — a separate, product-side step done by the user in-product.
|
|
133
133
|
|
|
134
134
|
| Command | Description |
|
|
135
135
|
|---------|-------------|
|
package/version-manifest.json
CHANGED