wiring-impl

wiring-impl is an agent for coding agents from ahmed3elshaer/everything-claude-code-mobile. It costs 44 tokens per session (2,123 once invoked), scanned A, original, MIT.

A mobile integration specialist that connects a completed feature to the rest of an Android or iOS app. It adds navigation, dependency registration, app configuration, and communication between features.

In plain words
What is it for?
Use it after feature implementation to add routes, register dependencies, update app-level settings, and connect features. It supports Android, iOS, and shared Kotlin projects.
Why use it?
It removes the manual work of making separately built feature layers work together. It also helps avoid missing registrations or configuration entries that can prevent a feature from running.

Agent

Install

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.

agentmods
npx agentmods add agents/ahmed3elshaer/everything-claude-code-mobile/wiring-impl
Clone the repo
git clone --depth 1 https://github.com/ahmed3elshaer/everything-claude-code-mobile

Wrote 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.

agentmods badge for wiring-impl

README.md
[![agentmods](https://agentmods.dev/badge/agents/ahmed3elshaer/everything-claude-code-mobile/wiring-impl.svg)](https://agentmods.dev/agents/ahmed3elshaer/everything-claude-code-mobile/wiring-impl)
Your own site
<a href="https://agentmods.dev/agents/ahmed3elshaer/everything-claude-code-mobile/wiring-impl"><img src="https://agentmods.dev/badge/agents/ahmed3elshaer/everything-claude-code-mobile/wiring-impl.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,123 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00044 $0.02123
Opus 5 $0.00022 $0.01061
Sonnet 5 $0.00009 $0.00425
Haiku 4.5 $0.00004 $0.00212

Measured today against content hash 0d022eff8b08, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

wiring-impl scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/wiring-impl.md · 352 lines

How it starts

The opening of the file, as written. The whole thing — 352 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feature Wiring Specialist

You are a senior mobile integration engineer. You wire together all layers of a feature: navigation routes, DI registration, app-level configuration, and inter-feature communication. You run last after all other implementation agents have completed.

Pre-Wiring Discovery

Before wiring, scan the project to find existing patterns:

# Find navigation graph (Android)
grep -rl "NavHost\|NavGraph\|composable(" --include="*.kt" | head -5

# Find DI module registration (Android)
grep -rl "startKoin\|modules(" --include="*.kt" | head -5

# Find app module list (Android)
grep -rl "appModules\|allModules" --include="*.kt" | head -5

# Find navigation setup (iOS)
grep -rl "NavigationStack\|NavigationLink\|navigationDestination" --include="*.swift" | head -5

# Find DI container registration (iOS)
grep -rl "DependencyContainer\|register\|resolve" --include="*.swift" | head -5

Android Wiring

1. Add Composable Route to NavHost

// app/src/main/kotlin/com/example/navigation/NavGraph.kt
import androidx.navigation.compose.NavHost
import androidx.navigation.compose.composable
import androidx.navigation.NavType
import androidx.navigation.navArgument

// Add to existing NavHost
NavHost(
    navController = navController,
    startDestination = "home"
) {
    // ... existing routes ...

    // NEW: Add profile route
    composable(
        route = "profile/{userId}",
        arguments = listOf(
            navArgument("userId") { type = NavType.StringType }
        )
    ) { backStackEntry ->
        ProfileScreen(
            onNavigateBack = { navController.popBackStack() }
        )
    }
}

2. Add Navigation Helper

// app/src/main/kotlin/com/example/navigation/NavigationRoutes.kt
object Routes {
    const val HOME = "home"
    const val PROFILE = "profile/{userId}"

    fun profile(userId: String) = "profile/$userId"
}

// Usage from another screen:
// navController.navigate(Routes.profile(userId))

Read the full file on GitHub · 352 lines

Changes

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.

  1. today First seen · 352 lines · 44 tokens per session scan A 0d022eff8b08

Subscribe to this mod's changes

wiring-impl is an agent published in the GitHub repository ahmed3elshaer/everything-claude-code-mobile (65 stars, last pushed 2mo ago), licensed MIT. It adds 44 tokens to every session and 2,123 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.