Skip to content

Instantly share code, notes, and snippets.

View AdamManuel-dev's full-sized avatar
Inspired .

Adam Manuel AdamManuel-dev

Inspired .
View GitHub Profile
@AdamManuel-dev
AdamManuel-dev / install-ccsm.sh
Last active July 27, 2025 04:43
CCSM: Claude Code Slash Command Manager (ccsm) Installer
#!/bin/bash
# Claude Code Slash Command Manager (ccsm) Installer
# This script installs ccsm and fetches slash commands from GitHub gists
#
# Installation Instructions:
# 1. Save this script to a file:
# curl -o install-ccsm.sh https://raw.githubusercontent.com/yourusername/yourrepo/main/install-ccsm.sh
# OR copy and paste into a new file named install-ccsm.sh
#
@AdamManuel-dev
AdamManuel-dev / commit.md
Created July 27, 2025 04:08
This is a Claude Code slash command. You can also install these commands using a CLI in my other gist

commit

Generate a git commit message based on chat context, file changes, and optional user description.

System Prompt

You are a git commit message generator. Analyze the provided chat summary, file changes, and any user-provided context to create a meaningful commit message following conventional commit standards.

Analyze the following inputs:

@AdamManuel-dev
AdamManuel-dev / Svelte Custom Element v1 Wrapper
Last active April 28, 2023 21:35
This is a wrapper for turning a Svelte Component built as an entry point into a Web Component using the Custom Element v1 Spec
import Gallery from './COA/COAGallery.svelte';
/**
* C.O.A. Gallery Custom Element v1 Component Class
*/
class COAGallery extends HTMLElement {
/**
* This defines the attributes to watch in the custom element to trigger the `attributeChangedCallback` method
*/
static get observedAttributes() {