将所有 git 操作委托给 Manager 执行。Worker 无法直接访问 git credentials,因此任何需要认证的 git 操作(clone、push、fetch 等)都需要通过此机制委托给 Manager。
61
72%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Critical
Do not install without reviewing
Fix and improve this skill with Tessl
tessl review fix ./manager/agent/worker-skills/git-delegation/SKILL.mdThis skill allows you to delegate any git operation to the Manager. Since Workers don't have access to git credentials, all git commands that require authentication must be delegated.
Any git command, including but not limited to:
git clone - Clone repositoriesgit fetch / git pull - Fetch/pull from remotegit push - Push to remotegit checkout / git switch - Switch branchesgit branch - Manage branchesgit add / git commit - Stage and commitgit merge - Merge branchesgit rebase - Rebase commits (including interactive)git cherry-pick - Cherry-pick commitsgit reset / git revert - Undo changesgit stash - Stash changesgit tag - Manage tagsgit submodule - Manage submodulesIf git can do it, you can delegate it.
| Task | Use git-delegation | Use github-operations |
|---|---|---|
| Clone repository | ✅ | |
| Pull/fetch changes | ✅ | |
| Read/write files | ✅ | |
| Create/switch branches | ✅ | |
| Commit/push code | ✅ | |
| Rebase/cherry-pick | ✅ | |
| Manage tags | ✅ | |
| Create PR | ✅ | |
| Review/merge PR | ✅ | |
| Comment on PR | ✅ | |
| Create/update Issue | ✅ |
Send a git-request: message to the Manager.
First, get your actual Matrix domain:
echo $AGENTTEAMS_MATRIX_DOMAIN
# e.g.: matrix-local.agentteams.io:18080Then send (substitute the real domain — do NOT write $AGENTTEAMS_MATRIX_DOMAIN literally):
@manager:matrix-local.agentteams.io:18080 task-{task-id} git-request:
workspace: /root/agentteams-fs/shared/tasks/{task-id}/workspace/{repo-name}
operations:
- git clone https://github.com/org/repo.git
- git checkout -b feature-auth
- git add .
- git commit -m "feat: add authentication"
- git push origin feature-auth
---CONTEXT---
{What you're trying to accomplish}
---END---Fields:
workspace: Directory to work in (parent dir for clone, repo dir for other ops)operations: List of git commands to execute (literally what to run)context: (Optional) What you're trying to accomplish - helps Manager understand intentBefore making changes, check if the task directory is being processed:
# Sync from MinIO
mc mirror "${AGENTTEAMS_STORAGE_PREFIX}/shared/tasks/{task-id}/" \
"/root/agentteams-fs/shared/tasks/{task-id}/"
# Check for processing marker
if [ -f "/root/agentteams-fs/shared/tasks/{task-id}/.processing" ]; then
echo "Task directory is being processed. Wait for manager to complete."
fiWrite out the git commands you want executed:
@manager:DOMAIN task-20260225 git-request:
workspace: /root/agentteams-fs/shared/tasks/task-20260225/workspace
operations:
- git clone https://github.com/agentscope-ai/AgentTeams.git
- cd agentteams && git checkout -b feature-xyz
---CONTEXT---
Starting work on feature XYZ
---END---Success — git-result:
@alice:DOMAIN task-20260225 git-result:
Git operations completed successfully.
Cloned to: /root/agentteams-fs/shared/tasks/task-20260225/workspace/agentteams
Created branch: feature-xyz
Run `agentteams-sync` to sync.Failure — git-failed:
@alice:DOMAIN task-20260225 git-failed:
Git operation failed: {error message}
{Suggestion for how to fix}After receiving git-result::
# Sync from MinIO
agentteams-sync
# Now you can work locally
cd /root/agentteams-fs/shared/tasks/task-20260225/workspace/agentteams
# Read files, modify files, etc.
cat src/main.py
# ... make changes ...
# When ready to commit, sync to MinIO first
mc mirror "/root/agentteams-fs/shared/tasks/task-20260225/" \
"${AGENTTEAMS_STORAGE_PREFIX}/shared/tasks/task-20260225/" --overwriteAfter making local changes:
@manager:DOMAIN task-20260225 git-request:
workspace: /root/agentteams-fs/shared/tasks/task-20260225/workspace/agentteams
operations:
- git add .
- git commit -m "feat: implement feature XYZ"
- git push origin feature-xyz
---CONTEXT---
Completed implementation of feature XYZ
---END---You can run any git command that doesn't need authentication locally:
# These work locally (no auth needed):
git status
git log
git diff
git branch
git diff --staged
# These require delegation (need auth):
git clone https://github.com/...
git push
git fetch
git pull@manager:DOMAIN task-20260225 git-request:
workspace: /root/agentteams-fs/shared/tasks/task-20260225/workspace/agentteams
operations:
- git rebase -i HEAD~3
---CONTEXT---
Squashing the last 3 commits into one
---END---@manager:DOMAIN task-20260225 git-request:
workspace: /root/agentteams-fs/shared/tasks/task-20260225/workspace/agentteams
operations:
- git cherry-pick abc123def
---CONTEXT---
Cherry-picking fix from main branch
---END---@manager:DOMAIN task-20260225 git-request:
workspace: /root/agentteams-fs/shared/tasks/task-20260225/workspace/agentteams
operations:
- git merge feature-xyz --no-ff -m "Merge feature XYZ"
---CONTEXT---
Merging feature branch with merge commit
---END---Before sending a git-request:, plan ALL operations in your head first. Think through the entire workflow — clone, branch, file creation, commit, push — and include everything in a SINGLE request. Do NOT send partial requests and iterate.
Bad (multiple requests, trial-and-error):
# Request 1: just clone
git-request: clone repo...
# Wait... then Request 2: create branch
git-request: checkout branch...
# Wait... then Request 3: add files and push
git-request: add, commit, push...Good (one complete request):
git-request:
workspace: /root/agentteams-fs/shared/tasks/{task-id}/workspace
operations:
- git clone /path/to/repo.git
- cd repo && git config user.name "alice"
- cd repo && git config user.email "alice@agentteams.local"
- cd repo && git checkout -b feature/my-branch
- mkdir -p repo/docs
- 'cat > repo/docs/file.md << "EOF"
file content here
EOF'
- cd repo && git add docs/file.md
- cd repo && git commit -m "feat: add file"
- cd repo && git push origin feature/my-branch
---CONTEXT---
Complete workflow: clone, branch, create file, commit, push
---END---After sending a git-request:, the Manager needs time to execute the operations. Do NOT:
git-request: messagesSimply wait for the git-result: or git-failed: response. The Manager will reply when done.
Always use this path pattern:
/root/agentteams-fs/shared/tasks/{task-id}/workspace/{repo-name}git clone: set workspace to the parent directory (without repo name)/tmp or other arbitrary paths — the Manager syncs via MinIO and needs the workspace under the shared tasks directoryThe operations list can include shell commands like mkdir -p, cat > file, cd dir && prefixes. This lets you do everything in one round-trip:
operations:
- git clone https://github.com/org/repo.git
- cd repo && git checkout -b feature/xyz
- mkdir -p repo/src
- 'cat > repo/src/main.py << "EOF"
print("hello")
EOF'
- cd repo && git add .
- cd repo && git commit -m "feat: add main"
- cd repo && git push origin feature/xyzgit-failed: is returned, read the error and send ONE corrected request785c2db
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.