What problem does it solve? Managing customer configuration files for AutoResearch involves sensitive fields like passwords, SSH keys, and API tokens that must never be exposed in plain text. This Skill provides a safe workflow for creating, validating, and viewing config.yaml files without leaking credentials. ## Core Features & Use Cases - Config Generation: Initialize a new customer configuration file via the config_init.py script with a structured template. - Schema Validation: Validate configuration files against a Pydantic schema to catch malformed or missing fields before runtime. - Redacted Display: Inspect configuration contents with sensitive values masked (e.g., passwords shown as ***), using keyring or environment variable placeholders for secrets. - Use Case: Before running an experiment on a remote NPU server, generate a config.yaml, validate it against the schema, and review it with secrets redacted to confirm settings without exposing credentials. ## Quick Start Ask the assistant to generate and validate a new AutoResearch customer configuration file at config/config.yaml with secrets stored safely.