docs: Update .ai-team/ references to .squad/ in docs and tests (#105)#113
Merged
bradygaster merged 6 commits intodevfrom Feb 20, 2026
Merged
docs: Update .ai-team/ references to .squad/ in docs and tests (#105)#113bradygaster merged 6 commits intodevfrom
bradygaster merged 6 commits intodevfrom
Conversation
Session: 2026-02-20-v050-status-and-error-diagnosis Requested by: bradygaster Changes: - Logged v0.5.0 readiness assessment (scope, risks, timeline) - Logged network/model error diagnosis (Kujan investigation) - Merged 3 inbox decisions to decisions.md (Keaton, McManus, Verbal) - Deleted merged inbox files (3 items)
- Archive entries older than 2026-02-21 to decisions-archive.md - Reduce decisions.md from 342.01 KB (6277 lines) to 37.48 KB (675 lines) - Keep only 2 most recent days of decision entries in main file - Fixes context overflow errors causing network interrupted + model unavailable - Related to: CI/CD stability, agent reliability Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Updated README.md to reference .squad/ instead of .ai-team/ (7 references) - Updated CONTRIBUTING.md branch protection rules and FAQ to use .squad/ (9 references) - Updated test/init-flow.test.js assertions to expect .squad/ paths (3 changes) - Updated test/plugin-marketplace.test.js assertions to expect .squad/ paths (2 changes) - Created migration guide: docs/migration/v0.5.0-squad-rename.md Migration guide includes: - Step-by-step migration instructions - Email scrubbing details - Backward compatibility information - Troubleshooting section - Timeline for v0.5.0 through v1.0.0 All tests pass: 53/53 ✅ Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Migrates all path references in the coordinator prompt and templates from .ai-team/ to .squad/ and .ai-team-templates/ to .squad/templates/. Updated files: - .github/agents/squad.agent.md (91 → 4 backward-compat refs) - templates/charter.md - templates/copilot-instructions.md - templates/orchestration-log.md - templates/roster.md - templates/scribe-charter.md - templates/skills/squad-conventions/SKILL.md - templates/workflows/*.yml (6 workflow files) Key changes: - All .ai-team/ → .squad/, all .ai-team-templates/ → .squad/templates/ - Updated deprecation banner to Migration Banner (v0.5.0) - Preserved backward-compat fallback language for legacy repos - Updated .gitattributes examples to use .squad/ paths - Updated git commit message prefixes from ai-team to squad Tests: 52/53 passing (1 pre-existing failure in marketplace test - index.js still writes to .ai-team/, fixed in #101) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Work log and decision memo for squad.agent.md path migration. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
575743f to
c56a7e2
Compare
This was referenced Feb 20, 2026
This was referenced Feb 20, 2026
williamhallatt
added a commit
to williamhallatt/squad
that referenced
this pull request
Mar 4, 2026
squad.agent.md references .squad/templates/ throughout, but index.js was installing template files to .squad-templates/ at the repo root. This mismatch meant the coordinator prompt could never find its templates on a fresh install. Root cause: PR bradygaster#113 migrated all path references in squad.agent.md to .squad/templates/ but PR bradygaster#111's code change (which renamed the dir to .squad-templates/) was never reconciled with it. Both landed in v0.5.0. Fix: - Change install destination from .squad-templates to .squad/templates - Update migrate-directory rename to match the new path - Update help text and replace-regex to reference .squad/templates - Add a v0.5.5 migration entry that moves .squad-templates/ to .squad/templates/ for existing users upgrading from v0.5.4 or earlier Bumps version to 0.5.5 so the migration runs on upgrade.
joniba
pushed a commit
to joniba/squad
that referenced
this pull request
Mar 26, 2026
…gaster#113) * Design: Proactive Teams Notifications System (issue bradygaster#112) - Defines three notification tiers: Urgent (🔴), Action Needed (🟡), Feature Complete (🔵) - Central router pattern via scripts/notify.ps1 with watermark-based deduplication - Urgent notifications send within 2 seconds; feature completions batched hourly - Integration points: squad-scheduler (task failures), Galadriel (PR reviews), Elrond (escalations) - Exponential backoff retry; graceful degradation on webhook failure - Payloads use Adaptive Card v1.4; max 28 KB per Teams limit - State management via gitignored .squad/notifications-state.json Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * docs(catalogs): add snap-squad reference entry Add paulyuk/snap-squad to reference-codebases.md with: - Complete repository overview and purpose - Relevance to squad architecture and multi-agent design - Directory structure and key features - Patterns we can borrow (preset architectures, charter design, routing) Update tools-and-integrations.md to include snap-squad in the Reference Codebases section (5.4). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * docs(research): snap-squad capabilities analysis Elrond's technical analysis of paulyuk/snap-squad: preset architectures, keyword routing, safe regeneration patterns. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Elrond <elrond@squad.local> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updated documentation and test files to reference .squad/\ instead of .ai-team/\ in preparation for the v0.5.0 directory rename.
Files Changed
Documentation:
Tests:
New:
Migration Guide Content
The new migration guide includes:
Testing
✅ All tests pass: 53/53
Refs #105