Discover a curated repository of specialized skills for AI coding agents, enhancing productivity and efficiency in development tasks. This collection, created by Yuval Avidani, is designed to help developers using AI tools like GitHub Copilot and others.
claude install hoodini/ai-agents-skillsDiscover a curated repository of specialized skills for AI coding agents, enhancing productivity and efficiency in development tasks. This collection, created by Yuval Avidani, is designed to help developers using AI tools like GitHub Copilot and others.
Enhancing code suggestions for developers
Automating repetitive coding tasks
Improving code quality with AI assistance
Facilitating faster debugging processes
claude install hoodini/ai-agents-skillsgit clone https://github.com/hoodini/ai-agents-skillsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Find a specialized AI coding skill for [TASK] in [PROGRAMMING_LANGUAGE]. Provide a detailed description of the skill, its use cases, and how it can be implemented with [AI_TOOL].
# AI Coding Skill: Database Schema Generator
**Description**: This skill helps developers generate comprehensive database schemas based on given requirements. It's particularly useful for creating relational databases with complex relationships.
**Use Cases**:
- Rapid prototyping of database structures
- Generating SQL scripts for schema creation
- Visualizing database relationships
**Implementation with GitHub Copilot**:
1. Describe your database requirements in a comment
2. Ask Copilot to generate the schema
3. Review and refine the output
```sql
-- Example output for an e-commerce database
CREATE TABLE users (
user_id INT PRIMARY KEY,
username VARCHAR(50) UNIQUE NOT NULL,
email VARCHAR(100) UNIQUE NOT NULL
);
CREATE TABLE products (
product_id INT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
price DECIMAL(10,2) NOT NULL
);
CREATE TABLE orders (
order_id INT PRIMARY KEY,
user_id INT,
order_date TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
```Code hosting and collaboration platform for developers
Leverage AI for efficient document review and comprehensive e-discovery solutions.
Gain insights into SaaS spending with real-time analytics and budget forecasting tools.
Set goals, track progress, and manage tasks
Customer feedback management made simple
Design, document, and generate code for APIs with interactive tools for developers.
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan