II.
LibrarySkill overview
Reference · livelib-skill:cli-mcp-development--plugin-hook-system
plugin-hook-system overview
Generate hook-based plugin extension system with event emitter patterns.
Attributes
displayName
plugin-hook-system
description
Generate hook-based plugin extension system with event emitter patterns.
libraryPath
library/specializations/cli-mcp-development/skills/plugin-hook-system/SKILL.md
specialization
cli-mcp-development
contentSummary
# Plugin Hook System
Generate hook-based plugin extension system.
## Generated Patterns
```typescript
type HookCallback = (...args: any[]) => Promise<any> | any;
export class HookSystem {
private hooks = new Map<string, HookCallback[]>();
register(hookName: string, callback: Hoo
Outgoing edges
lib_applies_to_domain1
- domain:software-engineering·DomainSoftware Engineering
lib_belongs_to_specialization1
- specialization:cli-mcp-development·Specialization
lib_covers_topic1
- topic:developer-experience·TopicDeveloper Experience (DX)
lib_implements_workflow1
- workflow:feature-development·Workflow
lib_involves_role2
- role:backend-engineer·RoleBackend Engineer
- role:platform-engineer·Role
lib_requires_skill_area2
- skill-area:cli-design·SkillAreaCLI Design
- skill-area:plugin-systems·SkillAreaPlugin System Design
Incoming edges
None.