用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/drewsephski/fly --skill fly-conventions命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | fly-conventions |
| description | Development conventions and patterns for fly. JavaScript project with freeform commits. |
Generated from drewsephski/fly on 2026-08-18
This skill teaches Claude the development patterns and conventions used in fly.
Activate this skill when:
Follow these commit message conventions based on 1 analyzed commits.
Commit message example
Initialize Impeccable design context for portfolio
This project uses hybrid module organization.
| Element | Convention |
|---|---|
| Files | kebab-case |
| Functions | camelCase |
| Classes | PascalCase |
| Constants | SCREAMING_SNAKE_CASE |
Preferred import style
// Use relative imports
import { Button } from '../components/Button'
import { useAuth } from './hooks/useAuth'
Preferred export style
// Use named exports
export function calculateTotal() { ... }
export const TAX_RATE = 0.1
export interface Order { ... }
Standard error handling pattern
try {
const result = await riskyOperation()
return result
} catch (error) {
console.error('Operation failed:', error)
throw new Error('User-friendly message')
}
Based on analysis of the codebase, follow these practices:
This skill was auto-generated by ECC Tools. Review and customize as needed for your team.