Skip to content

Instantly share code, notes, and snippets.

@fireboy1919
fireboy1919 / install.sh
Last active February 11, 2026 20:20
Viaduct skill documentation installer
#!/bin/bash
#
# Installs Viaduct skill documentation into a project.
# Usage: ./install.sh [project-name]
#
# This script:
# 1. Creates .viaduct/agents/ directory
# 2. Downloads skill docs from GitHub, stripping YAML frontmatter
# 3. Creates/updates AGENTS.md with task mapping table
# 4. Updates .gitignore
@fireboy1919
fireboy1919 / evaluations.json
Created February 11, 2026 17:50
Viaduct skill evaluation harness
[
{
"id": "eval-01-field-resolver",
"name": "Simple Field Resolver",
"skills": ["viaduct-field-resolver"],
"schema": "type Group implements Node @resolver @scope(to: [\"default\"]) {\n id: ID!\n name: String!\n description: String\n}",
"query": "I want to show a member count on each Group. Add a memberCount field that returns 42 for now.",
"expected_behavior": [
"Adds 'memberCount: Int! @resolver' to the Group type in schema",
"Creates resolver class extending GroupResolvers.MemberCount()",
@fireboy1919
fireboy1919 / asheville-rental-options.md
Last active January 12, 2026 21:00
Asheville Vacation Rental Options - June 24-28, 2026

Asheville Vacation Rental Options

Trip Dates: June 24-28, 2026 (4 nights) Group Size: 20 people (5 couples + 1 single + 9 kids) Requirement: Must sleep 20 people Budget: Max $2,500 for 4 nights


⭐ BEST OPTION - Sleeps 20 Under Budget!

@fireboy1919
fireboy1919 / savannah-rental-options.md
Last active January 12, 2026 13:10
Savannah Vacation Rental Options - June 24-28, 2026

Savannah Vacation Rental Options

Trip Dates: June 24-28, 2026 (4 nights) Group Size: 20 people (5 couples + 1 single + 9 kids) Scenario: 12 people in campers, 8 people in house


⭐ BEST VALUE - 4-Bedroom with Land

@fireboy1919
fireboy1919 / setup-claude-commands.sh
Last active November 24, 2025 17:41
Setup Claude Code custom commands for code review and PR creation
#!/bin/bash
set -e
# Setup Claude Code custom commands for code review and PR creation
# This script is idempotent - safe to run multiple times
COMMANDS_DIR="$HOME/.claude/commands"
REVIEW_FILE="$COMMANDS_DIR/review.md"
CREATE_PR_FILE="$COMMANDS_DIR/create-pr.md"
@fireboy1919
fireboy1919 / light-state-sync.yaml
Last active December 29, 2025 20:37
Synchronize States Between Two Lights
blueprint:
name: Synchronize brightness states
description: Synchronize the on/off state of 2 entities
domain: automation
input:
entity_1:
name: First entity
selector:
entity: {}
entity_2:
gitlab_repo = https://gitlab.com/gitlab-org/gitlab-ce.git gitlab_shell_repo = https://gitlab.com/gitlab-org/gitlab-shell.git
gitlab_development_root = $(shell pwd)
postgres_bin_dir = $(shell pg_config --bindir)
all: gitlab-setup gitlab-shell-setup support-setup
# Set up the GitLab Rails app
gitlab-setup: gitlab/.git gitlab-config gitlab/.bundle