AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Manage Env Vars

skill-intuned-skills-manage-env-vars · by Intuned

Give an Intuned project's APIs the environment variables and secrets they need (API keys, tokens, endpoints, config) — deciding between a local `.env`, project-scoped, or workspace-scoped store, and getting the AUTHORING/PUBLISHED environments right so the value is actually available where it runs. Load when an API needs a secret or configurable value, or when you're collecting config that isn't…

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-intuned-skills-manage-env-vars

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-intuned-skills-manage-env-vars)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Manage Env Vars? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Environment Variables & Secrets

The capability is supplying values an API shouldn't have hard-coded — API keys, auth tokens, base URLs, account IDs, feature flags — and storing each one where it will actually be readable when the code runs. This is not for auth-session logins (those live in .parameters/auth-sessions/ — see the auth-sessions skill); it's for everything else an API reads from the environment.

Core rules

  • Never hard-code a secret into an API file or commit it. Read it from the environment instead.
  • Never handle the value yourself. Don't ask the user to paste a secret into the chat, and don't run a command with the secret as an argument. You decide the key name and which store to use, then hand the user the command to run (for a platform var) or ask them to add the line to .env — the value goes straight to storage and never passes through you. Tell the user which keys are needed (and which are required) all at once.
  • Read values from the environment in code:
  • Python: os.environ["MY_KEY"] (or os.getenv("MY_KEY") for an optional default).
  • TypeScript: process.env.MY_KEY.

Where to store — three places

| Store | How (the user does this — ` is their placeholder to fill) | Scope | Best for | | --------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ------------------------------ | ------------------------------------------------------------------------- | | **Local .env** | ask the user to add KEY= to .env at the project root (git-ignored) | local dev only | Local-only builds, quick iteration, values you don't want on the platform | | **Project env var** | give the user this to run: intuned platform env-vars create --key KEY --value --envs AUTHORING,PUBLISHED | this project | Per-project secrets that also work in deployed runs | | **Workspace env var** | give the user this to run: intuned platform workspace env-vars create --key KEY --value --envs AUTHORING,PUBLISHED` | every project in the workspace | Shared keys reused across projects (common API keys, service creds) |

You provide the exact command (or .env line) with the real key name and a ` placeholder; **the user fills the value and runs it / saves the file themselves.** Don't substitute the value or run the command yourself. The intuned-cli skill has the full flag reference for platform env-vars and platform workspace env-vars`.

The --envs rule — the part that's easy to get wrong

Each platform env var is exposed to one or both environments, set with --envs:

  • AUTHORING — available during local/dev/agent work, i.e. to intuned dev attempt and intuned dev run.
  • PUBLISHED — available in deployed (production) runs.

The default is PUBLISHED only. A var created with the default is NOT visible to local dev attempt/dev run — only after deploy. So:

  • To use a platform env var during the local build, it must include AUTHORING.
  • To use it after deploy too, include PUBLISHED.
  • Default to --envs AUTHORING,PUBLISHED so the value works both while you build and once the project is live. Narrow it only when the user wants the value to exist in just one environment.

A local .env value is always available in local dev (no --envs concept) but never ships to the platform.

Resolution & override order (local dev)

When dev attempt/dev run build the environment, values resolve in this order (later overrides earlier):

  1. Workspace AUTHORING vars
  2. Project AUTHORING vars (override workspace on key clash)
  3. .env / process.env (override remote vars on key clash)

So a key in .env wins locally over the same key stored on the platform. Before creating a new platform var, you can check whether it already exists at workspace level (intuned platform workspace env-vars list) so you don't shadow it unintentionally.

Quick recipe

  1. Identify what the API needs (key names, which are required).
  2. Pick the store:
  • local-only → .env;
  • shared across projects → workspace env var with --envs AUTHORING,PUBLISHED;
  • per-project → project env var with --envs AUTHORING,PUBLISHED.
  1. Hand the user the exact .env line or command to run, with a `` placeholder — they fill the real value. Never paste it into chat, never run it yourself with the secret.
  2. Read the values in code via os.environ / process.env.
  3. Confirm each value is in the right place for where it runs (AUTHORING / .env for local, PUBLISHED for deployed).

Consulting the docs

For more info, search the Intuned docs using the search_intuned and query_docs_filesystem_intuned tools.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.