🎯

generating-tests

🎯Skill

from thapaliyabikendra/ai-artifacts

VibeIndex|
What it does

generating-tests skill from thapaliyabikendra/ai-artifacts

generating-tests

Installation

Install skill:
npx skills add https://github.com/thapaliyabikendra/ai-artifacts --skill generating-tests
1
Last UpdatedJan 23, 2026

Skill Details

SKILL.md

Overview

# AI Artifacts

A comprehensive collection of Claude Code agents, skills, and commands for ABP Framework development.

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)

[![ABP Framework](https://img.shields.io/badge/ABP%20Framework-8.x%20%7C%209.x%20%7C%2010.x-purple)](https://abp.io)

Overview

AI Artifacts provides AI-powered development assistance for ABP Framework projects through:

| Component | Count | Description |

|-----------|-------|-------------|

| Agents | 11 | Specialized AI agents for different development roles |

| Skills | 47 | Domain expertise and coding patterns |

| Commands | 27 | Slash commands for common development tasks |

Quick Start

Installation

Choose your preferred installation method:

#### Option 1: Git Clone + Install Script (Recommended)

```bash

# Clone the toolkit

git clone https://github.com/thapaliyabikendra/ai-artifacts.git

# Install to your project

cd ai-artifacts

./scripts/install.sh /path/to/your/project

# On Windows (PowerShell)

.\scripts\install.ps1 -TargetPath "C:\Projects\YourProject"

```

#### Option 2: npx (No Clone Required)

```bash

npx github:thapaliyabikendra/ai-artifacts install .

```

#### Option 3: One-Line Install (Unix/macOS/WSL)

```bash

curl -sSL https://raw.githubusercontent.com/thapaliyabikendra/ai-artifacts/main/scripts/install.sh | bash -s -- /path/to/project

```

#### Option 4: Manual Installation

  1. Clone or download this repository
  2. Copy the .claude/ directory to your project root
  3. Add the toolkit section to your CLAUDE.md (see fragments/claude-md-section.md)

Verify Installation

After installation, your project should have:

```

your-project/

β”œβ”€β”€ .claude/

β”‚ β”œβ”€β”€ agents/ # 11 AI agents

β”‚ β”œβ”€β”€ skills/ # 47 skills with patterns

β”‚ β”œβ”€β”€ commands/ # 27 slash commands

β”‚ β”œβ”€β”€ knowledge/ # Knowledge base

β”‚ β”œβ”€β”€ guidelines/ # Best practices

β”‚ β”œβ”€β”€ GUIDELINES.md # Main usage guide

β”‚ └── ...

└── CLAUDE.md # Updated with toolkit references

```

What's Included

Agents

AI agents specialized for different development tasks:

| Category | Agents |

|----------|--------|

| Architects | backend-architect, business-analyst |

| Engineers | abp-developer, react-developer, devops-engineer |

| Reviewers | abp-code-reviewer, react-code-reviewer, qa-engineer, security-engineer |

| Specialists | debugger, database-migrator |

Usage:

```

Use the abp-developer agent to implement the Patient entity

```

Skills

Domain expertise automatically applied based on context:

| Category | Key Skills |

|----------|------------|

| ABP Framework | abp-framework-patterns, abp-entity-patterns, abp-service-patterns |

| Database | efcore-patterns, linq-optimization-patterns |

| Validation | fluentvalidation-patterns |

| Security | security-patterns, openiddict-authorization |

| Testing | xunit-testing-patterns, e2e-testing-patterns |

| Frontend | react-development-patterns, typescript-advanced-types |

Commands

Slash commands for common tasks:

| Command | Description |

|---------|-------------|

| /feature:add-feature | End-to-end feature development with SDLC automation |

| /generate:entity | Scaffold complete ABP entity with all layers |

| /generate:migration | Generate EF Core migration with review |

| /tdd:tdd-cycle | Execute TDD red-green-refactor workflow |

| /debug:smart-debug | AI-powered root cause analysis |

| /review:permissions | Audit ABP permission definitions |

| /review:pre-push | Fast security scan before git push |

Usage:

```

/generate:entity Patient --properties "Name:string,Email:string,DateOfBirth:DateTime"

```

Usage Guide

Agent Chains

Common workflows using multiple agents in sequence:

| Workflow | Agent Chain |

|----------|-------------|

| Full Feature | business-analyst β†’ backend-architect β†’ abp-developer β†’ `qa