소스 정보
- 저장소
- SAP/fundamental-ngx
- 최근 소스 활동
- 2026년 7월 16일 15:51
- 감지된 SKILL.md 언어
- 영어
- 스타
- 294
- 포크
- 147
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/SAP/fundamental-ngx --skill review-pr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Add, rename, or remove i18n translation keys in fundamental-ngx (updates FdLanguage interface, .properties files, and generated types)
Audit existing code against project conventions and Angular 22+ best practices
Migrate a component or directive to Angular 22+ signal-based patterns
| name | review-pr |
| description | Review a pull request against project conventions and Angular 22+ best practices |
| argument-hint | ["PR-number"] |
| context | fork |
| agent | general-purpose |
| allowed-tools | Read, Grep, Glob, Bash(gh *), Bash(nx *) |
If $0 is empty or not a number, ask the user for a PR number before proceeding.
Fetch the PR details:
gh pr diff $0gh pr view $0gh pr diff $0 --name-onlyFor each changed file, check the applicable sections below. Report findings grouped by severity: Blocking (must fix), Suggestion (should fix), Nit (optional).
input() / output() / model() / linkedSignal(). Existing @Input() / @Output() decorators being modified should prefer migration to signal functions, but it's not blocking.host: {} in decorator — no @HostBinding() / @HostListener()@if / @for / @switch — no *ngIf / *ngFor / *ngSwitchstandalone: true in @Component (default since Angular 19)allowSignalWrites option in effect() (the option no longer exists)DestroyRef + takeUntilDestroyed() — no custom DestroyedServicecomputed() + host: { '[class]': } — no CssClassBuilder / @applyCssClasssignal() only used when a reactive consumer exists (template, computed, effect, host binding)markForCheck() after signal updatesBehaviorSubject → signal() where there are no async consumerseffect() for signal reactions; RxJS only for async operations (HTTP, WebSocket, timers)effect() used for state derivation — use computed() or linkedSignal insteadlinkedSignal used where mutable derived state is needed (not effect() + signal.set())signal.set() with same reference — always new referenceseffect() / computed()InjectionToken for contextual defaults (not @ContentChild assigning to signal inputs){ optional: true }FD_ prefix for component identity tokenscontentChild() / contentChildren() query by token, not concrete classfixture.componentRef.setInput() used for signal inputs in testsimports arrays — no deprecated *Module classesTestComponent)@fundamental-styles/common-css utility classes (sap-flex, sap-margin-*, sap-padding-*) — no inline styles*Module classes! after scope: fix(core)!: descriptionBREAKING CHANGE: footer with migration instructions@deprecated before removal (not removed in same PR)<type>(<scope>): <subject>feat | fix | docs | style | refactor | test | build | ci | chorecore | platform | cdk | btp | cx | i18n | datetime-adapter | ui5 | docs | e2e | ciWIP prefix (unless intentionally draft)Summarize findings as:
## Review Summary
**PR:** #$0
**Overall:** APPROVE / REQUEST CHANGES / COMMENT
### Blocking
- [file:line] Issue description
### Suggestions
- [file:line] Issue description
### Nits
- [file:line] Issue description
### Missing
- Tests: list any untested new behavior
- Docs: list any undocumented API changes
- Breaking changes: list any unannounced breaking changes