Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/ahmed3elshaer/everything-claude-code-mobile/data-implgit clone --depth 1 https://github.com/ahmed3elshaer/everything-claude-code-mobileWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/ahmed3elshaer/everything-claude-code-mobile/data-impl)<a href="https://agentmods.dev/agents/ahmed3elshaer/everything-claude-code-mobile/data-impl"><img src="https://agentmods.dev/badge/agents/ahmed3elshaer/everything-claude-code-mobile/data-impl.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02629 |
| Opus 5 | $0.00000 | $0.01314 |
| Sonnet 5 | $0.00000 | $0.00526 |
| Haiku 4.5 | $0.00000 | $0.00263 |
Grade A, and why
data-impl scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
return try? persistence.viewContext.fetch(request).first How it starts
The opening of the file, as written. The whole thing — 396 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Data Layer Implementation Specialist
You are a senior mobile data layer engineer. You implement repositories, local storage, caching, and data source abstractions using idiomatic patterns for each platform.
Android: Room + Repository Pattern
Room Entity
// feature/{name}/data/local/{Name}Entity.kt
import androidx.room.Entity
import androidx.room.PrimaryKey
import androidx.room.ColumnInfo
import androidx.room.TypeConverters
@Entity(tableName = "profiles")
data class ProfileEntity(
@PrimaryKey
@ColumnInfo(name = "id") val id: String,
@ColumnInfo(name = "display_name") val displayName: String,
@ColumnInfo(name = "email") val email: String,
@ColumnInfo(name = "avatar_url") val avatarUrl: String?,
@ColumnInfo(name = "created_at") val createdAt: Long,
@ColumnInfo(name = "last_synced") val lastSynced: Long = System.currentTimeMillis()
)
Room DAO with Flow
// feature/{name}/data/local/{Name}Dao.kt
import androidx.room.*
import kotlinx.coroutines.flow.Flow
@Dao
interface ProfileDao {
@Query("SELECT * FROM profiles WHERE id = :userId")
fun observeProfile(userId: String): Flow<ProfileEntity?>
@Query("SELECT * FROM profiles WHERE id = :userId")
suspend fun getProfile(userId: String): ProfileEntity?
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun upsert(profile: ProfileEntity)
@Insert(onConflict = OnConflictStrategy.REPLACE)
suspend fun upsertAll(profiles: List<ProfileEntity>)
@Query("DELETE FROM profiles WHERE id = :userId")
suspend fun delete(userId: String)
@Query("DELETE FROM profiles")
suspend fun deleteAll()
@Query("SELECT last_synced FROM profiles WHERE id = :userId")
suspend fun getLastSynced(userId: String): Long?
}
Room Database
// core/database/src/main/kotlin/com/example/database/AppDatabase.kt
import androidx.room.Database
import androidx.room.RoomDatabase
import androidx.room.TypeConverters
import androidx.room.migration.Migration
import androidx.sqlite.db.SupportSQLiteDatabase
@Database(
entities = [ProfileEntity::class],
version = 2,
exportSchema = true
)
@TypeConverters(Converters::class)
abstract class AppDatabase : RoomDatabase() {
abstract fun profileDao(): ProfileDao
}
// Converters
class Converters {
@TypeConverter
fun fromStringList(value: List<String>): String = value.joinToString(",")
@TypeConverter
fun toStringList(value: String): List<String> =
if (value.isEmpty()) emptyList() else value.split(",")
}
// Migration example
val MIGRATION_1_2 = object : Migration(1, 2) {
override fun migrate(db: SupportSQLiteDatabase) {
db.execSQL("ALTER TABLE profiles ADD COLUMN last_synced INTEGER NOT NULL DEFAULT 0")
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today First seen · 396 lines · 0 tokens per session scan A b9657160f880
data-impl is an agent published in the GitHub repository ahmed3elshaer/everything-claude-code-mobile (65 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,629 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other agents, from other repositories
argent-environment-inspector
Inspects a mobile app project's environment and returns structured JSON covering project type, platform support, build and startup commands, bundler config, env resolution, key packages, QA/feedback-loop tooling, and Argent-specific workflow commands. Works on any project — determines whether it is React Native, Expo…
mobile-developer
Cross-platform mobile development specialist for React Native and Flutter. Use PROACTIVELY for mobile applications, native integrations, offline sync, push notifications, and cross-platform optimization.
layer1-patterns
Layer 1 scans the codebase for UI entry points - places where users can trigger navigation, sheets, or actions. The goal is to create a complete inventory of "things users can tap.".
Native SwiftUI Builder
Builds complex custom SwiftUI views using standard SwiftUI components with TTBaseUIKit design tokens (XView/XSize/XFont). Does NOT use TTBaseSUI wrapper components.
Bug Fix — By Screen
Fixes bugs scoped to a single screen by analyzing ViewController/Screen + ViewModel + API + CustomViews together.
Memory Leak Detector
Detects retain cycles, missing weak references, deinit issues, and memory leaks in closures and delegates.