Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

# Maestro BPMN skill
/skills/uipath-maestro-bpmn/ @bai-uipath @rockymadden @gozhang2 @tmatup @akshaylive @jiyangzh @nikhil-maryala @baishalighosh
/tests/tasks/uipath-maestro-bpmn/ @bai-uipath @rockymadden @gozhang2 @tmatup @akshaylive @jiyangzh @nikhil-maryala @baishalighosh

# HITL skill
/skills/uipath-human-in-the-loop/ @dushyant-uipath
Expand Down
12 changes: 11 additions & 1 deletion skills/uipath-maestro-bpmn/.maintenance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,16 @@ bash .maintenance/check-plugin-pairs.sh

Returns `plugins_checked=N missing_files=M`. Exits non-zero if any plugin folder is missing a required file. Catches half-deleted plugins or new plugin folders that haven't been completed.

## Verifying BPMN validation fixtures

Run the validation-fixtures checker to verify the public-safe synthetic BPMN corpus and generated package metadata:

```bash
bash .maintenance/check-validation-fixtures.sh
```

Returns `validation_fixture_projects=N bpmn_files=N errors=0` on success. The checker validates standard BPMN parseability, UiPath moddle/extension elements, resource binding references, Integration Service enrichment fields, generated `bindings_v2.json`, `entry-points.json`, `operate.json`, and `package-descriptor.json`, plus public-safety guardrails for fixture content.

## Verifying `uip` command references

Run the uip-command checker to verify every `uip ...` invocation resolves to a real command in the installed CLI:
Expand Down Expand Up @@ -202,7 +212,7 @@ For table rows, place the marker **inside a cell** so it doesn't break table str

## Running the full suite

Run all eight checkers in one invocation:
Run all nine checkers in one invocation:

```bash
bash .maintenance/check-all.sh
Expand Down
1 change: 1 addition & 0 deletions skills/uipath-maestro-bpmn/.maintenance/check-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ CHECKERS=(
"check-template.sh"
"check-orphans.sh"
"check-plugin-pairs.sh"
"check-validation-fixtures.sh"
"check-uip-commands.sh"
)

Expand Down
Loading
Loading