Skip to content

Instantly share code, notes, and snippets.

View Melvynx's full-sized avatar
🦁
create the next thing

Melvyn Melvynx

🦁
create the next thing
View GitHub Profile
.prose {
& code:not(.code-highlight):not(.not-prose code) {
&::after {
content: "";
}
&::before {
content: "";
}
@apply bg-primary/20 -my-1 py-1 px-0.5 border-primary/60 font-mono border rounded-sm;
@Melvynx
Melvynx / settings.json
Created July 9, 2025 03:00
Claude settings with hooks notification
{
"permissions": {
"allow": [
"Edit",
"Bash(npm run *)",
"Bash(git *)",
"Bash(pnpm *)",
"Bash(gh *)",
"Bash(cd *)",
"Bash(ls *)",
@Melvynx
Melvynx / prompt.md
Created December 15, 2025 07:19
Logo generator prompt for Claude

You are an expert logo designer. I want you to create minimalist SVG logo variations for my app.

Use extended thinking to deeply analyze my app and create the best logos possible.

App Name: [YOUR APP NAME] Description: [WHAT YOUR APP DOES]

Before starting, ask me these 4 questions:

  1. What logo style do you prefer? (Lettermark like Stripe's S, Abstract symbol like Claude, Geometric shape like Airbnb, or Wordmark)
@Melvynx
Melvynx / claude-code-config.zip.b64
Created December 26, 2025 13:32
Claude Code config (base64) - decode with: base64 -d claude-code-config.zip.b64 > claude-code-config.zip
This file has been truncated, but you can view the full file.
UEsDBBQAAAAIAOJZiVusLzgA2AAAAAQYAAAJABwALkRTX1N0b3JlVVQJAAM4lDdpxy0+aXV4CwABBPUBAAAEFAAAAO2YMQrCQBBF/8QUAZstLfcK3mARPUEuoBiw0QiK1qk8l0czcb8YSFIIgqL/heUVO7NJmp2dBWCzUzEFHIAM0bigl4yjQ0JbHPUaK5QocDznh7J/rQ52X3yNPXb108rf7ssN54UQQgjxPlhbs/FnP0MI8YU0+4OnA11FG+cTOm3lONrTga6ijXEJndIZ7WhPB7qK5qZlbD6MbzZ2KOZoT4eXflmIv2EU5Zr6v8Bg/y+E+GEsnefzGYYv25pa6+uxZMz1kThwEEjiheEEzzhPB7qK1mFAiE9wA1BLAwQUAAAACAD8qZpbd8896cYBAAAEIAAAEAAcAGFnZW50cy8uRFNfU3RvcmVVVAkAA4uKTmmLik5pdXgLAAEE9QEAAAQUAAAA7VkxTsMwFP1uKwjqEpgq0SEXYOjEGkqYGHsB2qYKhaauaLrnHkwMCM7AyoDYOAIHYOAIfMd/qBNbDSwg+l9lv6p+P3nfcZzYBQDRX8U9gA4AeKDZb4MVHpUKGsRdLALjARKYz5LeYCzThf1YDAaDwWAwfhlCk+d47jMYjC2Gmh8C4pA41yyovUHcWovxiQPikDjXLEjXIG4Re8Q+cUAcEueaadIStPgQdGZBKxThEwfE4bdSZjC2CmrtvgMxTGAJ0+r6/eG03J7KKBrN5AiKTYH89uPw5aSqiTdqFpfr53lTVRtb59g2xXqCn5viW2I6uhu5lQ5vTrXVpUNt+n1X1R6kMMT2a1RlNq9Px3aVw6dVafVoUVr87cICNRJ7fQVjyExv582qwuGrorJ6KqlMPxeqOiDFFbpGBRwVWcyxJPhLWvR7yeX4tW6cw3vNWGtGtWLNPHNV7eMYz7AXYrwyEqMkHkeNo2FxrSRGLc0sH/v1ohw51oq0Zlgj0szvU4+rrLiPrWP+/rmqcI6rksoxrgxVed7g5z+D8SM0
@Melvynx
Melvynx / post-linkedin-copywriter.md
Created January 18, 2026 13:47
Storytelling & LinkedIn Copywriting Prompts

LinkedIn Copywriting Prompts - Viral Content Creation

You are a LinkedIn copywriting expert with 8+ years of experience creating viral professional content. You understand the psychology of professional audiences and know how to craft compelling narratives that drive engagement and build authority.

Core LinkedIn Copywriting Principles

Foundation

  • LinkedIn Copywriting Definition: Crafting professional content that stops the scroll, builds authority, and drives meaningful engagement within the professional context
@Melvynx
Melvynx / gist:bfe45de5405c7f3be04bd90df20ed573
Created January 22, 2026 00:23
Use Claude models with local API keys (OAuth tokens from Claude Code)
# Claude Code AI - Use Claude Models with Local OAuth Tokens
Utility scripts to access Claude API using Claude Code's OAuth credentials. No need for a separate API key!
## Why?
When you authenticate with Claude Code (the official CLI), it stores OAuth tokens locally. These scripts let you reuse those tokens to make API calls to Claude models programmatically.
## Installation
@Melvynx
Melvynx / CLAWPRO_SETUP_GUIDE.md
Created February 1, 2026 13:43
ClawPro - Guide complet pour setup VPS avec OpenClaw + Claude Code + Agent Telegram
@Melvynx
Melvynx / setup.sh
Last active February 2, 2026 07:57
ClawPro VPS Setup v2
#!/bin/bash
# ClawPro VPS Setup Script
# Sets up OpenClaw + Docker + useful aliases
set -e
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
@Melvynx
Melvynx / update.sh
Created February 2, 2026 03:27
ClawPro Update Script
#!/bin/bash
set -e
cd /root/openclaw
cp .env .env.backup
cat > docker-compose.yml << 'EOF'
services:
openclaw-gateway:
@Melvynx
Melvynx / setup.sh
Last active February 2, 2026 13:59
ClawPro VPS Setup - One-command OpenClaw installation
#!/bin/bash
# ClawPro VPS Setup Script
# Sets up OpenClaw + Docker + useful aliases
set -e
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'