Use this skill when the user wants to create Angular applications, generate Angular components/services/modules, or automate Angular development workflows. Handles scaffolding complete Angular apps with routing and guards, generating individual Angular artifacts, setting up project structure, and initializing git repositories with Angular best practices.
Automates Angular development by scaffolding complete apps with routing and guards, or generating individual components, services, and modules. Triggers when users request Angular app creation, component generation, or project initialization tasks.
/plugin marketplace add jamesscalescode/claude-dev-toolkit/plugin install claude-dev-toolkit@claude-dev-toolkitThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill provides automated workflows for Angular development tasks.
When the user requests an Angular app, create a well-structured Angular application with:
Command to execute:
ng new {app-name} --routing --style=scss
cd {app-name}
ng generate guard auth/guards/auth
ng generate service auth/services/auth
ng generate module core
ng generate module shared
ng generate component core/components/layout
Create folder structure:
src/app/core/ - Core functionality (singletons, guards, interceptors)src/app/shared/ - Shared components, directives, pipessrc/app/features/ - Feature modulessrc/app/auth/ - Authentication logicAfter generation, create a README explaining the structure.
Generate Angular components with proper structure:
ng generate component {path}/{component-name}
Include component, template, styles, and spec file. Use proper naming conventions.
Generate Angular services:
ng generate service {path}/{service-name}
Follow singleton pattern for core services, place in appropriate module.
Generate feature modules with routing:
ng generate module {module-name} --routing
Initialize a git repo with Angular-specific best practices:
.gitignore for Angular/Node.js projectsGenerate guards and HTTP interceptors:
ng generate guard {path}/{guard-name}
ng generate interceptor {path}/{interceptor-name}
ng version)User: "Create an Angular app called my-dashboard" → Use capability #1, verify ng is installed, create app with routing and guards
User: "Generate a user service" → Use capability #3, create service in appropriate location
User: "Add an auth guard" → Use capability #6, generate guard with authentication logic template
User: "Create a products feature module" → Use capability #4, generate module with routing
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.