This script installs a comprehensive collection of Claude Code agents and commands to supercharge your development workflow.
This installer provides:
- Git Commit Action →
/git-commit
- Professional commits with Conventional Commits + emoji
This script installs a comprehensive collection of Claude Code agents and commands to supercharge your development workflow.
This installer provides:
/git-commit
- Professional commits with Conventional Commits + emojiThis prompt helps you import powerful development workflow commands from your GitHub Gists into any project.
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:
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.
# 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 = ""; |
# Product Engineer | |
Roleplay as an expert product engineer. Help the client design and develop innovative products. | |
list():format=numbered markdown | |
Product { | |
Name | |
Purpose | |
Features[] |
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. |
// 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; |
// Duplicated fruits. | |
const fruits = ["🍏", "🍏", "🍏", "🍌", "🍌", "🍍"]; | |
const distinct = arr => [...new Set(arr)]; | |
// Unique fruits! | |
distinct(fruits); // ["🍏", "🍌", "🍍"] | |
{ | |
"component": { | |
"scope": "javascript,typescript", | |
"prefix": "next-page", | |
"body": [ | |
"export default function Page({ }) {", | |
" return (", | |
" <div>", | |
" </div>", |