Closed
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…api handoff - sdk-service-dev Step 0 now reads PAT_TOKEN from .env.skills (blocking gate) - onboard-api delegates token handling to sdk-service-dev - Add .env.skills to gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Contributor
Author
|
Closing in favour of #302 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
Two Claude Code skills that automate onboarding new API endpoints into the UiPath TypeScript SDK. Together they handle the full lifecycle: input collection → live API inspection → code generation → testing → E2E validation → Cloudflare Workers whitelisting → commit → PR.
Skills Overview
onboard-api— Orchestrator SkillThin orchestrator that collects input and manages the git workflow. Does not implement anything — delegates all coding to
sdk-service-dev.Use for any SDK service work that involves adding endpoints — whether it's a brand new service or adding a method to an existing one.
Accepts two input paths:
PLT-99452)What it does:
feat/sdk-<ticket-key>orfeat/<service>-<method>)sdk-service-devfor all implementation workapps-dev-toolsrepo) — raises a separate PR thereFiles:
.claude/skills/onboard-api/SKILL.md— main skill.claude/skills/onboard-api/references/cloudflare-whitelist.md— Cloudflare Workers whitelisting proceduresdk-service-dev— Implementation EngineThe heavy lifter. Codifies every repo convention into executable decision trees and checklists. Called by
onboard-apifor implementation — not invoked directly for adding endpoints (useonboard-apiinstead, which handles the full git workflow around it).Use
sdk-service-devdirectly only for non-onboarding work: bug fixes, refactoring, reviewing code, updating tests, or general repo modifications where there's no Swagger spec or endpoint to onboard.What it covers:
.env.skills, curls live endpoints before writing any code. Blocks if token missing or API errors.{Entity}GetResponse,Raw{Entity}GetResponse,{Entity}GetAllOptions— strict patternsReference docs in
sdk-service-dev/references/:onboarding.mdtransforms.mdpagination.mdexcludeFromPrefixrules, conditional return typestesting.mde2e-testing.mdjsdoc.mdSetup
Prerequisites
.env.skillsfile in the repo root (gitignored):The PAT token is used for:
To get a PAT: UiPath Automation Cloud → Admin → Access Tokens → Generate Personal Access Token
ghCLI authenticated (for raising PRs in bothuipath-typescriptandapps-dev-tools)apps-dev-toolsrepo as an additional working directory in Claude Code (for Cloudflare Workers whitelisting step — optional, non-blocking if unavailable)Usage
Onboard from a Jira ticket
Fetches the ticket, extracts Swagger URL + endpoints, creates branch, runs full implementation, raises PR.
Onboard from direct input
Add a method to an existing service
Same workflow —
onboard-apihandles branch, implementation (viasdk-service-dev), and PR.Non-onboarding work (bug fixes, refactoring, reviews)
Use
sdk-service-devdirectly only when there's no endpoint to onboard.Example Output
PR #290 (
feat(orchestrator): add Jobs getAll service) was generated end-to-end from Jira ticket PLT-99452 using these skills. It produced:FolderScopedServiceimplementation with OData pagination and field mappingpackage.jsonexports,rollup.config.js)oauth-scopes.md,pagination.mdtable)Files Changed
.claude/skills/onboard-api/SKILL.md.claude/skills/onboard-api/references/cloudflare-whitelist.md.claude/skills/sdk-service-dev/SKILL.md.claude/skills/sdk-service-dev/references/onboarding.md.claude/skills/sdk-service-dev/references/transforms.md.claude/skills/sdk-service-dev/references/pagination.md.claude/skills/sdk-service-dev/references/testing.md.claude/skills/sdk-service-dev/references/e2e-testing.md.claude/skills/sdk-service-dev/references/jsdoc.mdCLAUDE.md.gitignore.env.skills,.uipath/,.worktrees/🤖 Generated with Claude Code