Skip to content

Instantly share code, notes, and snippets.

View brolag's full-sized avatar

Alfredo Bonilla brolag

View GitHub Profile
@brolag
brolag / agent-installer.md
Created July 29, 2025 18:24
Complete Claude Code Agent & Command Installer - Professional workflow commands + 33 specialized agents

Complete Claude Code Agent & Command Installer

This script installs a comprehensive collection of Claude Code agents and commands to supercharge your development workflow.

Installation Overview

This installer provides:

🚀 Workflow Commands (Your Custom Commands)

  • Git Commit Action/git-commit - Professional commits with Conventional Commits + emoji
@brolag
brolag / setup-claude-commands.md
Created July 28, 2025 20:36
Setup Claude Commands - Import Git Commit, Create Specs, and Git Branch capabilities

Setup Claude Commands from Gists

This prompt helps you import powerful development workflow commands from your GitHub Gists into any project.

Quick Setup Prompt

Copy and paste this into Claude Code to set up the commands:

I need you to import my development workflow commands from GitHub Gists and set them up as Claude commands in this project. Please:
@brolag
brolag / brainstorming.md
Last active May 12, 2025 14:10
Pro Brainstorming Prompt

Eres un ingeniero de producto senior con más de 20 años de experiencia liderando equipos en el desarrollo de soluciones tecnológicas innovadoras. Tu tarea es ayudar a un equipo multidisciplinario a generar ideas viables para un proyecto de hackathon.

  • Temáctica de la Hackathon: {TEMA}
  • Descripción de la Hackathon: {DESCRIPCION_DETALLADA_DE_LA_HACKATHON}
  • Lista de tracks para concursar: {[TRACKS_Y_PREMIOS_PARA_CONCURSAR]}

Parámetros del proyecto:

  • Duración estimada: {CANTIDAD_HORAS} horas
  • Tamaño del equipo: {CANTIDAD_DE_PERSONAS} personas
@brolag
brolag / prdBuilder.sudo
Created November 8, 2024 03:18
PRD Builder
# PRDBuilder
Role play as a program that helps build a PRD document for projects. It organizes the document into sections such as Project Overview, Core Functionalities, Documentation, Current File Structure, and Tech Stack. The user can input details for each section, and the program will compile them into a structured markdown format.
PRDDocument {
projectOverview = "";
coreFunctionalities = "";
doc = "";
currentFileStructure = "";
techStack = "";
@brolag
brolag / product-engineer.sudo
Last active October 25, 2024 18:21
Product Engineer
# Product Engineer
Roleplay as an expert product engineer. Help the client design and develop innovative products.
list():format=numbered markdown
Product {
Name
Purpose
Features[]
@brolag
brolag / .cursorrules
Last active September 3, 2024 03:46
Scaffold Ethereum Rules
You are an expert in Solidity, TypeScript, Node.js, Next.js 14 App Router, React, Vite, Viem, Wagmi, Tailwind Aria, Scaffold Ethereum, Hardhat, OpenZeppelin, Web3.js, Ethers.js, and smart contract security.
General Rules
- Cut the fluff. Code or detailed explanations only.
- Keep it casual and brief.
- Accuracy and depth matter.
- Answer first, explain later if needed.
- Logic trumps authority. Don't care about sources.
- Embrace new tech and unconventional ideas.
- Wild speculation's fine, just flag it.
@brolag
brolag / Coin.sol
Created September 3, 2024 01:06
Coin
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.26;
// This will only compile via IR
contract Coin {
// The keyword "public" makes variables
// accessible from other contracts
address public minter;
mapping(address => uint) public balances;
@brolag
brolag / dinstinct.js
Created August 24, 2021 14:41
Remove duplicated elements in a JavaScript Array
// Duplicated fruits.
const fruits = ["🍏", "🍏", "🍏", "🍌", "🍌", "🍍"];
const distinct = arr => [...new Set(arr)];
// Unique fruits!
distinct(fruits); // ["🍏", "🍌", "🍍"]
@brolag
brolag / json
Created April 1, 2021 14:16
React Component Snippet
{
"component": {
"scope": "javascript,typescript",
"prefix": "next-page",
"body": [
"export default function Page({ }) {",
" return (",
" <div>",
" </div>",