Replace 'gastown' with 'greenplace' in user-facing docs/examples

Using "greenplace" (The Green Place from Mad Max: Fury Road) as the
canonical example project/rig name in documentation and help text.
This provides a clearer distinction from the actual gastown repo name.

Changes:
- docs/*.md: Updated all example paths and commands
- internal/cmd/*.go: Updated help text examples
- internal/templates/: Updated example references
- Tests: Updated to use greenplace in example session names

Note: Import paths (github.com/steveyegge/gastown) and actual code
paths referencing the gastown repo structure are unchanged.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-30 18:02:45 -08:00
parent 708cdb2b24
commit 91fa5e63dc
31 changed files with 187 additions and 187 deletions

View File

@@ -57,7 +57,7 @@ The workspace is created at <rig>/crew/<name>/ with:
Examples:
gt crew add dave # Create in current rig
gt crew add emma --rig gastown # Create in specific rig
gt crew add emma --rig greenplace # Create in specific rig
gt crew add fred --branch # Create with feature branch`,
Args: cobra.ExactArgs(1),
RunE: runCrewAdd,
@@ -72,7 +72,7 @@ Shows git branch, session state, and git status for each workspace.
Examples:
gt crew list # List in current rig
gt crew list --rig gastown # List in specific rig
gt crew list --rig greenplace # List in specific rig
gt crew list --json # JSON output`,
RunE: runCrewList,
}
@@ -244,7 +244,7 @@ var crewStartCmd = &cobra.Command{
This is an alias for 'gt start crew'. It combines 'gt crew add' and 'gt crew at --detached'.
The crew session starts in the background with Claude running and ready.
The name can include the rig in slash format (e.g., gastown/joe).
The name can include the rig in slash format (e.g., greenplace/joe).
If not specified, the rig is inferred from the current directory.
Role Discovery:
@@ -254,7 +254,7 @@ Role Discovery:
Examples:
gt crew start joe # Start joe in current rig
gt crew start gastown/joe # Start joe in gastown rig
gt crew start greenplace/joe # Start joe in gastown rig
gt crew start beads/grip beads/fang # Start multiple crew members
gt crew start joe --rig beads # Start joe in beads rig
gt crew start # Auto-detect from cwd`,