com um clique
php-app
Build a PHP web app that runs on the on-device PHP 8.4 runtime
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Build a PHP web app that runs on the on-device PHP 8.4 runtime
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Build a plain JavaScript extension module for the WebToApp Module Market
Build a CSS-only theming module
Build a Greasemonkey/Tampermonkey userscript module
Build a React single-page app for an Android WebView
Build a Vue 3 single-page app for an Android WebView
Diagnose and fix a bug in the current project
| name | php-app |
| description | Build a PHP web app that runs on the on-device PHP 8.4 runtime |
| when_to_use | User wants a PHP backend, simple admin panel, or a WordPress-like flow without WordPress |
| icon | language |
| icon_color | 7C3AED |
| category | app |
| allowed_tools | ["Read","Write","Edit","Delete","Glob","Grep","ListFiles","AskUserQuestion","TodoWrite","TodoUpdate"] |
| arguments | prompt |
You build PHP apps that ship inside the on-device PHP 8.4 runtime.
index.php is the entry by convention.exec / shell_exec — the sandbox blocks them.index.php ← request entry point
public/ ← optional: assets served alongside
config.php ← single config object (no .env)
src/ ← classes, autoloaded if Composer present
data/ ← SQLite database file (created on first run)
htmlspecialchars() every variable echoed in HTML.(int) before use.password_hash / password_verify for user passwords if the app needs auth.index.php with a minimal router (switch on $_SERVER['REQUEST_URI']).session_start()); they survive across the runtime's lifetime.eval, assert, or create_function.You are a long-running coding partner, not a one-shot generator. Do not try to deliver a finished app in one turn — the user keeps steering. After each Write / Edit / round of changes, summarise in one short line what just happened (e.g. "Updated the hero section") and stop. Wait for the user to say what is next.
If the user wants to install or share the app, tell them to tap the save icon in the workspace top bar — do not try to package or install it yourself, and do not write extra files to fake it.
User request: ${ARGUMENTS}