Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

ionic-angularionic Angular 命令行

Agent Skill

ionic-angular 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,399

周安装

98

GitHub Stars

19

下载量

768
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ionic-angular(ionic Angular 命令行)
来源仓库:https://github.com/capawesome-team/skills
仓库路径:skills/ionic-angular
安装命令:
npx skills add https://github.com/capawesome-team/skills --skill ionic-angular
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/capawesome-team/skills --skill ionic-angular

简介

ionic-angular 用于处理 GitHub 仓库和代码协作信息,适合整理仓库状态和变更事项。

  • 适用于围绕项目协作、Issue 处理和 Pull Request 管理等开发场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围。
  • 安装前建议检查维护状态和是否会触发敏感操作如文件读写。
  • 可结合原始 README 继续核验具体功能和使用边界。

SKILL.md

Ionic Angular

Ionic development with Angular — project structure, Angular-specific components, navigation, lazy loading, forms, and lifecycle integration.

Prerequisites

  1. Ionic Framework 7 or 8 with @ionic/angular.
  2. Angular 16+ (Angular 17+ recommended for standalone architecture).
  3. Node.js and npm installed.
  4. Ionic CLI installed (npm install -g @ionic/cli).

Agent Behavior

  • Auto-detect architecture. Check src/main.ts for bootstrapApplication (standalone) vs. platformBrowserDynamic().bootstrapModule (NgModule). Adapt all code examples to the detected architecture.
  • Guide step-by-step. Walk the user through one topic at a time.
  • Adapt imports. For standalone components, import each Ionic component from @ionic/angular/standalone. For NgModule components, import IonicModule in the page module.

Procedures

Step 1: Analyze the Project

Auto-detect the following by reading project files — do not ask the user for information that can be inferred:

  1. Ionic version: Read @ionic/angular version from package.json.
  2. Angular version: Read @angular/core version from package.json.
  3. Architecture: Check src/main.ts for bootstrapApplication (standalone) or platformBrowserDynamic().bootstrapModule (NgModule). If src/app/app.module.ts exists and imports IonicModule, confirm NgModule.
  4. Capacitor: Check if @capacitor/core is in package.json. Check for android/ and ios/ directories.
  5. Routing: Check for src/app/app.routes.ts (standalone) or src/app/app-routing.module.ts (NgModule).
  6. Navigation pattern: Check src/app/ for a tabs/ directory (tab-based) or ion-menu usage in templates (side menu).

Step 2: Understand Project Structure

Read references/project-structure.md for the standard Ionic Angular directory layout.

Key points:

  • Standalone projects have app.config.ts, app.routes.ts, and standalone page components.
  • NgModule projects have app.module.ts, app-routing.module.ts, and per-page *.module.ts files.
  • Ionic config lives in ionic.config.json.
  • Theme variables are in src/theme/variables.scss.
  • Global styles and Ionic CSS imports are in src/global.scss.

Step 3: Understand Architecture Differences

Read references/standalone-vs-ngmodules.md for detailed differences.

Summary:

AspectStandaloneNgModule
BootstrapbootstrapApplication in main.tsplatformBrowserDynamic().bootstrapModule
Ionic setupprovideIonicAngular({}) in app.config.tsIonicModule.forRoot() in app.module.ts
Component importsImport each Ionic component per fileIonicModule provides all globally
Import source@ionic/angular/standalone@ionic/angular
Lazy loadingloadComponent in routesloadChildren in routes
Icon registrationaddIcons() from ionicons requiredAutomatic
Tree-shakingYesNo

Step 4: Set Up Navigation

Read references/navigation.md for full navigation patterns.

Topics covered:

  • Route configuration — defining routes with lazy loading for both architectures.
  • Root component layout<ion-app> with <ion-router-outlet>.
  • Template navigationrouterLink with routerDirection for transition animations.
  • Programmatic navigationNavController (navigateForward, navigateBack, navigateRoot, back).
  • Route parameters — reading params via ActivatedRoute.
  • Tab navigation<ion-tabs> with child routes per tab.
  • Side menu<ion-menu> with <ion-menu-toggle> and child routes.
  • Route guards — functional guards (Angular 15.2+) with CanActivateFn.
  • ModalsModalController for overlay navigation with data passing.
  • Linear vs. non-linear routing — when to use each pattern.

Step 5: Implement Lifecycle Hooks

Read references/lifecycle.md for Ionic page lifecycle hook details.

