Summary:\n- added Codex marketplace registry plus awareness/ethics/guardrails sub-plugins\n- mirrored Claude plugin commands/scripts/hooks into codex api/ci/code/collect/coolify/core/issue/perf/qa/review/verify\n- embedded Axioms of Life ethics modal, guardrails, and kernel files under codex/ethics\n- added Codex parity report, improvements list, and MCP integration plan\n- extended Gemini MCP tools and docs for Codex awareness
24 lines
608 B
Markdown
24 lines
608 B
Markdown
---
|
|
name: /core:env
|
|
description: Manage environment configuration
|
|
args: [check|diff|sync]
|
|
---
|
|
|
|
# Environment Management
|
|
|
|
Provides tools for managing `.env` files based on `.env.example`.
|
|
|
|
## Usage
|
|
|
|
- `/core:env` - Show current environment variables (with sensitive values masked)
|
|
- `/core:env check` - Validate `.env` against `.env.example`
|
|
- `/core:env diff` - Show differences between `.env` and `.env.example`
|
|
- `/core:env sync` - Add missing variables from `.env.example` to `.env`
|
|
|
|
## Action
|
|
|
|
This command is implemented by the following script:
|
|
|
|
```bash
|
|
"${CLAUDE_PLUGIN_ROOT}/scripts/env.sh" "$1"
|
|
```
|