From sacco-skills
Framework for effective cross-team communication via GitHub issues and PRs. Use when a task requires work from another team, when hitting a boundary that isn't yours to cross, when requesting infrastructure changes, when proposing shared tooling, or when tracking cross-repo dependencies. Triggers: "we need infra to...", "this requires changes in another repo", "raise an issue for...", "write a brief for...", blocked by another team's work, cross-repo dependencies.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sacco-skills:sacco-cross-team-collaborationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When you hit a boundary — security, ownership, or expertise — that isn't yours to cross, don't try to solve it yourself. Communicate what you need and let the owning team decide how.
When you hit a boundary — security, ownership, or expertise — that isn't yours to cross, don't try to solve it yourself. Communicate what you need and let the owning team decide how.
A well-researched proposal gets fast buy-in. Invest in the quality of the ask.
## Context
Why this matters. What problem you're solving. What you've already done.
## Proposal
The specific approach you recommend, with enough detail for the other team
to evaluate without needing a meeting.
## Alternatives Considered
Table of approaches you evaluated and why each was rejected.
Shows you've done the work and respects the other team's time.
| Approach | Problem |
|----------|---------|
| Option A | Why it doesn't work |
| Option B | Why it doesn't work |
## What We Need
Specific, actionable items. Not "help us with schemas" but:
1. Define artifact convention
2. Add publish step to CI
3. Tag strategy so consumers can pin
## Consumption Side
Show how you'll use what they provide. Defines the contract.
## Timeline
Are you blocked? Can you ship with a workaround? Be honest.
pending infra (Org/infra#15)Use gh issue create with the full brief structure:
gh issue create --repo <org>/<repo> \
--title "Short, actionable title" \
--body "$(cat <<'EOF'
## Context
...
## Proposal
...
## Alternatives Considered
...
## What We Need
...
## Consumption Side
...
## Timeline
...
EOF
)"
npx claudepluginhub adrien-sacco/sacco-skills --plugin sacco-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.