一键导入
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 职业分类
Evaluate AWS costs and generate actionable optimization suggestions. Covers EC2, S3, RDS, Lambda, ECS/EKS, and data transfer. Use when analyzing AWS spending, right-sizing resources, choosing pricing models (RI/Savings Plans/Spot), implementing tagging strategies, setting budget alerts, or auditing infrastructure for cost waste.
Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start optimization.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Scaffolds a new custom Tool class for the ai-parrot Tool platform.
Svelte 5 + SvelteKit development with structural composition patterns. Use when building dashboards, widget systems, or component libraries where structural consistency matters. Emphasizes base components with behavior composition (strategies), OOP for state machines, and Svelte 5 runes. Triggers on Svelte/SvelteKit work requesting widgets, dashboards, reusable component systems, or when user prefers OOP patterns over pure functional composition.
| 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")