ワンクリックで
web-file-generator
Converts web application requests into a JSON command for execution by runtime/web_renderer.py.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Converts web application requests into a JSON command for execution by runtime/web_renderer.py.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generates creative, memorable, and relevant brand names based on a user's description and preferences.
Generates professional and well-structured reports from various data formats based on user instructions.
Converts project initialization requests into a JSON command for runtime/project_initializer.py.
Activates when the user wants to design, draft, or bootstrap a brand-new custom agent SKILL.md file, create its directory structure, and register it in the central SkillOS registry.
| name | web-file-generator |
| description | Converts web application requests into a JSON command for execution by runtime/web_renderer.py. |
This skill specializes in converting a user's web application requirements into a complete set of production-quality source files packaged as a single JSON command. The resulting JSON is designed to be executed by the runtime/web_renderer.py script.
name: Always set to "run_python_script".script: Always set to "runtime/web_renderer.py".output_folder: Use the user-specified path, or default to "/kaggle/working/web_output".main_file: The filename of the primary entry point (e.g., "index.html").generated_files: An object where keys are filenames and values are the full string contents of those files.{
"name": "run_python_script",
"script": "runtime/web_renderer.py",
"output_folder": "/kaggle/working/web_output",
"main_file": "index.html",
"generated_files": {
"index.html": "<html>...</html>",
"style.css": "body { ... }",
"script.js": "console.log('Hello');"
}
}