Skip to main content
Execute qualquer Skill no Manus
com um clique
Repositório GitHub

uipath-for-coding-agents

uipath-for-coding-agents contém 10 skills coletadas de mlbrilliance, com cobertura ocupacional por repositório e páginas de detalhe dentro do site.

skills coletadas
10
Stars
0
atualizado
2026-05-10
Forks
0
Cobertura ocupacional
2 categorias ocupacionais · 100% classificado
explorador de repositórios

Skills neste repositório

aurora-auth
Desenvolvedores de software

Mint and refresh UiPath Automation Cloud OAuth tokens via the External Application client-credentials grant. Reads UIPATH_CLIENT_ID and UIPATH_CLIENT_SECRET from .env, requests the scope list from policy.yaml::uipath_scopes, writes the live access token to UIPATH_ACCESS_TOKEN so the uipath CLI can use it without re-auth, and refreshes proactively before the 1-hour expiry. Use this skill at the start of every Conductor run, before any uipath CLI or uipath-python SDK call, and whenever Sentry emits a `kind: auth_failed` event.

2026-05-10
aurora-fingerprint
Desenvolvedores de software

Cluster failure events by structural fingerprint and append to memory. Used by Diagnostician and Surgeon. A fingerprint is `<top-level-kind>/<refinement>` plus locality (workflow file or agent name). Clustering uses kNN over a structured-feature embedding stored in SQLite. Output is a cluster ID and confidence score; downstream agents use these to decide auto-fix vs HITL.

2026-05-10
aurora-policy
Desenvolvedores de software

Validate `policy.yaml` against `policy.schema.json`, expand env-var references, and run a policy dry-run that simulates how Conductor would behave on the current backlog without dispatching anything. Used at boot, before every Conductor schedule, and on-demand via `aurora policy validate` / `aurora policy dry-run`. Hard fails if the policy is invalid; soft warnings for sub-optimal configurations (low test coverage floor, missing emergency_patch gate, etc.).

2026-05-10
aurora-recall
Arquitetos de banco de dados

Read scoped slices of AURORA's three-tier memory (project, org, skill). Used by every agent at the start of a task to load only the context relevant to its work — never the whole memory blob. Backed by SQLite for fingerprints and plain Markdown for narrative memory; access is gated by scope tags so a Build agent can't accidentally pull Operate-fleet failure traces, etc. Reading is the only public interface; writing is via `aurora-fingerprint` (clusters) or direct file I/O within an agent's own scope.

2026-05-10
aurora-compost
Desenvolvedores de software

Nightly self-improvement loop. Reads the day's `learnings/<date>.jsonl`, clusters them by skill/agent, identifies recurring patterns (≥ 3 occurrences across ≥ 2 projects), and opens a GitHub PR against `skills/` (or `agents/`) with a proposed update — e.g., a new fingerprint refinement, an updated SKILL.md guidance, a new helper script. The PR is HITL-gated via `aurora-promote` (kind: skill_compost_pr) and never auto-merged. The mechanism that makes the swarm get smarter with use.

2026-05-09
aurora-deprecate
Desenvolvedores de software

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.

2026-05-09
aurora-discover
Desenvolvedores de software

Extract structured friction signals from raw text sources (Slack messages, Jira issues, email digests, calendar invite notes, screen-recording transcripts). Used by `scout` to convert noisy human chatter into machine-actionable candidate signals. Returns one JSON object per signal with frequency hints, duration hints, pain indicators, and named systems. Reject one-off, internal-swarm, and metadata-only chatter.

2026-05-09
aurora-pdd
Desenvolvedores de software

Author a Process Definition Document with calibrated ambiguity scoring. Used by `analyst` after a candidate is promoted from Curator's backlog. Templates and the ambiguity rubric live in `templates/`. Output is a structured PDD that Architect, Forgers, and Tester all consume verbatim. Includes a Given/When/Then acceptance-criteria pattern that maps 1:1 to test cases. Sets ambiguity_score in [0,1]; values above 0.4 trigger Interviewer.

2026-05-09
aurora-promote
Desenvolvedores de software

HITL gate via UiPath Action Center. Creates a Form Task in the configured catalog (`aurora_supply_chain_approvals`), assigns approvers from a configured list, polls for completion, applies the policy.yaml gate's timeout behavior, and returns the approver's response to the calling agent. Used for prod publishes, emergency patches, deprecations, large fixes, and skill-compost PR reviews. The implementation of every gate in `policy.yaml::gates`.

2026-05-09
aurora-replay
Desenvolvedores de software

Replay a faulted Maestro instance (or standalone job) in a sandbox folder using the same input data, to isolate whether the root cause is in the bot, the environment, or an external dependency. Used by Diagnostician for non-trivial faults (cluster overlap < 0.6 or external dependency suspected). The "Shadow twin" pattern from AURORA's design.

2026-05-09