From aurora
Retire an unused or superseded UiPath process safely. Used by Strategist + Auditor + Concierge in sequence: Strategist proposes, Auditor checks dependencies, Concierge gates via Action Center, then this skill executes the deprecation steps. Stops scheduled triggers, archives the package, transfers any in-flight queue items to a successor (if any), updates org memory's deprecation log, and writes a runbook so the retired process can be restored within 30 days if needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aurora:aurora-deprecateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Retiring a bot is irreversible-feeling but should be reversible-in-practice. AURORA's deprecation flow is conservative: stop, don't delete; archive, don't destroy; document, don't assume.
Retiring a bot is irreversible-feeling but should be reversible-in-practice. AURORA's deprecation flow is conservative: stop, don't delete; archive, don't destroy; document, don't assume.
kind: deprecation) is approvedsdk.jobs.list(state="Running", process=...) is non-empty. Wait or escalate.New or InProgress for queues this process owns. If yes, document and either drain or transfer.uipath:taskBinding.If any pre-flight fails, abort and write .aurora/deprecation/<process>-blocked-<ts>.md describing the blocker.
sdk.processes.update(state="Disabled") or similar)..aurora/archive/<process>/<ts>/.<UIPATH_FOLDER>-Archive (created on first deprecation; reusable). Keeps the package available for restore but out of normal scope..aurora/org/deprecation-log.md:
## <ProcessName> — deprecated 2026-05-09
- Reason: 0 successful runs in 90 days, last modified 2024-11
- Successor: <if any>
- Approver: [email protected] (Action Center task abc-123)
- Archive location: ${UIPATH_FOLDER}-Archive/<ProcessName>@<version>
- Restore window: 30 days (until 2026-06-08)
- Restore command: `aurora deprecate restore --process <name> --version <v>`
.aurora/archive/<process>/<ts>/restore.md — concrete commands to bring the bot back, plus what would need to change (re-enable triggers, re-attach to its old folder, etc.).aurora deprecate restore --process <ProcessName> --version <v>
This re-publishes the archived package back into ${UIPATH_FOLDER}, re-enables disabled triggers (with explicit confirmation per trigger), and updates org memory.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub mlbrilliance/uipath-for-coding-agents --plugin aurora