AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Android Ktlint Formatting

skill-prasad-vennam-awesome-android-ai-agent-skills-android-ktlint-formatting · by prasad-vennam

Use when formatting Kotlin code, enforcing the Android style guide, or configuring KtLint for Android.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-prasad-vennam-awesome-android-ai-agent-skills-android-ktlint-formatting

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-prasad-vennam-awesome-android-ai-agent-skills-android-ktlint-formatting)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Android Ktlint Formatting? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Android KtLint Formatting Excellence 🧹💎

Standardized formatting rules for Android developers based on the official Kotlin and Android Style Guides.

⚡ When to Use

  • Code Cleanup: Automatically reformatting messy files.
  • Pre-commit Audit: Ensuring the code is perfectly formatted before pushing.
  • CI/CD Configuration: Setting up a gatekeeper for code style.
  • New Project Setup: Initializing a project with the correct .editorconfig.

🏗️ Core Rules (Android Style)

1. Indentation

  • Use 4 spaces for indentation.
  • No TAB characters allowed.
  • Follow "Continuation Indents" for long method calls (8 spaces).

2. Imports

  • Rule: Avoid wildcard imports (import com.example.*).
  • Order alphabetically.
  • Group by java.*, kotlin.*, then external libraries.

3. Blank Lines

  • Single blank line between classes, properties, and methods.
  • NO trailing whitespace at the end of lines.
  • NO multiple blank lines.

4. Naming

  • Classes/Interfaces: PascalCase.
  • Properties/Variables: camelCase.
  • Functions: camelCase.
  • Constants: SCREAMING_SNAKE_CASE.

🛠️ Essential Commands

Check Formatting

./gradlew ktlintCheck

Auto-Fix Formatting

  • Rule: ALWAYS run this before committing if formatting changes are extensive.
./gradlew ktlintFormat

📜 Configuration (.editorconfig)

Ensure your project has a .editorconfig that KtLint reads:

[*.{kt,kts}]
indent_size=4
insert_final_newline=true
max_line_length=120
ij_kotlin_allow_trailing_comma=true

🚀 Performance & Tips

  • [ ] IDE Integration: Install the "KtLint" or "Kotlin" plugin and enable "On Save" actions.
  • [ ] Trailing Comma: Use trailing commas for all multi-line collections and arguments for better diffs.
  • [ ] Imports Cleanup: Periodically run Alt+Enter → "Optimize Imports".

🧪 Verification Checklist

  • [ ] No Wildcards: All imports are explicit.
  • [ ] No Tabs: Only spaces.
  • [ ] EndOfLine: File ends with exactly one newline.
  • [ ] No Redundant Semicolons: Clean up all unnecessary ;.

🔗 Related Resources

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.