delorenj/skills

My sack of delicious Claude skills

5 stars0 forksUpdated Dec 29, 2025
npx skills add delorenj/skills

README

DeLorenzo Claude Skills Marketplace

A curated collection of Claude Code plugins for AI development, workflow automation, and specialized tooling.

Quick Start

Add This Marketplace

/plugin marketplace add delorenj/claude-skills

Or add to your .claude/settings.json:

{
  "extraKnownMarketplaces": {
    "delorenzo-skills": {
      "source": {
        "source": "github",
        "repo": "delorenj/claude-skills"
      }
    }
  }
}

Install Plugins

# Install specific plugin
/plugin install agno@delorenzo-skills

# Browse available plugins
/plugin marketplace list delorenzo-skills

Plugin Categories

AI Frameworks & Agents

  • agno - Agno AI agent framework with MCP integration and AgentOS runtime
  • letta - Stateful AI agents with long-term memory management

AI Tools

  • fal-text-to-image - High-quality image generation with FLUX, Recraft V3, Imagen4
  • notebooklm - Query Google NotebookLM with source-grounded answers
  • using-reasoningbank-to-manage-memories - Memory management with ReasoningBank

BMAD Workflow System

Complete agile development workflow with role-based agents:

  • bmad:workflow-init - Initialize BMAD Method
  • bmad:product-brief - Business Analyst workflow
  • bmad:prd - Product Manager workflow (PRD creation)
  • bmad:architecture - System Architect workflow
  • bmad:dev-story - Developer implementation workflow
  • bmad:create-ux-design - UX Designer workflow
  • bmad:sprint-planning - Scrum Master workflow
  • bmad:research - Creative Intelligence research
  • bmad:create-agent - Builder agent creation

Development Tools

  • ecosystem-patterns - Project organization, naming conventions, architecture patterns
  • coding-conventions - Code style guidelines and standards
  • mise-task-managing - Project management with mise tasks
  • software-change-management-using-git - Git workflow patterns
  • installing-apps-tools-and-services - Package and tool installation with mise

Workflows & Automation

  • creating-workflows - Multi-phase workflow automation with claude-flow
  • bloodbank-n8n-event-driven-workflows - Event-driven automation with n8n and RabbitMQ

Debugging & Recovery

  • debugging-complex-multi-layer-systems - Multi-layer bug diagnosis patterns
  • recovering-from-bad-git-state - Git state recovery and worktree repair
  • emergency-ulimit-mitigation - System ulimit crash mitigation

Framework Support

  • tauri - Cross-platform desktop/mobile app development
  • chrome-extension-developer - Chrome extension development
  • zellij-plugin-dev - Zellij plugin development with Rust/WASM

Writing & Documentation

  • blog-writing - Blog creation and editing with custom styles
  • absurdist-readme-writer - Absurd yet technical README generation
  • thematic-doc-generator - Comprehensive themed documentation

System Tools

  • zellij-layouts - Terminal workspace layout customization

Usage Examples

AI Agent Development

# Install Agno framework support
/plugin install agno@delorenzo-skills

# Install Letta for stateful agents
/plugin install letta@delorenzo-skills

BMAD Agile Workflow

# Initialize BMAD workflow in project
/bmad:workflow-init

# Create product requirements
/bmad:prd

# Design architecture
/bmad:architecture

# Plan sprint
/bmad:sprint-planning

Development Environment

# Install ecosystem patterns
/plugin install ecosystem-patterns@delorenzo-skills

# Install mise task management
/plugin install mise-task-managing@delorenzo-skills

# Install git workflow patterns
/plugin install software-change-management-using-git@delorenzo-skills

Image Generation

# Install fal.ai integration
/plugin install fal-text-to-image@delorenzo-skills

# Generate images (requires FAL_KEY env var)
uv run python fal-text-to-image "cyberpunk city at sunset"

Workflow Automation

# Install workflow creator
/plugin install creating-workflows@delorenzo-skills

# Install event-driven automation
/plugin install bloodbank-n8n-event-driven-workflows@delorenzo-skills

Plugin Structure

Each plugin follows the standard Claude Code plugin format with:

  • /commands/ - Command definitions (Markdown files)
  • /agents/ - Agent definitions
  • /scripts/ - Executable tools and utilities
  • /references/ - Documentation and guides
  • SKILL.md - Primary skill documentation
  • README.md - Plugin overview

Contributing

To add new skills to this marketplace:

  1. Create skill directory with standard structure:

    my-skill/
    ├── SKILL.md          # Primary documentation
    ├── README.md         # Overview
    ├── commands/         # Command files (optional)
    └── references/       # Additional docs (optional)
    
  2. Add frontmatter to SKILL.md:

    ---
    name: my-skill
    description: Brief description of the skill
    ---
    
  3. Add entry to `.clau

...

Read full README

Publisher

delorenjdelorenj

Statistics

Stars5
Forks0
Open Issues0
CreatedOct 22, 2025