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 skills add tecbay/laravel-ai-skills --skill native-php-mobilegit clone --depth 1 https://github.com/tecbay/laravel-ai-skillsWrote 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/skills/tecbay/laravel-ai-skills/native-php-mobile)<a href="https://agentmods.dev/skills/tecbay/laravel-ai-skills/native-php-mobile"><img src="https://agentmods.dev/badge/skills/tecbay/laravel-ai-skills/native-php-mobile/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/tecbay/laravel-ai-skills/native-php-mobile"><img src="https://agentmods.dev/badge/skills/tecbay/laravel-ai-skills/native-php-mobile.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00088 | $0.02934 |
| Opus 5 | $0.00044 | $0.01467 |
| Sonnet 5 | $0.00018 | $0.00587 |
| Haiku 4.5 | $0.00009 | $0.00293 |
Grade A, and why
native-php-mobile 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 317 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NativePHP for Mobile v3
NativePHP for Mobile runs full Laravel apps natively on iOS and Android — no web server required. PHP 8.4 is embedded in Swift/Kotlin shells; native APIs are accessed via plugins (Composer packages with PHP facades + native code).
Package: nativephp/mobile ^3.0 | Namespace: Native\Mobile\ | Requires: PHP 8.3+, Laravel 11+
Quick Start
Fastest path — Jump (no Xcode/Android Studio)
# New app
laravel new my-app --using=nativephp/mobile-starter
cd my-app && php artisan native:jump
# Existing Laravel app
composer require nativephp/mobile
php artisan native:jump
Install Jump on your phone, scan the QR code. See jump.md.
Full native build
composer require nativephp/mobile
# Set in .env BEFORE install:
# NATIVEPHP_APP_ID=com.yourcompany.yourapp
php artisan native:install
php artisan native:run ios # or android
Test in browser first, then on device. The nativephp/ directory is ephemeral — add to .gitignore; use native:install --force on upgrades.
Architecture
- Custom PHP 8.4 binary + NativePHP extension embedded in native shell
- Laravel app zipped and bundled; extracted on first boot (or every boot in
DEBUGversion) - Migrations run automatically on app start
- Native APIs called from PHP via plugin facades; async ops use events
- EDGE (v3): Blade components render as truly native UI (nav bars, etc.)
NativeServiceProvider
Plugins must be registered in app/Providers/NativeServiceProvider.php:
php artisan vendor:publish --tag=nativephp-plugins-provider
php artisan native:plugin:register vendor/plugin-name
php artisan native:plugin:list
Core Facades
| Facade | Purpose |
|---|---|
Camera |
Photo capture |
Biometrics |
Face ID / fingerprint |
Dialog |
Toasts, alerts |
Browser |
In-app browser, OAuth |
PushNotifications |
FCM push tokens |
SecureStorage |
Keychain/Keystore |
Network |
Connectivity status |
System |
Platform checks, flashlight |
Haptics |
Vibration |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/_index.md 44 B
- references/concepts/_index.md 47 B
- references/concepts/authentication.md 4.6 KB
- references/concepts/databases.md 5.5 KB
- references/concepts/deep-links.md 3.5 KB
- references/concepts/push-notifications.md 3.2 KB
- references/concepts/queues.md 2.3 KB
- references/concepts/security.md 3.8 KB
- references/core-plugins.md 2.8 KB
- references/edge-components/_index.md 54 B
- references/edge-components/bottom-nav.md 1.2 KB
- references/edge-components/icons.md 8.1 KB
- references/edge-components/introduction.md 4.3 KB
- references/edge-components/side-nav.md 2.3 KB
- references/edge-components/top-bar.md 1.8 KB
- references/facades-and-commands.md 4.3 KB
- references/getting-started/_index.md 40 B
- references/getting-started/changelog.md 2.6 KB
- references/getting-started/commands.md 8.5 KB
- references/getting-started/configuration.md 13 KB
- references/getting-started/contributing.md 3.6 KB
- references/getting-started/deployment.md 17 KB
- references/getting-started/development.md 7.4 KB
- references/getting-started/environment-setup.md 5.0 KB
- references/getting-started/installation.md 3.8 KB
- references/getting-started/introduction.md 2.8 KB
- references/getting-started/quick-start.md 1.6 KB
- references/getting-started/roadmap.md 1.1 KB
- references/getting-started/support-policy.md 1013 B
- references/getting-started/upgrade-guide.md 5.8 KB
- references/getting-started/versioning.md 2.5 KB
- references/plugins/_index.md 46 B
- references/plugins/advanced-configuration.md 13 KB
- references/plugins/best-practices.md 12 KB
- references/plugins/bridge-functions.md 3.7 KB
- references/plugins/core/_index.md 53 B
- references/plugins/core/biometrics.md 93 B
- references/plugins/core/browser.md 87 B
- references/plugins/core/camera.md 85 B
- references/plugins/core/device.md 78 B
- references/plugins/core/dialog.md 85 B
- references/plugins/core/file.md 76 B
- references/plugins/core/firebase.md 195 B
- references/plugins/core/geolocation.md 83 B
- references/plugins/core/microphone.md 104 B
- references/plugins/core/network.md 87 B
- references/plugins/core/scanner.md 79 B
- references/plugins/core/secure-storage.md 146 B
- references/plugins/core/share.md 77 B
- references/plugins/core/system.md 85 B
- references/plugins/creating-plugins.md 12 KB
- references/plugins/events.md 2.2 KB
- references/plugins/introduction.md 2.6 KB
- references/plugins/lifecycle-hooks.md 3.7 KB
- references/plugins/permissions-dependencies.md 6.3 KB
- references/plugins/using-plugins.md 3.7 KB
- references/plugins/validation-testing.md 2.3 KB
- references/the-basics/_index.md 49 B
- references/the-basics/app-icon.md 646 B
- references/the-basics/assets.md 1.8 KB
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.
- 9d ago First seen · 317 lines · 88 tokens per session scan A b2cbb6e6d552
native-php-mobile is a skill published in the GitHub repository tecbay/laravel-ai-skills (2 stars, last pushed 2mo ago), licensed MIT. It adds 88 tokens to every session and 2,934 once invoked, about $0.0004 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-31.
Other skills, from other repositories
laravel-specialist
Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…
kotlin-specialist
Provides idiomatic Kotlin implementation patterns including coroutine concurrency, Flow stream handling, multiplatform architecture, Compose UI construction, Ktor server setup, and type-safe DSL design. Use when building Kotlin applications requiring coroutines, multiplatform development, or Android with Compose.…
swiftui-dev
Use this skill for SwiftUI development, architecture, structure, performance, and Apple native app profiling. It combines.
mobiai-kmp
Use when working on a Kotlin Multiplatform project — shared code, expect/actual declarations, platform-specific implementations, building and testing.
llamaindex-development
Expert guidance for LlamaIndex development including RAG applications, vector stores, document processing, query engines, and building production AI applications.
maui-auth-secure-storage
Implement MAUI auth and secure storage. USE FOR: WebAuthenticator/MSAL, OAuth/OIDC redirects, Entra ID, callback URIs, Android intent filters, CFBundleURLTypes, token cache cleanup, SecureStorage, logout, Blazor Hybrid auth handoff. DO NOT USE FOR: architecture, API retries/offline data, UI debugging.