skills/yeet/SKILL.md
Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).
npx skillsauth add lgariv-dn/frontend-skills yeetInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
gh. Check gh --version. If missing, ask the user to install gh and stop.gh session. Run gh auth status. If not authenticated, ask the user to run gh auth login (and re-run gh auth status) before continuing.{github username without '-dn' suffix}/ar-{jira ticket number}/{description} when starting from default branch (v26.1/v26.2 etc. usually based on v{year}.{quarter}).AR-{jira ticket number}: {description} summarizing the full diff.[type]: Subject line (capitalize first word)
- Bullet point without ending period
- Another bullet explaining a specific change
Use square brackets: [feat], [fix], [refactor], [chore], [test]
Simple changes (single focus, straightforward logic): → Use a slightly longer, descriptive subject. No body needed.
[fix]: Skip tasks fetch for standalone task instances in expanded row
[chore]: Code quality improvements & rule compliance (memo, casts, etc.)
Complex changes (significant logic, multiple decisions, refactoring): → Use terse subject + bullet body. Complexity is about significance of change, NOT file count.
[refactor]: Address PR review comments from Amram
- Replace IIFE pattern with inline computed values for filteredChildWorkflowLogs
- Extract clearSelections() helper to eliminate 5 duplicate occurrences
- Extract buildTaskInstanceViewerData utility to separate file, reducing ~80 lines
- Remove duplicate imports in workflow-instance-api-context.tsx
Only add Co-authored-by: Cursor <[email protected]> when the AI wrote most of the code. If user drove the implementation and AI only assisted minimally, omit it.
v{current year}.{current quarter}), create a branch: git checkout -b "{github username without '-dn' suffix}/ar-{jira ticket number}/{description}"git status -sb then git add -A.git commit -m "$(cat <<'EOF'
[type]: Subject line
- First bullet point
- Second bullet point
EOF
)"
git push -u origin $(git branch --show-current)GH_PROMPT_DISABLED=1 GIT_TERMINAL_PROMPT=0 gh pr create --draft --fill --head $(git branch --show-current)development
Records scripted webreel demos of a PR's changes using the current branch's PR description, linked Jira ticket, reproduction artifacts, and newly-added Playwright E2E tests as the source of truth. Use when the user asks to "create a demo for this PR", "record a webreel for AR-XXXXX", "demo this fix/feature", "generate a demo video", "make a video of the E2E flow", "demo this epic", or "record a visual for this change". Handles single-concern PRs, large multi-concern PRs, and epic-level demos with one or many videos. Always plans scope, flow, data source, and format with the user via AskUserQuestion before recording — never records unprompted.
development
Support local workflow platform development in the DAP workspace across frontend, backend, and infra teams. Provides access to Kubernetes (Kind), Tilt service management, database queries, and troubleshooting. Use when building backend/API features, adjusting infra configurations, checking logs, running tests, or debugging issues against locally deployed workflow engine components.
development
React performance optimization guidelines from Vercel Engineering. This skill should be used proactively when writing, reviewing, or refactoring React code to ensure optimal performance patterns. Triggers on tasks involving React components, bundle optimization, or performance improvements.
development
Debug CI E2E failures from pull requests by inspecting GitHub checks, downloading Playwright reports, and mapping failures to local Nx commands. Use when debugging failed E2E tests in PR workflows.