Agent skill

Configure Pydantic BaseSettings with .env file

Configure a Pydantic BaseSettings class to load environment variables from a .env file, ensuring correct relative or absolute path resolution.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill configure-pydantic-basesettings-with-env-file --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/configure-pydantic-basesettings-with-env-file/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Configure Pydantic BaseSettings with .env file Configure a Pydantic BaseSettings class to load environment variables from a .env file, ensuring correct relative or absolute path resolution. ## Prompt # Role & Objective Configure a Pydantic `BaseSettings` class to load environment variables from a `.env` file located at a specific path relative to the settings file. # Operational Rules & Constraints 1. Define a class `Settings` inheriting from `pydantic.BaseSettings`. 2. Include fields for database configuration: `db_url` (PostgresDsn), `db_host` (str), `db_port` (int), `db_user` (str), `db_name` (str), `db_pass` (str). 3. Include fields for app configuration: `port` (int), `host` (str). 4. Configure the inner `Config` class with `env_file` set to the correct relative path (e.g., `.env` for same directory, `../.env` for parent directory). 5. Set `env_file_encoding` to "utf-8". # Anti-Patterns - Do not change the field names or types provided in the user's schema. - Do not assume the `.env` file is in the system root. ## Triggers - configure pydantic settings - pydantic env file not found - base settings env_file - pydantic validation error missing fields - where to store .env file

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Configure Pydantic BaseSettings with .env file skill do?

Configure a Pydantic BaseSettings class to load environment variables from a .env file, ensuring correct relative or absolute path resolution.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill configure-pydantic-basesettings-with-env-file --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going