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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "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()", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |