> quality-engineering-business-analysis
Standard for deep requirement investigation, logic validation, and technical impact mapping. Use when investigating requirements, validating business rules, or mapping technical impact. (triggers: **/user_story.md, **/requirements.md, **/jira_*.xml, analyze requirements, scenario decomposition, logic conflict, technical impact)
curl "https://skillshub.wtf/HoangNguyen0403/agent-skills-standard/quality-engineering-business-analysis?format=md"Business Analysis Standards (Deep Analysis)
Priority: P0 (CRITICAL)
1. Deep Investigation Protocol
- Atomic Decomposition: Split AC into 1-Condition logic units.
- Variable Identification: Extract all Toggles, Market Rules, and User Roles.
- Platform Parity Audit: Verify if logic applies to both Web and Mobile; Flag divergent behavior.
- Truth Table Verification: Map complex logic to a Logic Truth Table.
2. Dynamic Actor Mapping
- Identify all Actors (Customer, Sales Rep, Admin).
- Map specific permissions and constraints per Actor.
- Permissions Patterns
3. Edge Case Discovery
- State Validation: Verify behavior across all entity and network states.
- Boundary Detection: Analyze currency, date, and count limits.
- Audit: Check for null-safety and unauthorized access paths.
4. Anti-Patterns
- No Surface Reading: investigate the implications, don't just restate.
- No Assumption: Flag undefined states (e.g., Offline) as P0 blockers.
- No Loose Mapping: Ensure AC aligns 100% with Technical Impact notes.
🚫 Anti-Patterns
- Do NOT use standard patterns if specific project rules exist.
- Do NOT ignore error handling or edge cases.
> related_skills --same-repo
> typescript-tooling
Development tools, linting, and build config for TypeScript. Use when configuring ESLint, Prettier, Jest, Vitest, tsconfig, or any TS build tooling. (triggers: tsconfig.json, .eslintrc.*, jest.config.*, package.json, eslint, prettier, jest, vitest, build, compile, lint)
> typescript-security
Secure coding practices for TypeScript. Use when validating input, handling auth tokens, sanitizing data, or managing secrets and sensitive configuration. (triggers: **/*.ts, **/*.tsx, validate, sanitize, xss, injection, auth, password, secret, token)
> typescript-language
Modern TypeScript standards for type safety and maintainability. Use when working with types, interfaces, generics, enums, unions, or tsconfig settings. (triggers: **/*.ts, **/*.tsx, tsconfig.json, type, interface, generic, enum, union, intersection, readonly, const, namespace)
> typescript-best-practices
Idiomatic TypeScript patterns for clean, maintainable code. Use when writing or refactoring TypeScript classes, functions, modules, or async logic. (triggers: **/*.ts, **/*.tsx, class, function, module, import, export, async, promise)