smithery/rzyfront

vendix-frontend-module

Angular module/feature structure patterns for Vendix: pages, services, interfaces, routes, standalone roots, and module-local components aligned to current repo reality.

Installation

$ npx skills add smithery/rzyfront --skill vendix-frontend-module

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/rzyfront · top by installs.

npx skills add smithery/rzyfront

Browse all from smithery/rzyfront

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version2.0
LicenseMIT
More metadata
author
rzyfront
version
2.0
scope
["root"]
auto_invoke
Creating Frontend Modules

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,318 B
  • docs SUMMARY.md 54 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Vendix Frontend Module

Current Reality

Frontend feature modules commonly include some or all of these:

  • root feature component
  • pages/
  • components/
  • services/
  • interfaces/
  • facades/ or state files when needed
  • *.routes.ts

Some roots use inline templates/styles, some use separate html/scss files, and routes often lazy-load pages/components with loadComponent().

Rules

  • Match the established shape of the target module instead of forcing a single rigid skeleton.
  • Do not assume every child component lives in its own folder.
  • Use route files where the surrounding domain already does so.
  • Prefer page components for larger flows and modal/detail/list components under components/ when local to the module.
  • Keep interfaces/services close to the module unless they are truly shared.

Related Skills

  • vendix-frontend-component
  • vendix-frontend-routing
  • vendix-zoneless-signals