aibuilder.sh
SkillsAgentsCommandsPlugins
LearnStats
aibuilder.sh

Composable building blocks for Claude Code

Built with BrainGrid

Filters

Filters1

Type

Task

Filters1

Type

Task

author:grafikart
2 artifacts found
agentby grafikart
6h ago

commit-prep

Use this agent when you need to prepare code for committing. This includes formatting PHP files, checking TypeScript types, running static analysis, reviewing recent changes, and generating a commit message. Typical triggers include: finishing a feature, completing a bug fix, or when the user asks to prepare, finalize, or commit their changes.\n\nExamples:\n\n<example>\nContext: The user has just finished implementing a new feature.\nuser: "J'ai terminé la fonctionnalité, prépare le commit"\nassistant: "Je vais utiliser l'agent commit-prep pour préparer le prochain commit."\n<Task tool call to launch commit-prep agent>\n</example>\n\n<example>\nContext: The user wants to commit their recent work.\nuser: "Prépare le commit s'il te plaît"\nassistant: "Je lance l'agent commit-prep pour formatter le code, vérifier les types et préparer le message de commit."\n<Task tool call to launch commit-prep agent>\n</example>\n\n<example>\nContext: The user has made several changes and wants to finalize them.\nuser: "C'est bon pour moi, on peut commit"\nassistant: "Parfait, je vais utiliser l'agent commit-prep pour vérifier et préparer le commit."\n<Task tool call to launch commit-prep agent>\n</example>

1 repos0 installs
$npx ai-builder add agent grafikart/commit-prep
agentby grafikart
6h ago

phpstan-fixer

Use this agent when you need to run PHPStan static analysis on the codebase and automatically fix any errors it detects. This includes type errors, undefined variables, incorrect method calls, missing return types, and other static analysis issues.\n\nExamples:\n\n<example>\nContext: User wants to ensure code quality before committing changes.\nuser: "Can you check my code for any type errors?"\nassistant: "I'll use the phpstan-fixer agent to run PHPStan and fix any errors found."\n<commentary>\nSince the user wants to check for type errors, use the Task tool to launch the phpstan-fixer agent to run PHPStan analysis and fix issues.\n</commentary>\n</example>\n\n<example>\nContext: User has just completed a significant refactoring and wants to ensure no static analysis issues were introduced.\nuser: "I've finished refactoring the User model, please make sure everything is correct"\nassistant: "I'll run the phpstan-fixer agent to analyze your changes and fix any static analysis issues."\n<commentary>\nAfter significant code changes, use the Task tool to launch the phpstan-fixer agent to ensure no type errors or static analysis issues were introduced.\n</commentary>\n</example>\n\n<example>\nContext: CI pipeline failed due to PHPStan errors.\nuser: "PHPStan is failing in CI, can you fix it?"\nassistant: "I'll use the phpstan-fixer agent to identify and resolve the PHPStan errors."\n<commentary>\nSince PHPStan is failing, use the Task tool to launch the phpstan-fixer agent to run the analysis and fix all reported errors.\n</commentary>\n</example>

1 repos0 installs
$npx ai-builder add agent grafikart/phpstan-fixer
You've reached the end