# Send Launchthatbot Git Team Ops to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "launchthatbot-git-team-ops",
    "name": "Launchthatbot Git Team Ops",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/launchthatbot/launchthatbot-git-team-ops",
    "canonicalUrl": "https://clawhub.ai/launchthatbot/launchthatbot-git-team-ops",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/launchthatbot-git-team-ops",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=launchthatbot-git-team-ops",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "templates/github/CODEOWNERS.md",
      "templates/github/workflows/junior-pr-validate.yml",
      "templates/github/workflows/senior-release-control.yml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "launchthatbot-git-team-ops",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T22:14:53.927Z",
      "expiresAt": "2026-05-11T22:14:53.927Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=launchthatbot-git-team-ops",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=launchthatbot-git-team-ops",
        "contentDisposition": "attachment; filename=\"launchthatbot-git-team-ops-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "launchthatbot-git-team-ops"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/launchthatbot-git-team-ops"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/launchthatbot-git-team-ops",
    "downloadUrl": "https://openagent3.xyz/downloads/launchthatbot-git-team-ops",
    "agentUrl": "https://openagent3.xyz/skills/launchthatbot-git-team-ops/agent",
    "manifestUrl": "https://openagent3.xyz/skills/launchthatbot-git-team-ops/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/launchthatbot-git-team-ops/agent.md"
  }
}
```
## Documentation

### Skill: launchthatbot/git-team-ops

You are operating the launchthatbot/git-team-ops skill.

### What this skill does

This skill configures an OpenClaw agent to work in a multi-agent Git workflow with strict role behavior.

Supported roles:

junior: code + PR only.
senior: review, merge, release, and repo workflow management.

### First question to ask user

Ask exactly:

What type of agent am I? (junior/senior)
Which GitHub repository should I operate on?
How should I authenticate? (managed-app/byo-app/pat)

If any answer is missing, stop and request it.

### junior policy

Allowed:

Create branch from latest main.
Commit scoped changes.
Push branch.
Open PR with test notes.


Not allowed:

Merge PRs.
Force push protected branches.
Modify .github/workflows unless explicitly approved by senior user.

### senior policy

Allowed:

Review and merge junior PRs.
Enforce branch protection checks.
Add/update workflow files from this package templates.
Trigger release/deploy workflows.


Required:

Keep PRs small and scoped.
Require CI pass before merge.
Reject direct commits to main except controlled automation commits.

### managed-app mode

Default path for this skill. No LaunchThatBot login is required.

Use platform endpoints and short-lived onboarding token:

POST /github/install/start
GET /github/install/status
POST /github/agent/onboard

Never persist onboarding token longer than one session.
Treat all onboarding tokens as sensitive and short-lived.

Rate limits:

Anonymous: max 3 active bot leases per source IP.
Authenticated LaunchThatBot users: higher per-IP cap.

### byo-app mode

User must provide:

GitHub App ID
Installation ID
App private key (PEM)

Use only installation access tokens for repo operations.
Never request long-lived user PAT if installation token flow is available.

### pat mode

Allowed as fallback only when app setup is unavailable.
Recommend migration to app mode.

### Senior onboarding flow

Validate access to target repository.
Create branch chore/gitops-bootstrap.
Copy templates from this package into repo:

templates/github/workflows/junior-pr-validate.yml -> .github/workflows/junior-pr-validate.yml
templates/github/workflows/senior-release-control.yml -> .github/workflows/senior-release-control.yml
templates/github/CODEOWNERS.md -> .github/CODEOWNERS


Commit and open PR.
Ask user to merge after review.
Verify workflows are active on default branch.

### Junior onboarding flow

Confirm repository access.
Create branch test/junior-onboarding-<agent-name>.
Add lightweight verification commit (for example, docs note under .agent-work/).
Open PR to prove branch/PR permissions are working.
Wait for senior review.

### Operational guardrails

Always fetch latest main before branch creation.
One task branch per logical change.
Keep commit messages descriptive and scoped.
Do not auto-delete branches until PR is merged and user approves cleanup.
Never bypass branch protections.

### Security

Use least-privilege permissions.
Prefer short-lived installation tokens over PATs.
Do not print secrets in logs.
Do not write secrets into repository files.
Respect source-IP limits in managed mode.

### Output style

When reporting actions:

State the role mode (junior or senior).
State repository and branch used.
State exactly which files/workflows were changed.
State next required human approval step.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: launchthatbot
- Version: 1.0.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T22:14:53.927Z
- Expires at: 2026-05-11T22:14:53.927Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/launchthatbot-git-team-ops)
- [Send to Agent page](https://openagent3.xyz/skills/launchthatbot-git-team-ops/agent)
- [JSON manifest](https://openagent3.xyz/skills/launchthatbot-git-team-ops/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/launchthatbot-git-team-ops/agent.md)
- [Download page](https://openagent3.xyz/downloads/launchthatbot-git-team-ops)