一键导入
skill-creator
Guides users through creating, testing, and publishing new skills with proper SKILL.md format and best practices
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guides users through creating, testing, and publishing new skills with proper SKILL.md format and best practices
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyzes project structure, module dependencies, imports, and entry points to generate architecture diagrams in Mermaid format
Analyzes ETL and data pipeline code for optimization opportunities across Python (Pandas, PySpark), Rust (polars, datafusion), SQL, and general pipeline descriptions
Validates environment variable configurations and config files (YAML, TOML, JSON, .env) for missing required variables, type mismatches, deprecated keys, naming convention violations, secret exposure risks, and invalid value ranges
Analyzes code for performance bottlenecks including N+1 queries, O(n^2) or worse algorithms, unnecessary allocations, sync I/O in async contexts, excessive cloning, missing caching opportunities, and large payload transfers. Supports Rust, Python, TypeScript, and Go.
Analyzes, improves, and restructures LLM prompts for clarity, efficiency, and reliability
Analyzes source code for common security vulnerabilities including SQL injection, XSS, command injection, hardcoded secrets, insecure deserialization, path traversal, and SSRF
| name | skill-creator |
| description | Guides users through creating, testing, and publishing new skills with proper SKILL.md format and best practices |
| version | 1.0.0 |
| author | go-on-team |
| tags | ["skill","meta","creation","scaffolding","template","publishing"] |
| min_go_on_version | 1.0.0 |
A meta-skill that helps users design, scaffold, test, and publish new Go-On skills. Walks through the complete skill lifecycle: ideation → YAML frontmatter → input/output schema design → example generation → local testing → GitHub PR submission.
SKILL.md with proper YAML frontmatter, description, input schema table, and realistic JSON examplesSkillExecuteTool to verify the skill works end-to-endskills/ directory in the Go-On repository| Parameter | Type | Description |
|---|---|---|
name | string | Skill name (kebab-case, 3-50 chars) |
description | string | One-line description of what the skill does |
inputs | array | Array of input parameter definitions: [{"name": "...", "type": "...", "description": "..."}] |
tags | string[] | Optional: categorization tags for the skill market |
language | string | Optional: primary language the skill targets |
include_example | boolean | Optional: include a realistic usage example (default: true) |
{
"name": "translation-helper",
"description": "Translates code comments, documentation, and user-facing strings between languages while preserving code structure",
"inputs": [
{"name": "text", "type": "string", "description": "Text to translate"},
{"name": "source_lang", "type": "string", "description": "Source language code (e.g. zh-CN)"},
{"name": "target_lang", "type": "string", "description": "Target language code (e.g. en)"},
{"name": "preserve_code", "type": "boolean", "description": "Preserve code blocks and inline code"}
],
"tags": ["translation", "i18n", "documentation", "localization"],
"language": "general"
}
Example output (abbreviated):
---
name: translation-helper
description: Translates code comments, documentation, and user-facing strings between languages while preserving code structure
version: 1.0.0
author: [your-github-username]
tags: [translation, i18n, documentation, localization]
min_go_on_version: 1.0.0
---
# Translation Helper Skill
Translates code comments, documentation, and user-facing strings between languages while preserving code structure, markdown formatting, and template syntax.
## Input Schema
| Parameter | Type | Description |
|-----------|------|-------------|
| `text` | string | Text to translate |
| `source_lang` | string | Source language code (e.g. zh-CN) |
| `target_lang` | string | Target language code (e.g. en) |
| `preserve_code` | boolean | Preserve code blocks and inline code |
## Example
```json
{
"text": "// 计算用户的年龄(从出生日期)\nfn calculate_age(birth_date: NaiveDate) -> u32 { ... }",
"source_lang": "zh-CN",
"target_lang": "en",
"preserve_code": true
}
skills/translation-helper/SKILL.mdicon.png (optional, max 128×128)SkillExecuteTool("translation-helper", {...})