adk-expert
Google ADK (Agent Development Kit) orchestration patterns — boundaries, agent composition, and tool seams. Trigger when designing or reviewing multi-agent…
Use when configuring or optimising GitHub repositories for cost-effective, consistent operations — CI triggers, Actions billing, issue tracking, labelling, branch protection, or release workflow.
$ npx -y skills add jpantsjoha/ai-native-developer-experience --skill github-manager --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/github-managerContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when configuring or optimising GitHub repositories for cost-effective, consistent operations — CI triggers, Actions billing, issue tracking, labelling, branch protection, or release workflow.
name: github-manager description: Use when configuring or optimising GitHub repositories for cost-effective, consistent operations — CI triggers, Actions billing, issue tracking, labelling, branch protection, or release workflow.
> **CI validates what cannot be cheaply verified locally. It is not a remote test runner for every commit.**
This skill enforces disciplined, cost-aware GitHub operations. It turns GitHub from a free-for-all into a governed delivery surface: selective automation, traceable issues, consistent labels, and protected mainlines.
This skill governs the GitHub surfaces that enforce the harness contract at the repository level. It is not general DevOps housekeeping — each procedure below maps to a harness invariant:
PR review gate and the exact-candidate binding rule. A CI check that passes on an unprotected branch is a claim; a passing check required by branch rules is evidence.
run tied to a commit SHA is. Structure your workflow so evidence is machine-readable and SHA-bound, not dependent on a contributor's local environment.
These changes affect all contributors and shared infrastructure. Classify risk, confirm authority, and record the decision before any write.
Use `release-readiness` to gate a specific deployment. Use this skill to configure and audit the repository surfaces that make those gates trustworthy.
Adopt a namespaced taxonomy and avoid one-off labels:
| Namespace | Examples | Purpose | |---|---|---| | `kind/` | `kind/bug`, `kind/feature`, `kind/docs` | Type of work | | `area/` | `area/ci`, `area/ui`, `area/security` | Component or domain | | `priority/` | `priority/p0`, `priority/p1` | Triage urgency | | `status/` | `status/blocked`, `status/needs-review` | Workflow state |
| Excuse | Counter | |---|---| | "Run everything on every push to be safe" | Safety is selective gates, not redundant burn. Run full checks on PRs and tags. | | "It's only a few CI minutes" | At 10× for macOS, "a few minutes" becomes hundreds of dollars per cycle. | | "We'll clean up labels later" | Label debt compounds fast and breaks automation that depends on them. | | "Force-push is fine, we're a small team" | Force-push on `main` destroys recovery options. Protect the branch. | | "I'll build the release artifact locally" | Local builds are not reproducible or auditable. CI produces release artifacts. |
A team-project AI harness bootstrap that gives humans and agents a shared operating contract from day one, moving AI leverage from an individual “IC superhero” advantage to a repeatable team capability on an equal playing field.
Google ADK (Agent Development Kit) orchestration patterns — boundaries, agent composition, and tool seams. Trigger when designing or reviewing multi-agent…
JP's signature red-team pass — "how would I break this?" Argue against your own approach before proceeding. Trigger on any high-stakes decision, architecture…
Read-only SRE checkup of any GCP project: deterministic probes of the edge, Cloud Run services, 7-day error logs, Cloud Scheduler, alert policies and uptime…
Cloud guardrails for any vendor workload — Google Cloud (GCP, Vertex AI, GKE), AWS (IAM, EKS, Bedrock), Azure (Entra ID, Policy, AKS), Alibaba Cloud (RAM,…
LLM and cloud cost awareness — model tiering, token budgets, right-sizing, and when a cheaper model suffices. Trigger before finalising any architecture that…
Decompose an epic into atomic parallelizable tasks, route each to the right skill, and keep the four delivery records straight — issues, STATUS, ROADMAP,…