一键导入
license-header-adder
Adds the standard open-source license header to new source files. Use involves creating new code files that require copyright attribution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Adds the standard open-source license header to new source files. Use involves creating new code files that require copyright attribution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
How to answer "how do I do X in Odoo?" questions. Use this skill whenever the user asks a how-to or operational question about Odoo (e.g. "how do I create an invoice?", "how do I install a module?"). Responds with an ordered list of concrete, version-aware steps grounded in the PageIndex documentation.
How to install a new Odoo module on the running instance. Use this skill when the user asks to install, enable, or activate an Odoo add-on or module. Covers both shell-based installation via odoo-bin and UI-based installation via the Apps menu.
Recursive prompt improvement with quality-driven iteration for Claude Code. Use when you need systematic, measurable improvement of LLM outputs through complexity routing, context extraction, and iterative refinement.
Automate browser interactions (navigation, form filling, screenshots, data extraction, web-app testing) using a persistent async Playwright session. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from pages. Activate on tasks mentioning "browser automation", "fill a form", "scrape", "screenshot a page", "test the web app", or "click through a site".
Create and refine specification files for Codex-driven implementation through CodeToolkit.
Reviews code changes and provides feedback, code style and best practices.
| name | license-header-adder |
| description | Adds the standard open-source license header to new source files. Use involves creating new code files that require copyright attribution. |
This skill ensures that all new source files have the correct copyright header.
Read the Template:
First, read the content of the header template file located at resources/HEADER.txt.
# Pseudocode for agent understanding
template_content = view_file("resources/HEADER.txt")
Prepend to File:
When creating a new file (e.g., .py, .java, .js, .ts, .go), prepend the target_file content with the template content.
Modify Comment Syntax:
/* ... */ block as is.# comments.<!-- ... -->.If the user asks to "create a python script for hello world", you should generate:
# Copyright (c) 2024 Google LLC
# ... (rest of license text) ...
def main():
print("Hello World")