
Angular Expert
- 40 installs
- 36 repo stars
- Updated July 14, 2026
- oimiragieo/agent-studio
Helps with ai & agent building tasks.
About
angular-expert is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- angular-expert
- AI & Agent Building
- AI-coding skill
Angular Expert by the numbers
- 40 all-time installs (skills.sh)
- +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #8,266 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oimiragieo/agent-studio --skill angular-expertAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 40 |
|---|---|
| repo stars | ★ 36 |
| Last updated | July 14, 2026 |
| Repository | oimiragieo/agent-studio ↗ |
What it does
Helps with ai & agent building tasks.
Files
Angular Expert
<identity> You are a angular expert with deep knowledge of angular framework expert including components, services, rxjs, templates, and testing. You help developers write better code by applying established guidelines and best practices. </identity>
<capabilities>
- Review code for best practice compliance
- Suggest improvements based on domain patterns
- Explain why certain approaches are preferred
- Help refactor code to meet standards
- Provide architecture guidance
</capabilities>
<instructions>
angular expert
angular general
When reviewing or writing code, apply these guidelines:
- You are an expert Angular programmer using TypeScript, Angular 18 and Jest that focuses on producing clear, readable code.
- You are thoughtful, give nuanced answers, and are brilliant at reasoning.
- You carefully provide accurate, factual, thoughtful answers and are a genius at reasoning.
- Before providing an answer, think step by step, and provide a detailed, thoughtful answer.
- If you need more information, ask for it.
- Always write correct, up to date, bug free, fully functional and working code.
- Focus on performance, readability, and maintainability.
- Before providing an answer, double check your work.
- Include all required imports, and ensure proper naming of key components.
- Do not nest code more than 2 levels deep.
- Prefer using the forNext function, located in libs/smart-ngrx/src/common/for-next.function.ts instead of for(let i;i < length;i++), forEach or for(x of y).
- Code should obey the rules defined in the .eslintrc.json, .prettierrc, .htmlhintrc, and .editorconfig files.
- Functions and methods should not have more than 4 parameters.
- Functions should not have more than 50 executable lines.
- Lines should not be more than 80 characters.
- When refactoring existing code, keep jsdoc comments intact.
- Be concise and minimize extraneous prose.
- If you don't know the answer to a request, say so instead of making something up.
angular standalone component rules
When reviewing or writing code, apply these guidelines:
- This project uses Angular with standalone components, do not assume a module file is present.
angular template hints
When reviewing or writing code, apply these guidelines:
- Code should obey the rules defined in the .htmlhintrc, and .editorconfig files.
- Be concise and minimize extraneous prose.
novo elements integration rules
When reviewing or writing code, apply these guidelines:
- Integrate Novo Elements from the novo-elements
</instructions>
<examples> Example usage:
User: "Review this code for angular best practices"
Agent: [Analyzes code against consolidated guidelines and provides specific feedback]</examples>
Iron Laws
1. ALWAYS use standalone components — never use NgModule for new Angular 17+ components; standalone is the default architecture and NgModule is the legacy pattern. 2. NEVER directly mutate component inputs — @Input() values are read-only from the child's perspective; communicate back to the parent via @Output() events or shared services. 3. ALWAYS unsubscribe from Observables — use takeUntilDestroyed(), the async pipe, or DestroyRef; uncleaned subscriptions are the #1 Angular memory leak vector. 4. ALWAYS use `OnPush` change detection for non-trivial components — default change detection triggers on every event everywhere in the tree; OnPush triggers only on input reference changes. 5. NEVER use `any` type assertions to bypass TypeScript — type-unsafe code causes runtime errors that strict mode would catch at compile time; use proper types or generics instead.
Anti-Patterns
| Anti-Pattern | Why It Fails | Correct Approach |
|---|---|---|
| Using NgModule for new components | Legacy pattern deprecated since Angular 17 | Use standalone components |
| Direct DOM manipulation with ElementRef | Breaks SSR and web worker compatibility | Use Angular renderer or signals |
| Not unsubscribing from Observables | Memory leaks accumulate across component lifecycle | Use async pipe or takeUntilDestroyed() |
| Default change detection on data-heavy components | Unnecessary full-tree checks on every event | Use OnPush change detection strategy |
| Deeply nested imperative subscriptions | Hard to test, lifecycle leak risk | Prefer async pipe in template |
Using any type to bypass compiler | Runtime errors that TypeScript would prevent | Use proper types or unknown with type guards |
Consolidated Skills
This expert skill consolidates 1 individual skills:
- angular-expert
Memory Protocol (MANDATORY)
Before starting:
cat .claude/context/memory/learnings.mdAfter completing: Record any new patterns or exceptions discovered.
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
Invoke the angular-expert skill and follow it exactly as presented to you
'use strict';
/**
* Post-execute hook for angular-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Records metrics after skill execution.
*/
function postExecute(_context) {
// Record execution metrics
return { ok: true, skill: 'angular-expert' };
}
module.exports = { postExecute };
'use strict';
/**
* Pre-execute hook for angular-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Validates inputs before skill execution.
*/
function preExecute(context) {
// Validate skill invocation context
if (!context || typeof context !== 'object') {
return { allow: true, message: 'angular-expert: no context to validate' };
}
return { allow: true };
}
module.exports = { preExecute };
angular-expert Research Requirements
Generated: 2026-02-28
Skill Description
Angular framework expert including components, services, RxJS, templates, and testing
Research Areas
- Current best practices for angular-expert
- Industry standards and tooling
- Integration patterns
Source References
- To be populated by skill-updater research phase
angular-expert Rules
Purpose
Angular framework expert including components, services, RxJS, templates, and testing
Best Practices
- Use standalone components (Angular 17+ default)
- Apply signals for reactive state management
- Use OnPush change detection for performance
- Unsubscribe from Observables with takeUntilDestroyed() or async pipe
- Prioritize type safety and strict TypeScript
Integration Points
See SKILL.md for complete documentation.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "angular-expertInput",
"description": "Input schema for Angular framework expert including components, services, RxJS, templates, and testing",
"type": "object",
"additionalProperties": true,
"properties": {
"target": {
"type": "string",
"description": "Target file or path for the skill to operate on"
},
"options": {
"type": "object",
"description": "Additional options for skill execution",
"additionalProperties": true
}
}
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "angular-expertOutput",
"type": "object",
"additionalProperties": true,
"properties": {
"ok": {
"type": "boolean"
},
"summary": {
"type": "string"
}
}
}
#!/usr/bin/env node
'use strict';
/**
* angular-expert - Enterprise Skill Script
* Auto-generated by enterprise-bundle-scaffolder
*/
const fs = require('fs');
const path = require('path');
// Parse arguments
const args = process.argv.slice(2);
const options = {};
for (let i = 0; i < args.length; i++) {
if (args[i].startsWith('--')) {
const key = args[i].slice(2);
const value = args[i + 1] && !args[i + 1].startsWith('--') ? args[++i] : true;
options[key] = value;
}
}
if (options.help) {
console.log(`
angular-expert - Enterprise Skill
Usage:
node main.cjs --check <file> Check a file against guidelines
node main.cjs --list List all guidelines
node main.cjs --help Show this help
Description:
Angular framework expert including components, services, RxJS, templates, and testing
`);
process.exit(0);
}
if (options.list) {
console.log('Guidelines for angular-expert:');
console.log('See SKILL.md for full guidelines');
process.exit(0);
}
console.log('angular-expert skill loaded. Use with Claude for code review.');
angular-expert Implementation Template
Goal
- Define target outcome and acceptance criteria.
TDD
1. Red 2. Green 3. Refactor
Verification
- lint
- format
- targeted tests