원클릭으로
environment-secrets
Manage environment variables and secrets. View, set, delete env vars and request secrets from users.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage environment variables and secrets. View, set, delete env vars and request secrets from users.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Anthropic AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides Anthropic-compatible API access without requiring your own API key.
Gemini AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides Gemini-compatible API access without requiring your own API key.
OpenAI AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides OpenAI-compatible API access without requiring your own API key.
OpenRouter AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides OpenRouter-compatible API access without requiring your own API key.
Apply a user's saved artifact template (a reusable slides/web style donor) when they ask to build or restyle an artifact "with my template", "using my saved template", "in my brand style", or refer to a template by name. Use this to discover the user's saved templates and materialize one for use.
Use when creating or updating the artifact.toml for artifacts such as websites, web apps, mobile apps, slide decks, pitch decks, videos, and data visualizations.
| name | environment-secrets |
| description | Manage environment variables and secrets. View, set, delete env vars and request secrets from users. |
Use this skill to inspect and manage project environment variables and to request sensitive values from the user.
All functions are available in the JavaScript code execution environment. Call callbacks with a single JSON object argument.
View environment variables and/or secret existence.
Parameters:
type (optional): env, secret, or all. Defaults to all.environment (optional): shared, development, or production. For development or production, shared env vars are also included.keys (optional): list of keys to filter to.Environment variables return actual values grouped by environment. Secrets return existence status only, never values.
return await viewEnvVars({ type: "all" });
Ask the user for sensitive values and stop the current turn. Use this instead of asking for API keys, tokens, passwords, private keys, or credentials in chat.
The user enters values into a secure form. Secret values are saved as Replit Secrets and are not returned to you.
return await requestSecrets({
keys: ["OPENAI_API_KEY"],
userMessage: "Please provide your OpenAI API key.",
});
Ask the user for non-secret environment variable values and stop the current turn.
return await requestEnvVars({
envVars: [{ key: "LOG_LEVEL", environment: "shared" }],
});
Call requestSecrets or requestEnvVars as the final callback in the code execution snippet. The user submits a form outside the code execution runtime; a future turn will include a status message indicating whether the requested values were saved. Secret values are never shown back to you.
Set non-secret environment variables.
Parameters:
values (required): object of key-value pairs.environment (optional): shared, development, or production. Defaults to shared.Use requestSecrets for sensitive values. This callback rejects runtime-managed keys.
return await setEnvVars({
environment: "shared",
values: { NODE_ENV: "production" },
});
Delete non-secret environment variables from the specified environment.
return await deleteEnvVars({
environment: "shared",
keys: ["NODE_ENV"],
});
shared environment unless the user needs distinct development and production values.shared conflicts with the same key in development or production. Delete the conflicting key first, then add it in the target environment.setEnvVars; use requestSecrets({ keys, ... }).viewEnvVars only tells you whether secrets exist.DATABASE_URL, PGDATABASE, PGHOST, PGPORT, PGUSER, PGPASSWORD, REPLIT_DOMAINS, REPLIT_DEV_DOMAIN, REPL_ID. Do not request or set those manually.