بنقرة واحدة
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');"
}
}