reference-compiler-cli
Explains the mental model and architecture of the code under `packages/compiler-cli`. You MUST use this skill any time you plan to work with code in `packages/compiler-cli`
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o reference-compiler-cli.zip https://jpskill.com/download/22423.zip && unzip -o reference-compiler-cli.zip && rm reference-compiler-cli.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22423.zip -OutFile "$d\reference-compiler-cli.zip"; Expand-Archive "$d\reference-compiler-cli.zip" -DestinationPath $d -Force; ri "$d\reference-compiler-cli.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
reference-compiler-cli.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
reference-compiler-cliフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Angular Compiler CLI (ngtsc) Architecture
Overview
The packages/compiler-cli package contains the Angular Compiler (Ivy), often referred to as ngtsc. It is a wrapper around the TypeScript compiler (tsc) that extends it with Angular-specific capabilities.
The core goal of ngtsc is to compile Angular decorators (like @Component, @Directive, @Pipe) into static properties on the class (Ivy instructions, e.g., static ɵcmp = ...). It also performs template type checking and ahead-of-time (AOT) compilation.
Mental Model
The compiler is designed as a lazy, incremental, and partial compilation pipeline.
- Wrapper Pattern:
NgtscProgramwraps the standardts.Program. It intercepts calls to act as a drop-in replacement for standard tooling. - Traits System: Every class with an Angular decorator is considered a "Trait". The compiler manages the state of these traits through a state machine:
- Pending: Detected but not processed.
- Analyzed: Metadata extracted, template parsed (but dependencies not yet linked).
- Resolved: Dependencies (directives/pipes in template) resolved, import cycles handled.
- Skipped: Not an Angular class.
- Lazy Analysis: Analysis only happens when necessary (e.g., when diagnostics are requested or emit is prepared).
- Output AST: The compiler generates an intermediate "Output AST" (
o.Expression) for the generated code, which is then translated into TypeScript AST nodes during the emit phase.
Key Subsystems
1. Core Orchestration (ngtsc/core)
NgtscProgram: The public API implementingapi.Program. It manages thets.Programand theNgCompiler.NgCompiler: The brain of the compiler. It orchestrates the compilation phases (Analysis, Resolution, Type Checking, Emit). It holds theTraitCompiler.
2. Trait Compilation (ngtsc/transform)
TraitCompiler: Manages the lifecycle of "Traits". It iterates over source files, identifies decorated classes, and delegates to the appropriateDecoratorHandler.Trait: A state container for a class, holding its handler, analysis results, and resolution results.
3. Decorator Handlers (ngtsc/annotations)
DecoratorHandler: An interface for handling specific decorators.ComponentDecoratorHandler: The most complex handler. It:- Extracts metadata (selector, inputs, outputs).
- Parses the template.
- Resolves used directives and pipes (
R3TargetBinder). - Generates the
ɵcmpinstruction.
DirectiveDecoratorHandler,PipeDecoratorHandler,NgModuleDecoratorHandler: Handle their respective decorators.
4. Template Type Checking (ngtsc/typecheck)
TemplateTypeChecker: Generates "Type Check Blocks" (TCBs). A TCB is a block of TypeScript code that represents the template's logic in a waytsccan understand and check for errors.TypeCheckBlock: The actual generated code that validates bindings, events, and structural directives.
5. Metadata & Scope (ngtsc/metadata, ngtsc/scope)
MetadataReader: Reads Angular metadata from source files (usingLocalMetadataRegistry) and.d.tsfiles (usingDtsMetadataReader).ScopeRegistry: Determines the "compilation scope" of a component (which directives/pipes are available to it), handlingNgModuletransitive exports and Standalone Component imports.
6. Emit & Transformation (ngtsc/transform)
ivyTransformFactory: A TypeScript transformer factory.IvyCompilationVisitor: Visits classes, triggers compilation viaTraitCompiler, and collects the Output AST.IvyTransformationVisitor: Translates the Output AST into TypeScript AST, injects thestatic ɵ...fields, and removes the original decorators.
Compilation Phases
- Construction:
NgtscProgramcreatesNgCompiler, which sets up all registries and theTraitCompiler. - Analysis (
analyzeSync):- The
TraitCompilerscans files. DecoratorHandlers extract metadata and parse templates.- No cross-file resolution happens here (allowing for parallelism and caching).
- The
- Resolution (
resolve):TraitCompilerresolves traits.- Components link their templates to specific Directives and Pipes (found via
ScopeRegistry). - Import cycles are detected and handled (e.g., via "remote scoping").
- Type Checking:
TemplateTypeCheckercreates TCBs for all components.- TypeScript diagnostics are retrieved for these TCBs.
- Emit (
prepareEmit):ivyTransformFactoryis created.- TS
emitis called. - The transformers run, injecting the compiled Ivy instructions into the JS/DTS output.
Important File Locations
packages/compiler-cli/src/ngtsc/program.ts: Entry point (NgtscProgram).packages/compiler-cli/src/ngtsc/core/src/compiler.ts: Core logic (NgCompiler).packages/compiler-cli/src/ngtsc/transform/src/trait.ts: Trait state machine.packages/compiler-cli/src/ngtsc/annotations/component/src/handler.ts: Component compilation logic.packages/compiler-cli/src/ngtsc/typecheck/src/template_type_checker.ts: Type checking logic.packages/compiler-cli/src/ngtsc/transform/src/transform.ts: AST transformation logic.