بنقرة واحدة
project-initializer
Converts project initialization requests into a JSON command for runtime/project_initializer.py.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Converts project initialization requests into a JSON command for runtime/project_initializer.py.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
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.
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.
Converts web application requests into a JSON command for execution by runtime/web_renderer.py.
استنادا إلى تصنيف SOC المهني
| name | project-initializer |
| description | Converts project initialization requests into a JSON command for runtime/project_initializer.py. |
This skill processes a user's project initialization request and generates a JSON command to execute runtime/project_initializer.py.
The user's project initialization request will be parsed according to these rules:
Project Name (project_name):
Project Root (project_root):
/kaggle/working.Directories (directories):
['src', 'tests'].The skill will always produce a single JSON object with the following structure:
{
"name": "run_python_script",
"script": "runtime/project_initializer.py",
"args": {
"project_name": "<extracted_or_default_project_name>",
"project_root": "<extracted_or_default_project_root>",
"directories": ["<unique_directory_name_1>", "<unique_directory_name_2>", "..."]
}
}
The args field will always be a JSON object. Only the values within args will vary based on the user's request; the structure of the JSON object itself, including name and script fields, will remain constant.
User Request: "Initialize a new web app called MyWebApp in /home/user/projects with folders for models, views, and controllers."
Expected JSON Output:
{
"name": "run_python_script",
"script": "runtime/project_initializer.py",
"args": {
"project_name": "MyWebApp",
"project_root": "/home/user/projects",
"directories": ["models", "views", "controllers"]
}
}