bd sync: 2025-12-22 22:04:04

This commit is contained in:
Steve Yegge
2025-12-22 22:04:04 -08:00
parent 1bac250f5d
commit c9dcaf0c51
12 changed files with 426 additions and 179 deletions

View File

@@ -28,7 +28,7 @@ This command:
3. Optionally creates a GitHub repository
The .gitignore excludes:
- Polecats and rig clones (recreated with 'gt spawn' or 'gt rig add')
- Polecat worktrees and rig clones (recreated with 'gt spawn' or 'gt rig add')
- Runtime state files (state.json, *.lock)
- OS and editor files
@@ -53,7 +53,7 @@ func init() {
// HQGitignore is the standard .gitignore for Gas Town HQs
const HQGitignore = `# Gas Town HQ .gitignore
# Track: Role context, handoff docs, beads config/data, rig configs
# Ignore: Git clones (polecats, mayor/refinery rigs), runtime state
# Ignore: Git worktrees (polecats) and clones (mayor/refinery rigs), runtime state
# =============================================================================
# Runtime state files (transient)
@@ -63,10 +63,10 @@ const HQGitignore = `# Gas Town HQ .gitignore
**/registry.json
# =============================================================================
# Rig git clones (recreate with 'gt spawn' or 'gt rig add')
# Rig git worktrees (recreate with 'gt spawn' or 'gt rig add')
# =============================================================================
# Polecats - worker clones
# Polecats - worker worktrees
**/polecats/
# Mayor rig clones

View File

@@ -32,7 +32,7 @@ var polecatCmd = &cobra.Command{
Short: "Manage polecats in rigs",
Long: `Manage polecat lifecycle in rigs.
Polecats are worker agents that operate in their own git clones.
Polecats are worker agents that operate in their own git worktrees.
Use the subcommands to add, remove, list, wake, and sleep polecats.`,
}