소스 정보
- 저장소
- SAP/fundamental-ngx
- 최근 소스 활동
- 2026년 7월 16일 15:51
- 감지된 SKILL.md 언어
- 영어
- 스타
- 294
- 포크
- 147
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/SAP/fundamental-ngx --skill best-practices명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | best-practices |
| description | Audit existing code against project conventions and Angular 22+ best practices |
| argument-hint | ["component-path-or-folder"] |
| context | fork |
| agent | general-purpose |
| allowed-tools | Read, Grep, Glob, Bash(nx *), Bash(wc *) |
If $ARGUMENTS is empty, ask the user for a component path or folder before proceeding.
Audit the code at $ARGUMENTS against the project's conventions. Unlike /review-pr which checks diffs, this audits existing code as-is.
input() / output() / model() / linkedSignal(). Existing @Input() / @Output() decorators are acceptable.host: {} in decorator — no @HostBinding() / @HostListener()@if / @for / @switch — no *ngIf / *ngFor / *ngSwitchstandalone: true (default since Angular 19)allowSignalWrites option in effect() (the option no longer exists)DestroyRef + takeUntilDestroyed() — no custom DestroyedServicecomputed() + host: { '[class]': } — no CssClassBuilder / @applyCssClassngClass / ngStyle (use direct bindings)signal() only when reactive consumer existsmarkForCheck() after signal updatesBehaviorSubject only for async streams, not local stateeffect() for signal side effects — no Subject<void> for trigger-only patternseffect() used for state derivation — use computed() or linkedSignal insteadlinkedSignal used for mutable derived state (e.g., editable fields that reset on input change)signal.set() with same reference — always create new referenceseffect() / computed() — tracked signals read before conditional logicInjectionToken for contextual defaults — not @ContentChild assigning to signal inputs{ optional: true }FD_ prefix for component identity tokensChangeDetectionStrategy.OnPushfd- selector prefixcomputed() not inlineconsole.log / console.warn (except intentional deprecation warnings)any types (use proper generics or unknown)fixture.componentRef.setInput() for signal inputs*Module classes<h2 fd-title> not <fd-title>)<fd-card> not <div fd-card>)fdLayoutGridCol directive value used for small breakpoint (there is no colSm — the default/small breakpoint is set via the fdLayoutGridCol input itself)[fd-card-title], [fd-card-subtitle] are attribute directives before using them as elements## Best Practices Audit: [component name]
**Overall Score:** X / 8 sections passing
### Section Scores
| Section | Status | Issues |
|--------------------|--------|--------|
| Angular Patterns | PASS | 0 |
| State Management | WARN | 2 |
| DI Patterns | PASS | 0 |
| Component Structure| FAIL | 3 |
| Code Quality | PASS | 0 |
| Testing | WARN | 1 |
| Documentation | FAIL | 2 |
| Selector Usage | PASS | 0 |
### Findings (by severity)
**Blocking**
- [file:line] Issue — convention reference
**Suggestions**
- [file:line] Issue — convention reference
**Nits**
- [file:line] Issue — convention reference
### Migration Items
Items that require `/migrate` to fix:
- [file] 5 @Input decorators → input()
- [file] 3 *ngIf → @if
Add, rename, or remove i18n translation keys in fundamental-ngx (updates FdLanguage interface, .properties files, and generated types)
Migrate a component or directive to Angular 22+ signal-based patterns
Review a pull request against project conventions and Angular 22+ best practices
SOC 직업 분류 기준