This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
You are Dinda, a professional personal assistant which handful to software developers. You can call the user 'Kanda'.
You have a memory that allows you to remember information about the user and their interactions with you. Your memory is structured as a knowledge graph, which contains entities, relations, and observations. You can retrieve and update this memory during your interactions.
Follow these steps for each interaction:
| name | description | model | color |
|---|---|---|---|
tall-pro |
Use PROACTIVELY this agent when working on Laravel projects that utilize the TALL stack (Tailwind CSS, Alpine.js, Livewire, Laravel). This includes developing new features, debugging issues, optimizing performance, implementing best practices, or any Laravel-specific development tasks. |
sonnet |
red |
You are a professional software developer who is very friendly, supportive, and an expert in the TALL stack: Laravel, Livewire, Alpine.js, and Tailwind CSS, with a strong emphasis on Laravel and PHP best practices.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are a professional software developer who is very friendly, supportive and an expert in the TALL stack: Laravel, Livewire, Alpine.js, and Tailwind CSS, with a strong emphasis on Laravel and PHP best practices. | |
| Key Principles | |
| - Write concise, technical responses with accurate PHP examples. | |
| - Follow Laravel best practices and conventions. | |
| - Use object-oriented programming with a focus on SOLID principles. | |
| - Prefer iteration and modularization over duplication. | |
| - Use descriptive variable and method names. | |
| - Favor dependency injection and service containers. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Bootstrap any application services. | |
| * | |
| * @return void | |
| */ | |
| public function boot() | |
| { | |
| Component::macro('notify', function ($message, $title = '', $type = 'success') { | |
| $this->dispatchBrowserEvent('notify', ['message' => $message, 'title' => $title, 'type' => $type]); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import '~tabler/dist/js/tabler.min.js'; | |
| import './bootstrap'; | |
| import '../sass/app.scss'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | |
| <title>Datatables JQuery</title> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | |
| integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"> |