원클릭으로
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 직업 분류 기준
Design static ad creatives for social media and display advertising campaigns.
Source and evaluate candidates with job analysis, CV screening, and pipeline tracking.
Find relevant companies and leads for B2B sales with ICP definition and qualification frameworks.
Draft emails, manage calendars, prepare agendas, and organize productivity.
Create brand identity kits — logos, color palettes, typography, naming, and style guides.
Conduct thorough, multi-source research with structured reports and source scoring.
| 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.