rails-instructions rails-mobile.instructions.md

rails-instructions rails-mobile.instructions.md is an instructions file for GitHub Copilot from levifig/rails-instructions. It costs 960 tokens per session, scanned A, original, MIT.

A set of Hotwire Native guidelines for showing web content inside native iOS and Android app shells. The web pages appear in a WebView while the mobile app supplies native navigation and transitions.

In plain words
What is it for?
Designing URLs, navigation rules, WebView screens, external-link handling, and platform-specific configuration for Hotwire Native applications.
Why use it?
It helps one web application work across browsers and mobile apps without rebuilding every screen separately. The guidelines explain when links and external pages should use native behavior.

Instructions file for GitHub Copilot

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 instructions/levifig/rails-instructions/rails-mobile
Clone the repo
git clone --depth 1 https://github.com/levifig/rails-instructions

Made for: GitHub Copilot.

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 rails-instructions rails-mobile.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/levifig/rails-instructions/rails-mobile.svg)](https://agentmods.dev/instructions/levifig/rails-instructions/rails-mobile)
Your own site
<a href="https://agentmods.dev/instructions/levifig/rails-instructions/rails-mobile"><img src="https://agentmods.dev/badge/instructions/levifig/rails-instructions/rails-mobile.svg" alt="Measured on agentmods" height="20"></a>
Per session 960 This file is loaded in full into every session.
When invoked 960 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original 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.1 $0.00960 $0.00960
Opus 5 $0.00480 $0.00480
Sonnet 5 $0.00192 $0.00192
Haiku 4.5 $0.00096 $0.00096

Measured 5d ago against content hash 90075f958ed9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

rails-instructions rails-mobile.instructions.md 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 5d ago.

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.

.github/instructions/rails-mobile.instructions.md · 144 lines

How it starts

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

Hotwire Native Guidelines

Core Concepts

  • Hotwire Native displays web content in a native shell with platform-specific navigation
  • Web content renders in a WebView with native-feeling transitions and behaviors
  • Link navigation is intercepted and handled by the native adapter
  • Build once for the web, deploy simultaneously to web and native mobile apps
  • Progressively enhance with native components where higher fidelity is needed
  • Design web content to work across web, iOS, and Android
  • Links between pages become native screen transitions automatically
  • External links open in an in-app browser (SFSafariViewController on iOS, Custom Tabs on Android)
  • Use data-turbo-action="replace" to replace the current screen instead of pushing a new one
  • Ensure all screens are accessible via URLs for proper native navigation

Path Configuration

  • Define platform-specific navigation rules in a JSON configuration file
  • Host configuration files at versioned URLs (e.g., /configurations/ios_v1.json)
  • Include both local (bundled) and remote (server-hosted) configurations
  • Use regex patterns to match URLs and apply specific behaviors
  • Configuration example:
{
  "settings": {
    "feature_flags": [
      {
        "name": "enable_new_feature",
        "enabled": true
      }
    ]
  },
  "rules": [
    {
      "patterns": ["/modal/.*"],
      "properties": {
        "context": "modal"
      }
    },
    {
      "patterns": ["/tabs/.*"],
      "properties": {
        "presentation": "refresh"
      }
    }
  ]
}

Bridge Components

  • Use Bridge Components for web-to-native communication
  • Components have both web (Stimulus) and native (Swift/Kotlin) counterparts
  • Register component handlers in your native app and attach web controllers in HTML
  • Use for native UI elements like top bar buttons, action sheets, and platform APIs
  • Web component implementation example:
// app/javascript/controllers/native_button_controller.js
import { Controller } from "@hotwired/stimulus";
import { BridgeComponent } from "@hotwired/bridge";

export default class extends Controller {
  static values = { title: String, style: String };

  connect() {
    this.bridge = new BridgeComponent("button", this);
    this.bridge.send("connect", {
      title: this.titleValue,
      style: this.styleValue || "default",
    });
  }

  disconnect() {
    this.bridge.send("disconnect");
  }

  handleTap(message) {
    // Handle tap event from native
    const form = this.element.closest("form");
    if (form) form.requestSubmit();
  }
}

Read the full file on GitHub · 144 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. 5d ago First seen · 144 lines · 960 tokens per session scan A 90075f958ed9

Subscribe to this mod's changes

rails-instructions rails-mobile.instructions.md is an instructions file published in the GitHub repository levifig/rails-instructions (54 stars, last pushed 1y ago), licensed MIT. It adds 960 tokens to every session, about $0.0048 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-08-30.