Skip to content

docs: add gh-aw slash commands and setup guide - #1636

Merged
bradygaster merged 5 commits into
devfrom
squad/docs-gh-aw-guide
Aug 7, 2026
Merged

docs: add gh-aw slash commands and setup guide#1636
bradygaster merged 5 commits into
devfrom
squad/docs-gh-aw-guide

Conversation

@bradygaster

Copy link
Copy Markdown
Owner

Summary

Adds a comprehensive documentation page at docs/gh-aw.md covering Squad's GitHub Agentic Workflows integration — from prerequisites and setup through every slash command and daily usage patterns.

What's covered

  • Quick start — five steps from zero to a working Squad team
  • Setup — installing the workflow, compiling, auth options (GitHub App, PAT, default token)
  • All slash commandscast, connect, adopt, cast-member, retire, status
  • The casting brief — how issue content drives team composition (priority cascade)
  • What gets created — full file tree with explanations
  • Connect vs. Adopt — when to use each, side-by-side comparison
  • Iterating after cast — adding, modifying, retiring, re-casting
  • Two-job architecture — activation (unrestricted) vs. agent (sandboxed)
  • Troubleshooting — common issues and fixes

Context

This complements #1622 (the gh aw workflow definition) and #1635 (the casting brief feature from #1634). Written for developers who have never used Squad before — concrete commands, practical examples, no assumptions.

Working as PAO (DevRel).

Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com

Covers installation, all slash commands, casting brief, connect vs adopt,
and iteration patterns for GitHub Agentic Workflows.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot AI lite review requested due to automatic review settings August 7, 2026 21:25
@github-actions

github-actions Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

🛫 PR Readiness Check

ℹ️ This comment updates on each push. Last checked: commit a29592d

PR Scope: 🔧 Infrastructure

⚠️ 3 item(s) to address before review

Status Check Details
Single commit 5 commits — consider squashing before review
Not in draft Ready for review
Branch up to date Up to date with dev
Copilot review No Copilot review yet — it may still be processing
Changeset present No source files changed — changeset not required
Scope clean No .squad/ or docs/proposals/ files
No merge conflicts No merge conflicts
Copilot threads resolved 0 active Copilot thread(s) resolved (3 outdated skipped)
CI passing 8 check(s) still running

Files Changed (5 files, +436 −2)

File +/−
.github/workflows/squad-docs.yml +1 −1
README.md +35 −0
docs/src/content/docs/guide/gh-aw.md +398 −0
docs/src/navigation.ts +1 −0
test/docs-build.test.ts +1 −1

Total: +436 −2


This check runs automatically on every push. Fix any ❌ items and push again.
See CONTRIBUTING.md and PR Requirements for details.

@github-actions

github-actions Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

🟡 Impact Analysis — PR #1636

Risk tier: 🟡 MEDIUM

📊 Summary

Metric Count
Files changed 5
Files added 1
Files modified 4
Files deleted 0
Modules touched 4

🎯 Risk Factors

  • 5 files changed (≤5 → LOW)
  • 4 modules touched (2-4 → MEDIUM)

📦 Modules Affected

ci-workflows (1 file)
  • .github/workflows/squad-docs.yml
docs (2 files)
  • docs/src/content/docs/guide/gh-aw.md
  • docs/src/navigation.ts
root (1 file)
  • README.md
tests (1 file)
  • test/docs-build.test.ts

This report is generated automatically for every PR. See #733 for details.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new end-to-end documentation page (docs/gh-aw.md) explaining how to set up and use Squad via GitHub Agentic Workflows (gh aw), including command reference, casting brief guidance, workflow architecture, and troubleshooting.

Changes:

  • Introduces a comprehensive gh aw setup + quick start guide for enabling /squad in a repository.
  • Documents all major /squad modes, expected generated files, and Connect vs Adopt behavior.
  • Explains workflow execution (activation vs sandboxed agent job) and common troubleshooting scenarios.
Show a summary per file
File Description
docs/gh-aw.md New documentation page for Squad’s gh aw integration, setup, command reference, and usage patterns

Review details

  • Files reviewed: 2/2 changed files
  • Comments generated: 3
  • Review effort level: Lite

Comment on lines +128 to +131
| `/squad cast-member <description>` | Add a single specialist to an existing team |
| `/squad cast-member rename <name> to <new-focus>` | Change an existing member's specialty |
| `/squad retire <name>` | Remove a team member (archived, not deleted) |
| `/squad status` | Report current team composition (read-only, no PR) |
Comment on lines +307 to +309
Squad allocates a character name from the existing universe, generates a charter,
and opens a PR (or pushes to the existing Squad PR if you comment on one).

Comment on lines +340 to +342
When you comment `/squad cast-member` or `/squad retire` on a PR that already
has the `squad` label and is on a `squad/*` branch, the changes are pushed to
that branch as a follow-up PR — keeping all squad changes in one review thread.
bradygaster and others added 3 commits August 7, 2026 21:35
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Early adopters should point at @dev to get the latest modes and fixes.
Note explains they can switch to @main once gh-aw support is stable.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Enables docs deployment on push to dev so documentation updates
(including the new gh-aw guide) can go live without waiting for
a merge to main.

Closes #0

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@github-actions

github-actions Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

🏗️ Architectural Review

⚠️ Architectural review: 1 info.

Severity Category Finding Files
ℹ️ info template-sync Template files changed in .github/workflows/ but not in other template locations. If these templates should stay in sync, consider updating the others too. Changed: .github/workflows/, Unchanged: templates/, .squad-templates/, packages/squad-cli/templates/

Automated architectural review — informational only.

@bradygaster
bradygaster merged commit 0b5130f into dev Aug 7, 2026
15 of 18 checks passed
@bradygaster
bradygaster deleted the squad/docs-gh-aw-guide branch August 7, 2026 23:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants