Directory-scoped Google Cloud service account impersonation contexts
Project description
gcpctx
Directory-scoped Google Cloud service account impersonation contexts for terminals, IDEs, and coding agents.
What is gcpctx?
gcpctx automatically activates an isolated Google Cloud SDK and Application Default Credentials (ADC) environment when you enter a directory with a .gcpctx.toml file. Each profile maps to a GCP project and an impersonated service account. Activation exports a dedicated CLOUDSDK_CONFIG so your global ~/.config/gcloud is never mutated.
Why directory-scoped impersonation?
Developers and coding agents often inherit broad or wrong GCP credentials from the parent shell. gcpctx scopes authentication to the repository you are working in, with first-use approval and config-hash invalidation when trust-relevant settings change.
Installation
Choose one of these options:
| Method | Best for |
|---|---|
uvx |
Try without installing, CI one-offs, pinned versions |
pipx |
Daily CLI use on your machine |
| From source | Contributing or unreleased builds |
Run with uvx (no install)
uvx runs gcpctx in an ephemeral environment—no global install required.
# Latest from PyPI (when published)
uvx gcpctx --help
# Pin a version
uvx gcpctx@0.3.0 status
# Run from a local checkout (before publish)
uvx --from /path/to/gcpctx gcpctx --help
Typical workflow with uvx:
cd my-repo
uvx gcpctx init-project \
--project my-dev-project \
--service-account agent-dev@my-dev-project.iam.gserviceaccount.com
uvx gcpctx approve
eval "$(uvx gcpctx activate --shell zsh)"
uvx gcpctx status
uvx gcpctx doctor
Shell hooks installed via gcpctx init zsh call gcpctx on your PATH. After choosing uvx, either add a shell alias (alias gcpctx='uvx gcpctx') or install with pipx / uv tool install for hook integration.
pipx
pipx install gcpctx
gcpctx --help
From source
git clone <repo-url> && cd gcpctx
uv sync
uv run gcpctx --help
# optional: uv tool install -e .
Quick start
# 1. Create project config
gcpctx init-project --project my-dev-project \
--service-account agent-dev@my-dev-project.iam.gserviceaccount.com
# 2. Approve and activate (zsh example)
gcpctx approve
eval "$(gcpctx activate --shell zsh)"
# 3. Verify
gcpctx status
gcloud config list
.gcpctx.toml example
version = 1
default_profile = "dev"
[profiles.dev]
project = "my-dev-project"
service_account = "agent-dev@my-dev-project.iam.gserviceaccount.com"
quota_project = "my-billing-project"
region = "asia-northeast1"
Examples
See examples/README.md for a manual integration demo that verifies google.auth.default() under gcpctx and chained service-account impersonation in Python (Terraform-backed IAM in examples/terraform/).
Shell integration
gcpctx init zsh # or: gcpctx init bash
exec $SHELL # reload shell
The hook runs gcpctx hook eval on every directory change. Stdout is shell code only; diagnostics go to stderr.
Manual activation without hooks:
eval "$(gcpctx activate --shell zsh)"
eval "$(gcpctx deactivate --shell zsh)" # restore prior env
Switch profile (after gcpctx init installs the wrapper):
gcpctx-use prod-readonly
IDE usage (VS Code, Cursor, JetBrains)
Integrated terminals inherit the parent shell environment. Subprocesses started by the IDE (build tasks, debuggers, test runners) see the same CLOUDSDK_CONFIG, ADC, and GCPCTX_* variables as your shell.
Recommended setup
- Install shell hooks (
gcpctx init zsh) or manuallyeval "$(gcpctx activate --shell zsh)"in your login shell. - Open the IDE from that shell (
cursor .,code .) so new integrated terminals start activated. - Confirm with
gcpctx statusin an integrated terminal.
Verify isolation
gcpctx status
gcpctx doctor
gcpctx doctor --json # machine-readable for scripts
Doctor checks that CLOUDSDK_CONFIG lives under ~/.cache/gcpctx/contexts/, gcloud project/impersonation match your profile, and ADC is initialized.
GOOGLE_APPLICATION_CREDENTIALS
In hook mode, GOOGLE_APPLICATION_CREDENTIALS is unset while active (previous value restored on deactivate) so ADC impersonation is not overridden. If you must keep a key file in non-interactive sessions, pass --allow-google-application-credentials to activate.
Coding agents (Cursor, Claude Code, Codex, Copilot)
Agents run in terminals or sandboxes that inherit environment variables. Use either shell activation (whole session) or gcpctx run (one process only).
Process-scoped launch (recommended for agents)
Run a command with per-project credentials without changing your parent shell:
gcpctx approve
gcpctx run -- claude
uvx gcpctx run -- codex ...
gcpctx run --profile dev -- gcloud storage ls
- Requires
.gcpctx.tomlin the current directory tree (exit 2 if missing). - Pre-approve for non-interactive terminals (
gcpctx approve). GOOGLE_APPLICATION_CREDENTIALSis unset in the child by default (same as hook mode).- Access tokens are short-lived; client libraries refresh ADC automatically (no gcpctx supervisor).
Shell activation (whole session)
-
Add
.gcpctx.tomlto the repo (gcpctx init-project). -
Approve once interactively, or pre-approve for automation:
gcpctx approve # remembered approval for this directory/profile
-
Activate in the shell that launches the agent:
eval "$(gcpctx activate --shell zsh)"
-
Agents and their subprocesses inherit isolated credentials.
Non-interactive / fail-closed
Without a matching approval, gcpctx activate exits with code 3 in non-interactive mode (typical agent terminals). Pre-run gcpctx approve in CI or document that users must activate interactively once.
Agent-friendly diagnostics
gcpctx doctor --json
gcpctx status --json
Use gcpctx status --json for activation fields (active, cloudsdk_config, approval, project, etc.).
Use gcpctx doctor --json for the compliance gate: versioned check results with id, severity, evidence, and structured remediation. See Doctor JSON contract.
When GOOGLE_APPLICATION_CREDENTIALS is required
Some tools insist on a key file path. Use --allow-google-application-credentials only when necessary; prefer impersonated ADC otherwise.
Security model (v0.3)
Security invariant
For any activated process, gcpctx guarantees that effective gcloud project, ADC context, impersonated service account, quota project, and credential-relevant environment variables match the approved profile and active policy, or activation fails closed.
See SECURITY.md for the enforcement map and Doctor JSON contract for machine-readable validation.
- POSIX only — Windows is unsupported (exit 10); the CLI fails closed until ACL checks land.
- First-use approval with remember + TTL (default 30 days); schema v2 binds gcloud path and fingerprint
- Config SHA-256 binding invalidates approval when project, service account, or config changes
- Immutable project identity —
CLOUDSDK_CORE_PROJECTalways matchesprofile.project(cannot set viaenv) - Isolated
CLOUDSDK_CONFIGunder~/.cache/gcpctx/contexts/ - Atomic, locked, symlink-safe writes for approvals and context state (
0600/0700) - gcloud binary trust validation (repo-local shadowing, world-writable parents, optional allowlist)
- Service account impersonation only (no long-lived key files in repo config)
GOOGLE_APPLICATION_CREDENTIALSunset by default in hook mode (restored on deactivate)- Optional
policy.tomlfor org-style allowlists and strict mode gcpctx doctor --strict --jsonfor CI/agent compliance gates- Append-only
audit.jsonlfor security events (no credential material)
See SECURITY.md and Architecture decision records (ADR-0003 through ADR-0009).
Upgrading to v0.3
Breaking: exit codes were remapped for automation. Notable changes from v0.2:
| Situation | v0.2 exit | v0.3 exit |
|---|---|---|
| Policy violation | 7 | 4 |
Unsafe filesystem (state_permissions) |
4 | 5 |
| gcloud trust / project / impersonation | 5 | 6 |
| ADC not initialized | 5 | 7 |
| IAM impersonation probe | 5 | 8 |
| Config schema error | 2 | 9 |
| Windows unsupported | 8 | 10 |
GOOGLE_APPLICATION_CREDENTIALS set |
6 | 4 |
Doctor --json shape changed: checks use id, status (pass/warn/fail), severity, evidence, and structured remediation. Top-level fields include version, status, profile, and context_id. See Doctor JSON contract.
Upgrading from v0.1
- Remove any
[profiles.*.env] CLOUDSDK_CORE_PROJECTentries — useprofile.projectinstead. - Service account emails must use the same GCP project as
profile.project(e.g.agent@my-dev-project.iam.gserviceaccount.comforproject = "my-dev-project"). Cross-project impersonation is not supported in v0.2. - Re-run
gcpctx approveafter upgrade (approval schema v2 adds gcloud binding and expiry). - Pin gcloud per project if needed: add
gcloud_pathto.gcpctx.tomlor rungcpctx config set-gcloud-path "$(which gcloud)"in the repo (optional; pinning overrides PATH — rungcpctx config unset-gcloud-pathif you move or upgrade gcloud)
Policy file (optional)
~/.config/gcpctx/policy.toml or $GCPCTX_POLICY_PATH:
version = 1
[policy]
mode = "strict"
approval_ttl_days = 30
require_initialized_adc_for_hook = true
[allow]
projects = ["dev-*"]
[gcloud]
allowed_paths = ["/opt/google-cloud-sdk/bin/gcloud"]
Strict doctor
gcpctx doctor --strict --json
Non-zero exit when isolation, approval, ADC, IAM impersonation, or filesystem posture is unsafe. Exit codes are stable in v0.3 — see Doctor JSON contract.
Troubleshooting
| Symptom | Fix |
|---|---|
approval required in CI/agent |
Run gcpctx approve once, or activate interactively |
| Wrong project | gcpctx status; check .gcpctx.toml |
| Stale credentials | gcpctx refresh, gcpctx reset, or gcpctx clean (then gcpctx clean --reinit) |
| Corrupt isolated ADC / clutter | gcpctx clean (project); gcpctx clean --all-contexts (all cache) |
| Reset remembered approvals | gcpctx clean --approvals or gcpctx revoke |
gcloud not found |
Install Google Cloud SDK |
| ADC issues | gcpctx doctor |
| IDE terminal not activated | Activate in parent shell before launching IDE, or use shell hooks |
Contributing
See CONTRIBUTING.md for developer setup, tests, and architecture notes.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gcpctx-0.3.0.tar.gz.
File metadata
- Download URL: gcpctx-0.3.0.tar.gz
- Upload date:
- Size: 173.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2764b9d3a9002b4c60bb46b0cff41fb74a5a147dcf3844327d0980d24c1d6cd5
|
|
| MD5 |
601a491e3b1d631706f8e103588980ef
|
|
| BLAKE2b-256 |
dafa0b93ae38dafd1f5c6f47c50f0a5600ae7fd8d72902f29599360e1eca133f
|
Provenance
The following attestation bundles were made for gcpctx-0.3.0.tar.gz:
Publisher:
publish.yml on yu-iskw/gcpctx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gcpctx-0.3.0.tar.gz -
Subject digest:
2764b9d3a9002b4c60bb46b0cff41fb74a5a147dcf3844327d0980d24c1d6cd5 - Sigstore transparency entry: 1933253236
- Sigstore integration time:
-
Permalink:
yu-iskw/gcpctx@7f7ad6fb6386fb35bd09677410a7409576e66df6 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/yu-iskw
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7f7ad6fb6386fb35bd09677410a7409576e66df6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file gcpctx-0.3.0-py3-none-any.whl.
File metadata
- Download URL: gcpctx-0.3.0-py3-none-any.whl
- Upload date:
- Size: 60.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32a56e4f82307b9cc4e1efcb4d864b11a4aa846253deb539049ab6f50e831e45
|
|
| MD5 |
9bc9717467c5baebde9e7c35d3b6183e
|
|
| BLAKE2b-256 |
f99304003bd5a20adf90fcf464975d93bc7bbaedc8b2e06f81300b7418f08aaa
|
Provenance
The following attestation bundles were made for gcpctx-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on yu-iskw/gcpctx
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gcpctx-0.3.0-py3-none-any.whl -
Subject digest:
32a56e4f82307b9cc4e1efcb4d864b11a4aa846253deb539049ab6f50e831e45 - Sigstore transparency entry: 1933253277
- Sigstore integration time:
-
Permalink:
yu-iskw/gcpctx@7f7ad6fb6386fb35bd09677410a7409576e66df6 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/yu-iskw
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7f7ad6fb6386fb35bd09677410a7409576e66df6 -
Trigger Event:
release
-
Statement type: