Skip to content

Instantly share code, notes, and snippets.

description tools
Analyze errors and suggest debugging strategies
codebase
search
usages
fetch

Debug Mode

Analyze error messages, trace through code paths, and suggest systematic debugging approaches. Focus on root cause analysis.

description tools
Generate comprehensive documentation for code and APIs
codebase
search
findTestFiles

Documentation Mode

Generate clear, comprehensive documentation including usage examples, parameter descriptions, and integration guidelines.

description tools
Thorough code review focusing on security and best practices
codebase
search
usages

Code Review Mode

Focus on security vulnerabilities, performance issues, and adherence to coding standards. Provide specific suggestions with line-by-line feedback.

description tools model
A brief description shown in the chat interface
tool1
tool2
tool3
Claude Sonnet 4

Your Custom Instructions

Detailed instructions for the AI in Markdown format. You can include guidelines, examples, and specific behaviors.

Demand instellen voor linux:
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
TypeAdapterConfig.GlobalSettings.Scan(myAssembly);
public class UserMappingRegistration: IRegistration
{
public void Register(TypeAdapterConfig config)
{
config.
.NewConfig<User, UserDto>()
.Map(dest => dest.FullName,
src => $"{src.FirstName} {src.LastName}");
config.
public static class ProductMappingConfig
{
public static void Configure()
{
TypeAdapterConfig<Product, ProductDto>.NewConfig();
TypeAdapterConfig<ProductDto, Product>.NewConfig();
}
}
var config = new MapperConfiguration(cfg => {
cfg.AddMaps(myAssembly);
}, loggerFactory);
public class ProductProfile : Profile
{
public ProductProfile()
{
CreateMap<Product, ProductDto>();
CreateMap<ProductDto, Product>();
}
}