Collaborate
Invite your team, learn the daily workflow, and confirm your setup is correct.
With your repository created and skills installed, you are ready to bring in your team and work day to day.
Invite Your Team
Invite your teammates to your private repository on GitHub or your platform of choice.
They should clone your private repository, not the template:
git clone https://github.com/YOUR-ORG/YOUR-REPO.git act-playbook
cd act-playbookEach teammate also installs the skills once on their own machine, following Install Skills.
Daily Workflow
Commit and push your changes to your private repository as you work:
git add .
git commit -m "Update ACT Playbook workspace"
git pushTo avoid surprises when pulling teammates' changes, set Git to merge by default:
git config pull.rebase falseQuick Check
Run this any time to confirm your setup:
git remote -v
git statusYou should see origin pointing to your private repository.