> android-tooling
Standards for Static Analysis (Detekt, Ktlint) and CI/CD Checks. Use when configuring Detekt, Ktlint, lint rules, or CI/CD for Android projects. (triggers: build.gradle.kts, detekt.yml, detekt, ktlint, lint)
curl "https://skillshub.wtf/HoangNguyen0403/agent-skills-standard/android-tooling?format=md"Android Tooling Standards
Priority: P1
Implementation Guidelines
Static Analysis
- Detekt: Enforce code complexity rules (LongMethod, LargeClass). Fail build on high complexity.
- Ktlint: Enforce formatting style (Indent, Spacing). Use
jlleitschuhplugin. - Android Lint: Treat warnings as errors in CI (
abortOnError = true).
CI Gates
- Pre-commit: Run lightweight checks (formatting) locally.
- Pipeline: Run full checks (Detekt + Lint + Unit Tests) on Pull Request.
Anti-Patterns
- Suppress:
**No @Suppress**: Fix the root cause. - Manual Formatting:
**No Manual Format**: Auto-format on save.
References
> 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)