/f5-module
Create or manage modules
$ npx -y skills add Fujigo-Software/f5-framework-claude --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/f5-module
Context preview
What this command does when you run it.
Create or manage modules
Command definition
f5-module.mddescription: Create or manage modules
argument-hint: <create|list|analyze> [name]
/f5-module - Module Management
View and activate tech stack and domain modules for context-aware assistance.
ARGUMENTS
The user's request is: $ARGUMENTS
PURPOSE
Modules provide domain-specific knowledge:
- **Tech Modules**: Framework patterns, best practices, anti-patterns
- **Domain Modules**: Business logic, regulations, industry standards
MODULE TYPES
Tech Stack Modules
| Category | Modules | |----------|---------| | Backend | `nestjs`, `go`, `spring`, `fastapi`, `express`, `django`, `rails` | | Frontend | `react`, `vue`, `angular`, `nextjs`, `nuxt`, `svelte` | | Mobile | `flutter`, `react-native`, `swift`, `kotlin` | | Database | `postgresql`, `mysql`, `mongodb`, `redis`, `elasticsearch` | | Infrastructure | `kubernetes`, `docker`, `terraform`, `aws`, `gcp`, `azure` | | Gateway | `nginx`, `kong`, `traefik`, `envoy` |
Domain Modules
| Domain | Sub-domains | |--------|-------------| | `fintech` | stock-trading, p2p-lending, payment, banking, crypto | | `e-commerce` | b2c-retail, b2b-wholesale, marketplace, subscription | | `healthcare` | ehr, telemedicine, pharmacy, clinical-trials | | `logistics` | warehouse, fleet, last-mile, supply-chain | | `education` | lms, assessment, certification, e-learning | | `entertainment` | streaming, gaming, esports, horse-racing | | `saas` | multi-tenant, billing, analytics, crm |
ACTIONS
List Active Modules
/f5-module
Output:
๐ฆ Active Modules
Tech Stack:
โ nestjs - Backend framework
โ react - Frontend framework
โ postgresql - Primary database
โ redis - Cache layer
Domain:
โ fintech/stock-trading - Retail variant
Source: .f5/config.json
List Available Modules
/f5-module list
Output:
๐ Available Modules
TECH STACK:
โโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Category โ Modules โ
โโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Backend โ nestjs, go, spring, fastapi, express โ
โ Frontend โ react, vue, angular, nextjs, nuxt โ
โ Mobile โ flutter, react-native, swift, kotlin โ
โ Database โ postgresql, mysql, mongodb, redis โ
โ Infra โ kubernetes, docker, terraform, aws โ
โโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
DOMAINS:
โโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Domain โ Sub-domains โ
โโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ fintech โ stock-trading, p2p-lending, payment โ
โ e-commerce โ b2c-retail, marketplace, subscription โ
โ healthcare โ ehr, telemedicine, pharmacy โ
โ logistics โ warehouse, fleet, last-mile โ
โ education โ lms, assessment, certification โ
โ saas โ multi-tenant, billing, analytics โ
โโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Show Module Details
/f5-module show nestjs
Output:
๐ฆ Module: nestjs
Type: Backend Framework
Category: TypeScript/Node.js
Provides:
โข Module/Controller/Service patterns
โข Dependency injection best practices
โข Guard/Interceptor/Pipe patterns
โข TypeORM/Prisma integration
โข Testing patterns (jest)
โข OpenAPI/Swagger documentation
Best Practices:
โข Use DTOs for validation
โข Implement custom exceptions
โข Use ConfigService for env vars
โข Apply guards at controller level
Anti-patterns to Avoid:
โข Business logic in controllers
โข Circular dependencies
โข Missing validation pipes
โข Hardcoded configurations
Related Modules:
โข postgresql, mongodb (database)
โข redis (caching)
โข kubernetes (deployment)
Show Domain Module
/f5-module show fintech/stock-trading
Output:
๐ฆ Domain: fintech/stock-trading
Variant: retail (default)
Provides:
โข Trading system patterns
โข Order management flows
โข Real-time price handling
โข Portfolio calculation logic
โข Risk management rules
Regulatory Knowledge:
โข Securities regulations
โข KYC/AML requirements
โข Audit trail requirements
โข Data retention policies
Integration Patterns:
โข Market data feeds
โข Order execution APIs
โข Settlement systems
โข Compliance reporting
Business Rules:
โข Order validation
โข Position limits
โข Trading hours
โข Price validation
Activate Module
/f5-module activate go
Output:
โ Module Activated: go
Added knowledge:
โข Go project structure (cmd/, pkg/, internal/)
โข Error handling patterns
โข Concurrency best practices
โข Testing with testify
โข Go modules dependency management
Updated .f5/config.json
๐ก Use /f5-sync to update CLAUDE.md
Deactivate Module
/f5-module deactivate spring
Output:
โ Module Deactivated: spring
Removed from active modules.
Updated .f5/config.json
๐ก Use /f5-sync to update CLAUDE.md
Auto-detect Modules
/f5-module detect
Output:
๐ Auto-detecting modules...
Detected from project files:
package.json โ nestjs, react, typescript
docker-compose.yml โ postgresql, redis
.f5/config.json โ fintech/stock-trading
Suggested additions:
โ kubernetes (found k8s/ directory)
โ nginx (found nginx.conf)
Apply detected? [Y/n]
MODULE KNOWLEDGE
What Modules Provide
**Tech Modules:**
patterns:
- Project structure conventions
- Code organization patterns
- Common implementations
best_practices:
- Security guidelines
- Performance optimization
- Error handling
anti_patterns:
- Common mistakes to avoid
- Security vulnerabilities
- Performance pitfalls
integration:
- How to combine with other modules
- Configuration patterns
- Migration guides
**Domain Modules:**
business_rules:
- Industry-specific logic
- Validation requirements
- Calculation formulas
regulations:
- Compliance requirements
- Data handling rules
- Audit requirements
terminology:
- Domain vocabulary
- Standard abbreviations
- Common
Read more
description: Create or manage modules argument-hint: <create|list|analyze> [name]
/f5-module - Module Management
View and activate tech stack and domain modules for context-aware assistance.
ARGUMENTS
The user's request is: $ARGUMENTS
PURPOSE
Modules provide domain-specific knowledge:
- **Tech Modules**: Framework patterns, best practices, anti-patterns
- **Domain Modules**: Business logic, regulations, industry standards
MODULE TYPES
Tech Stack Modules
| Category | Modules | |----------|---------| | Backend | `nestjs`, `go`, `spring`, `fastapi`, `express`, `django`, `rails` | | Frontend | `react`, `vue`, `angular`, `nextjs`, `nuxt`, `svelte` | | Mobile | `flutter`, `react-native`, `swift`, `kotlin` | | Database | `postgresql`, `mysql`, `mongodb`, `redis`, `elasticsearch` | | Infrastructure | `kubernetes`, `docker`, `terraform`, `aws`, `gcp`, `azure` | | Gateway | `nginx`, `kong`, `traefik`, `envoy` |
Domain Modules
| Domain | Sub-domains | |--------|-------------| | `fintech` | stock-trading, p2p-lending, payment, banking, crypto | | `e-commerce` | b2c-retail, b2b-wholesale, marketplace, subscription | | `healthcare` | ehr, telemedicine, pharmacy, clinical-trials | | `logistics` | warehouse, fleet, last-mile, supply-chain | | `education` | lms, assessment, certification, e-learning | | `entertainment` | streaming, gaming, esports, horse-racing | | `saas` | multi-tenant, billing, analytics, crm |
ACTIONS
List Active Modules
/f5-module Output: ๐ฆ Active Modules Tech Stack: โ nestjs - Backend framework โ react - Frontend framework โ postgresql - Primary database โ redis - Cache layer Domain: โ fintech/stock-trading - Retail variant Source: .f5/config.json
List Available Modules
/f5-module list Output: ๐ Available Modules TECH STACK: โโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Category โ Modules โ โโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ Backend โ nestjs, go, spring, fastapi, express โ โ Frontend โ react, vue, angular, nextjs, nuxt โ โ Mobile โ flutter, react-native, swift, kotlin โ โ Database โ postgresql, mysql, mongodb, redis โ โ Infra โ kubernetes, docker, terraform, aws โ โโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ DOMAINS: โโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Domain โ Sub-domains โ โโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ fintech โ stock-trading, p2p-lending, payment โ โ e-commerce โ b2c-retail, marketplace, subscription โ โ healthcare โ ehr, telemedicine, pharmacy โ โ logistics โ warehouse, fleet, last-mile โ โ education โ lms, assessment, certification โ โ saas โ multi-tenant, billing, analytics โ โโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Show Module Details
/f5-module show nestjs Output: ๐ฆ Module: nestjs Type: Backend Framework Category: TypeScript/Node.js Provides: โข Module/Controller/Service patterns โข Dependency injection best practices โข Guard/Interceptor/Pipe patterns โข TypeORM/Prisma integration โข Testing patterns (jest) โข OpenAPI/Swagger documentation Best Practices: โข Use DTOs for validation โข Implement custom exceptions โข Use ConfigService for env vars โข Apply guards at controller level Anti-patterns to Avoid: โข Business logic in controllers โข Circular dependencies โข Missing validation pipes โข Hardcoded configurations Related Modules: โข postgresql, mongodb (database) โข redis (caching) โข kubernetes (deployment)
Show Domain Module
/f5-module show fintech/stock-trading Output: ๐ฆ Domain: fintech/stock-trading Variant: retail (default) Provides: โข Trading system patterns โข Order management flows โข Real-time price handling โข Portfolio calculation logic โข Risk management rules Regulatory Knowledge: โข Securities regulations โข KYC/AML requirements โข Audit trail requirements โข Data retention policies Integration Patterns: โข Market data feeds โข Order execution APIs โข Settlement systems โข Compliance reporting Business Rules: โข Order validation โข Position limits โข Trading hours โข Price validation
Activate Module
/f5-module activate go Output: โ Module Activated: go Added knowledge: โข Go project structure (cmd/, pkg/, internal/) โข Error handling patterns โข Concurrency best practices โข Testing with testify โข Go modules dependency management Updated .f5/config.json ๐ก Use /f5-sync to update CLAUDE.md
Deactivate Module
/f5-module deactivate spring Output: โ Module Deactivated: spring Removed from active modules. Updated .f5/config.json ๐ก Use /f5-sync to update CLAUDE.md
Auto-detect Modules
/f5-module detect Output: ๐ Auto-detecting modules... Detected from project files: package.json โ nestjs, react, typescript docker-compose.yml โ postgresql, redis .f5/config.json โ fintech/stock-trading Suggested additions: โ kubernetes (found k8s/ directory) โ nginx (found nginx.conf) Apply detected? [Y/n]
MODULE KNOWLEDGE
What Modules Provide
**Tech Modules:**
patterns: - Project structure conventions - Code organization patterns - Common implementations best_practices: - Security guidelines - Performance optimization - Error handling anti_patterns: - Common mistakes to avoid - Security vulnerabilities - Performance pitfalls integration: - How to combine with other modules - Configuration patterns - Migration guides
**Domain Modules:**
business_rules: - Industry-specific logic - Validation requirements - Calculation formulas regulations: - Compliance requirements - Data handling rules - Audit requirements terminology: - Domain vocabulary - Standard abbreviations - Common
AI-Powered Development Framework for Claude Code
Repo: Fujigo-Software/f5-framework-claude
Other commands on f5-framework.
- /f5-agent
Manage AI agents, personas, and get smart suggestions
Open command - /f5-analytics
View project analytics and metrics
Open command - /f5-ba
Business analysis workflow
Open command - /f5-backend
Backend development commands
Open command - /f5-checkpoint
[DEPRECATED] Use /f5-ctx checkpoint
Open command - /f5-classify
Classify input files by type using content-first analysis, detect gaps, and generate coverage declaration
Open command

