Status: Draft Author: Allen Eubank Date: 2026-01-30
Long-running processes spawned by Claude Code sessions (dev servers, Tilt,
watchers) routinely become orphaned — detached from any terminal (TTY: ??),
Create a single-page “Art Style Palette Reference Sheet” as a clean graphic-design moodboard for: [ART STYLE NAME].
Purpose: a practical reference for writing AI image prompts (colors, textures, motifs, lighting, composition). Overall look: neutral, minimal, high legibility, professional design board.
CANVAS / PRINT:
| #!/bin/bash | |
| # Reset XFCE session for xRDP | |
| # Kills stale sessions and restarts xrdp services | |
| set -e | |
| echo "Killing xfce4-session..." | |
| pkill -u "$(whoami)" -f "xfce4-session" 2>/dev/null || true | |
| echo "Killing orphaned Xorg..." |
Reimplement the current branch on a new branch with a clean, narrative-quality git commit history suitable for reviewer comprehension.
Validate the source branch
main.Analyze the diff
main.zshy automatically handles non-JavaScript assets and copies them to the output directory during builds. This feature enables including custom files like LICENSE, README.md, Protocol Buffer definitions, Ethereum ABIs, and other artifacts in your TypeScript packages without additional configuration.
Key Concept: zshy detects imported assets and copies them to the output directory, but does not make them available as JavaScript modules. The assets remain as separate files that you access at runtime.
| #!/usr/bin/env bun | |
| "use strict"; | |
| const fs = require("fs"); | |
| const { execSync } = require("child_process"); | |
| const path = require("path"); | |
| // ANSI color constants | |
| const c = { | |
| cy: '\033[36m', // cyan |
This document contains guidelines for Claude Code to follow when working on this project.
| # Written by https://github.com/DeterminateSystems/nix-installer. | |
| # The contents below are based on options specified at installation time. | |
| download-buffer-size = 524288000 | |
| max-jobs = 8 | |
| cores = 2 | |
| trusted-users = root urname |
| services: | |
| shovel: | |
| image: docker.io/indexsupply/shovel:af07 | |
| container_name: shovel | |
| restart: unless-stopped | |
| ports: | |
| - "8383:80" | |
| env_file: | |
| - .env | |
| volumes: |