Key rules:

  • ngOnInit fires once (first creation). Use for one-time setup.
  • ionViewWillEnter fires on every page visit. Use for refreshing data.
  • ionViewDidEnter fires after the transition animation. Use for heavy work that would block animations.
  • ionViewWillLeave fires before leaving. Use for cleanup, pausing subscriptions.
  • ngOnDestroy fires when the page is popped from the navigation stack. Use for final cleanup.
  • Implement interfaces ViewWillEnter, ViewDidEnter, ViewWillLeave, ViewDidLeave from @ionic/angular.

Step 6: Build Forms

Read references/forms.md for form patterns with Ionic components.

Topics covered:

  • Reactive formsFormBuilder, FormGroup, Validators with Ionic input components.
  • Template-driven forms[(ngModel)] with FormsModule.
  • Ionic form componentsion-input, ion-textarea, ion-select, ion-checkbox, ion-toggle, ion-radio-group, ion-range, ion-datetime.
  • Validation displayerrorText (Ionic 7+) or manual <ion-note> for older versions.
  • Label placementlabelPlacement attribute (floating, stacked, fixed).

Step 7: Manage Services and State

Read references/services-and-state.md for service and state management patterns.

Topics covered:

  • Injectable services@Injectable({providedIn: 'root'}).
  • HTTP data fetchingHttpClient setup for standalone and NgModule, CRUD service pattern.
  • Reactive stateBehaviorSubject for shared observable state.
  • Angular signalssignal() and computed() for reactive state (Angular 16+).
  • Loading indicatorsLoadingController for async operations.
  • Error feedbackToastController for user-facing error/success messages.
  • Environment configenvironment.ts / environment.prod.ts for API URLs.

Step 8: Optimize Performance

Read references/performance.md for performance optimization techniques.

Topics covered:

  • Lazy loadingloadComponent (standalone) and loadChildren (NgModule).
  • trackBy / track — efficient list rendering with *ngFor and @for.
  • Virtual scrolling — Angular CDK cdk-virtual-scroll-viewport for large lists.
  • OnPush change detection — reduce unnecessary re-renders.
  • Preloading strategyPreloadAllModules for instant subsequent navigation.
  • Skeleton textion-skeleton-text for perceived performance during loading.

Step 9: Write Tests

Read references/testing.md for testing patterns.

Topics covered:

  • Unit testing pagesTestBed setup for standalone and NgModule pages.
  • Testing services — basic services and HTTP services with HttpTestingController.
  • Mocking dependenciesjasmine.createSpyObj for service and controller mocks.
  • Testing navigation — mocking NavController.
  • Testing guardsTestBed.runInInjectionContext for functional guards.
  • E2E testing — Cypress and Playwright setup.

Error Handling

  • NullInjectorError: No provider for IonRouterOutlet: In standalone apps, verify provideIonicAngular({}) is called in app.config.ts. In NgModule apps, verify IonicModule.forRoot() is imported in app.module.ts.
  • Ionic components not rendering: In standalone components, verify each Ionic component is imported from @ionic/angular/standalone and listed in the imports array. In NgModule components, verify IonicModule is imported in the page module.
  • Icons not showing (standalone): Verify addIcons() is called with the required icons from ionicons/icons, and IonIcon is imported from @ionic/angular/standalone.
  • ionViewWillEnter not firing: Verify the component is directly routed via <ion-router-outlet>. Child components do not receive Ionic lifecycle events.
  • Page data not refreshing on back navigation: Use ionViewWillEnter instead of ngOnInit for data loading. Ionic caches pages in the DOM, so ngOnInit only fires once.
  • Form validation errors not displaying: For Ionic 7+, use errorText on <ion-input>. For older versions, manually check control.invalid && control.touched and show <ion-note>.
  • routerLink not working on Ionic components: In standalone components, import RouterLink from @angular/router in the component's imports array.
  • Page transitions not animating: Use NavController from @ionic/angular instead of Angular's Router for animated navigation. Alternatively, add routerDirection to routerLink elements.
  • Tab navigation broken: Verify the tab attribute on <ion-tab-button> matches the child route path. Do not programmatically navigate between tabs.

Related Skills

  • capacitor-angular — Capacitor-specific Angular patterns (plugin services, NgZone, deep links, platform detection).
  • ionic-app-development — General Ionic development (components, theming, CLI).
  • ionic-app-creation — Create a new Ionic app from scratch.
  • ionic-app-upgrades — Upgrade Ionic to a newer version.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.48%
按下载量换算280

Claude

29.72%
按下载量换算228

Cursor

17.48%
按下载量换算134

Gemini CLI

8.53%
按下载量换算66

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills