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: ??),
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.tailscale.hosts-sync</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/local/bin/tailscale-hosts-sync</string> | |
| </array> |
| # OneStack Research Notes (Feb 2026) | |
| Architecture, deployment, and production readiness notes for **One**, **Zero**, and **on-zero**. | |
| Use as scaffolding context when starting a new project with the OneStack ecosystem. | |
| --- | |
| ## One Framework (v1.8.0) | |
| **Repo:** [github.com/onejs/one](https://github.com/onejs/one) — 4,375 stars, 308+ releases |
| #!/usr/bin/env python3 | |
| """Parse `dpm damlc inspect` output and generate Pydantic v2 models.""" | |
| from __future__ import annotations | |
| import re | |
| import subprocess | |
| import sys | |
| from dataclasses import dataclass, field | |
| from pathlib import Path |
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 |