---
slug: "ai-coding-skills"
source_type: "readme"
source_url: "https://cdn.jsdelivr.net/gh/HybridTalentComputing/ai-coding-skills@main/README.md"
repo: "https://github.com/HybridTalentComputing/ai-coding-skills"
source_file: "README.md"
branch: "main"
---
# AI Coding Skills Collection

A curated collection of Agent Skills for extending Claude's capabilities in AI-assisted software development.

**[English](https://github.com/HybridTalentComputing/ai-coding-skills/blob/HEAD/README.md)** | **[中文](https://github.com/HybridTalentComputing/ai-coding-skills/blob/HEAD/README.zh-CN.md)**

## Overview

This repository contains multiple Agent Skills that extend Claude's capabilities for specialized development tasks. Each skill provides structured workflows, best practices, and tools for specific domains.

## Included Skills

### 1. i18n-translation
Internationalization and translation workflow automation.
- Extract translatable strings from source code
- Generate and manage translation files (JSON, YAML, etc.)
- Synchronize translation keys across multiple languages
- Detect missing or outdated translations
- Validate translation file syntax

**Location**: `skills/i18n-translation/`

### 2. deepwiki
Automated documentation generation and codebase analysis.
- Generate comprehensive documentation from code
- Create API documentation, architecture docs, and guides
- Analyze code patterns and best practices
- Produce structured reports for various project types
- Deep codebase research and analysis

**Location**: `skills/deepwiki/`

## Best Practices Guide

This repository also includes a comprehensive **Agent Skills Best Practices** guide based on Anthropic's official documentation:

- Progressive disclosure design patterns
- Writing effective skill descriptions
- Choosing the right content types (instructions, scripts, resources)
- Security best practices
- Platform constraints and portability
- Skill lifecycle management

**Location**: `BEST_PRACTICES.md` | [中文版](https://github.com/HybridTalentComputing/ai-coding-skills/blob/HEAD/BEST_PRACTICES_CN.md)

## Getting Started

### Official Documentation
- [Agent Skills Overview](https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview) - Official Anthropic documentation
- [Official Skills Repository](https://github.com/anthropics/skills) - Reference implementations
- [Skills Explained](https://claude.com/blog/skills-explained) - How Skills compare to Prompts, Projects, MCP, and Subagents
- [View This Collection](https://skills.sh/HybridTalentComputing/ai-coding-skills) - Online skill viewer

### Installation

#### Quick Install via npm (Recommended)

```bash
# Install all skills in this collection
npx skills install HybridTalentComputing/ai-coding-skills

# Or install individual skills
npx skills install HybridTalentComputing/ai-coding-skills#i18n-translation
npx skills install HybridTalentComputing/ai-coding-skills#deepwiki-skill
```

### Supported IDEs

These skills are compatible with:

- **Claude Code** - Full support
- **Codex** - Full support
- **Cursor** - Full support
- **OpenCode** - Full support
- **Trae** - Full support

Once installed, skills are automatically loaded when relevant to your work context.

## Repository Structure

```
ai-coding-skill/
├── README.md                    # This file
├── README.zh-CN.md              # Chinese version
├── CLAUDE.md                    # Guidance for Claude Code
├── BEST_PRACTICES.md            # Agent Skills best practices guide
├── BEST_PRACTICES_CN.md         # Best practices (Chinese)
├── LICENSE                      # Apache License 2.0
└── skills/                      # Skills directory
    ├── i18n-translation/        # Internationalization skill
    │   ├── SKILL.md            # Main skill instructions
    │   └── references/         # Reference materials
    │       ├── workflow.md
    │       ├── patterns.md
    │       ├── namespaces.md
    │       ├── modular-files.md
    │       └── checklist.md
    └── deepwiki/                # Documentation generation skill
        ├── SKILL.md            # Main skill instructions
        ├── README.md           # Skill documentation
        ├── assets/             # Templates and resources
        │   ├── document_templates/
        │   └── report_templates/
        └── references/         # Reference materials
            ├── deep_research_prompts.md
            ├── documentation_standards.md
            ├── code_patterns.md
            └── analysis_framework.md
```

## Usage Examples

### i18n-translation Skill

**Creating Translation Files:**

```json
// en.json
{
  "welcome": "Welcome to our application",
  "goodbye": "Goodbye!"
}

// zh-CN.json
{
  "welcome": "欢迎使用我们的应用",
  "goodbye": "再见！"
}
```

### deepwiki Skill

**Generate Documentation:**
- "Create API documentation for the authentication service"
- "Analyze the codebase and generate architecture documentation"
- "Document the component structure of the payment module"

**Deep Code Analysis:**
- "Research and document the data flow patterns in this project"
- "Create a comprehensive troubleshooting guide for the deployment process"

## Contributing

Contributions are welcome! Areas for improvement:

- **New Skills**: Add specialized skills for other development workflows
- **Enhanced Examples**: Improve existing skill examples and templates
- **Documentation**: Enhance best practices and guides
- **Testing**: Add validation scripts and test cases

When contributing:

1. Follow existing code style and patterns
2. Add comprehensive documentation for new skills
3. Update README files as needed
4. Ensure cross-platform compatibility

## License

This project is licensed under the Apache License 2.0 - see the [LICENSE](https://github.com/HybridTalentComputing/ai-coding-skills/tree/HEAD/LICENSE) file for details.
