Skill: Add a user grant
SkillCloud & infraLets your agent add a Claude skill-style GCP access grant by turning an access request into a reviewable Pulumi change.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Skill: Add a user grant skill
About this capability
Implement a fully specified request for a GCP IAM resource grant or Cloud Run IAP viewer in marin-iac.
What this skill tells your AI
The instructions your AI receives, as published by marin-community/marin in .agents/skills/add-grant/SKILL.md and read by ahel’s review.
Turn an access request into a reviewable Pulumi change. Every human principal is
KMS-encrypted, including IAP viewers on Cloud Run services. The change is never
applied here — a second person runs the
review-grant skill, merges, and runs pulumi up.
Read first:
infra/pulumi/README.md— the marin-iac stacks, the KMS key, and thepulumi upprerequisites.infra/pulumi/src/iac/gcp/iam_data.yamlheader — why humanuser:principals are encrypted and this file is public.
Grant surfaces
Decide which one the request needs before editing anything. A single request can touch both.
-
Shared project / resource GCP IAM — a role on the
hai-gcp-modelsproject, the KMS key, a Secret Manager secret, a GCS bucket, an Artifact Registry repo, or a service account (who may impersonate it). Lives ininfra/pulumi/src/iac/gcp/iam_data.yaml, applied by themarinstack ininfra/pulumi. Each humanuser:<email>principal is KMS-encrypted once in theprincipalsregistry; grants reference its opaquehuman-NNNID. Service accounts, groups, and domains stay plain strings. -
Deploy-target IAM — runtime, secret, repository, KMS, and IAP grants for Echo, EvalDash, Grafana, or Loom. Lives in that target's Python module under
infra/pulumi/src/iac/gcp/and is composed into themarinstack. Human grants reference the encrypted principal registry by opaque ID.
If you are unsure which surface a request means (e.g. "give Alice access to eval
results" could be an IAP viewer on evaldash, a roles/storage.objectViewer
grant on the record bucket, or both), ask before editing.
Collect the request
You need, per grant:
- Principal — an email for a person, or a
serviceAccount:/group:/domain:member for automation. Only personal emails get encrypted. - What they need access to — the specific resource, stated as a capability ("read the eval record bucket", "impersonate the ray autoscaler SA") rather than a raw role when the requester does not know GCP roles.
- Why / for how long — a one-line justification. If the access is temporary,
note it;
GcpIamConditioncan scope a grant with a CEL expiry, but prefer a follow-up removal PR unless the requester asks for an expiry.
Translate a capability into the narrowest role that satisfies it. Reuse a role already present in the relevant shared or deploy-target declaration for the same resource class before reaching for a broader built-in role. If the request is vague or over-broad, ask for specifics instead of guessing — an IAM grant is hard to walk back once applied.
Running against a GitHub issue
When invoked to respond to an issue rather than a local prompt:
- Fetch it with
gh issue view <n> --repo marin-community/marin --json title,body,comments. - If the issue is missing a principal, the target resource, or a justification,
do not guess — post one comment (prefixed
🤖) listing exactly what you need, and stop. Do not open a half-specified PR. - If the request is complete, build the change and open a PR (below), then comment on the issue linking the PR.
Register and grant the principal
For project-level roles, update the principal registry and every requested role in one command:
uv run --package marin-iac --extra deploy \
python infra/pulumi/iam_principal.py grant alice@openathena.ai \
--project-role roles/logging.viewer \
--project-role roles/monitoring.viewer
The command decrypts existing registry entries locally to find and reuse the
person's opaque ID. It encrypts and registers the email once when the person is
new, then writes deterministic YAML. Encryption and lookup need
roles/cloudkms.cryptoKeyEncrypterDecrypter on the marin-iac key (the same
access pulumi up needs).
For a KMS key, secret, bucket, Artifact Registry repository, or service-account grant, register the principal first:
uv run --package marin-iac --extra deploy \
python infra/pulumi/iam_principal.py register alice@openathena.ai
The command prints the existing or new human-NNN ID. Add
principal: human-NNN to a shared resource grant or
principals["human-NNN"] to a deploy-target module. Never write a personal
email in plaintext into either declaration, a commit message, or the PR body —
the repo is public.
Make the edit
Project / resource IAM — update iam_data.yaml:
- Find the grant for the target role and resource, or add one. Project
roles go in
project_grants; a bucket/secret/repo/service-account grant goes under that resource's entry inbuckets/secrets/artifact_repositories/service_accounts(add the resource entry if it is not there yet). - Project-role requests are already complete after
iam_principal.py grant. For other resource grants, add the registeredprincipal: human-NNNreference. Add a plain member string for service accounts, groups, domains, workload identities, or other automation.
Deploy-target or IAP grant — add the registered principals["human-NNN"]
reference to the target's iam_grants() declaration under
infra/pulumi/src/iac/gcp/. Plain service-account, group, and domain members can
be added directly.
Verify and open the PR
-
./infra/pre-commit.py --files <edited files>(or--changed-files), fixing anything it reports.git adda new file before linting so it is scoped in. -
Do not run
pulumi preview/up— a local preview decrypts and prints the real emails, and applying is the reviewer's step. CI runs a redacted preview on the PR. -
Follow the
commitskill to commit, push, and open the PR againstmain. Add theagent-generatedlabel. Title the PR for the capability, not the person:[iac] Grant eval-bucket read to a new operator, never the email. The body states the resource, the role, and the one-line justification — no personal emails. Note in the body that a reviewer should runreview-grant, thenpulumi upon themarinstack. -
Assign the PR to the grant approvers so one of them picks up
review-grant:gh pr edit <n> --repo marin-community/marin \ --add-assignee yonromai,ravwojdyla,rjpower
Signals
- GitHub stars
- 4k
- Forks
- 303
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
add-grant- Source
- github.com/marin-community/marin