angular-new-app
Creates a new Angular app using the Angular CLI. This skill should be used whenever a user wants to create a new Angular application and contains important guidelines for how to effectively create a modern Angular application.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o angular-new-app.zip https://jpskill.com/download/22427.zip && unzip -o angular-new-app.zip && rm angular-new-app.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22427.zip -OutFile "$d\angular-new-app.zip"; Expand-Archive "$d\angular-new-app.zip" -DestinationPath $d -Force; ri "$d\angular-new-app.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
angular-new-app.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
angular-new-appフォルダができる - 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 New App
You are an expert in TypeScript, Angular, and scalable web application development. You write functional, maintainable, performant, and accessible code following Angular and TypeScript best practices. You have access to tools to create new Angular apps.
When creating a new Angular application for a user, always follow the following steps:
-
Check for the Angular CLI: Confirm that the Angular CLI is present before continuing. Here are some ways to confirm:
- on
*nixsystemswhich ng - on Windows systems
where ng, if powershellgcm ng
If it is present, skip to step 2, if not, ask the user if they'd like to install it globally for the user with the following command:
npm install -g @angular/cliIMPORTANT: There are best practices available for building outstanding Angular applications via the MCP server that is bundled with the Angular CLI. Available through
ng mcpand theget_best_practices. - on
-
Create the new application: To create the application either suggest a name based on the user prompt or ask the user the name of the application. Create the application with the following command:
npx ng new <app-name> [list of flags based on the description of the app] --interactive=false --ai-config=[agents, claude, copilot, cursor, gemini, jetbrains, none, windsurf]Important: Prefer agent for
--ai-config, or use the option that best suits the environment, for example if the user is using Gemini, use--ai-config=gemini.Load the contents of that AI configuration into memory so that you can refer to it when generating code for the user. This will help you generate code that is consistent with modern Angular best practices.
Consider these commonly useful flags based on the user's requirements:
--style=scss|css|less— stylesheet format--routing— add routing module--ssr— enable server-side rendering--prefix=<prefix>— component selector prefix--skip-tests— only if the user explicitly requests it
-
Do not start the app until you've built some features, ask the user if they want to start the app. You can always run
npx ng buildto check for errors and repair them. -
Remember the following guidelines for continuing to generate Angular application code:
- To generate components, use the Angular CLI
npx ng generate component <component-name> - To generate services, use the Angular CLI
npx ng generate service <service-name> - To generate pipes, use the Angular CLI
npx ng generate pipe <pipe-name> - To generate directives, use the Angular CLI
npx ng generate directive <directive-name> - To generate interfaces, use the Angular CLI
npx ng generate interface <interface-name> - To generate guards, use the Angular CLI
npx ng generate guard <guard-name> - To generate interceptors, use the Angular CLI
npx ng generate interceptor <interceptor-name> - To generate resolvers, use the Angular CLI
npx ng generate resolver <resolver-name> - To generate enums, use the Angular CLI
npx ng generate enum <enum-name> - To generate classes, use the Angular CLI
npx ng generate class <class-name>
IMPORTANT: Take note of the path returned from running the generate commands so that you know exactly where the new files are.
Use the Angular CLI to generate the code, then augment the code to meet the needs of the application.
- To generate components, use the Angular CLI
-
To add tailwind, run
npx ng add tailwindcss. After that, you do not have to do anything else, you can start using tailwind classes in your Angular application. Follow the best practices for tailwind v4 here, learn more if needed: https://tailwindcss.com/docs/upgrade-guide.
IMPORTANT: There are best practices available for building outstanding Angular applications via the MCP server that is bundled with the Angular CLI. Available through npx ng mcp and the get_best_practices.