| description |
|---|
Break up a large branch into smaller stacked PRs using git-spice |
Split a large branch into smaller, reviewable stacked PRs using git-spice (gs).
| import { z } from 'zod' | |
| import { | |
| s, | |
| defineCollection, | |
| createMockClients, | |
| StorageConfig, | |
| } from './index' | |
| // === Primitives === |
| import { z } from 'zod' | |
| import { | |
| s, | |
| defineCollection, | |
| createMockClients, | |
| StorageConfig, | |
| } from './index' | |
| // === Primitives === |
| version: '0.5' | |
| log_level: info | |
| log_location: /Users/jordan/.gamma/logs/process-compose.log | |
| log_configuration: | |
| disable_json: true | |
| fields_order: ['level', 'time', 'message'] | |
| timestamp_format: '2006-01-02 15:04:05' | |
| add_timestamp: true | |
| flush_each_line: true |
| #!/usr/bin/env python3 | |
| """ | |
| CLI to query Claude Code tool usage stats. | |
| Usage: | |
| claude-tools # list repos | |
| claude-tools <repo> # show tool counts | |
| claude-tools <repo> --perms # show permission strings (for allowlisting) | |
| claude-tools <repo> --raw # show recent raw entries | |
| claude-tools <repo> --since 7 # last 7 days |
| { | |
| "chatId": "buddy-xctvfvk2gnf6so6-nrEUOblO", | |
| "messagesVersion": "v5", | |
| "messages": [ | |
| { | |
| "id": "current-deck-GhNSqtiRH_h8Gas6o9lep", | |
| "role": "user", | |
| "parts": [ | |
| { | |
| "type": "text", |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>EditCard2 Error Analysis</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; |
| STREAM_DATA = [ | |
| 'data: {"id":1,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null}]}\n\n', | |
| 'data: {"id":2,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":"<section"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":3,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":">\\n"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":4,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":"<h"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":5,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0,"delta":{"content":"1"},"finish_reason":null}]}\n\n', | |
| 'data: {"id":6,"object":"chat.completion.chunk","created":1693961826,"model":"gpt-35-turbo","choices":[{"index":0," |
| #!/bin/bash | |
| set -e | |
| GIST_URL="https://gist.githubusercontent.com/USER/GIST_ID/raw/gamma-color-picker.tar.gz" | |
| RAYCAST_EXTENSIONS_DIR="$HOME/.config/raycast/extensions" | |
| TEMP_DIR=$(mktemp -d) | |
| EXTENSION_NAME="gamma-color-picker" | |
| echo "Installing Gamma Color Picker extension..." |