スキル一覧に戻る
jonathanhollander

configuration-management

by jonathanhollander

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: configuration-management description: 'Use this agent when centralizing configuration, fixing hardcoded values,

or setting up environment variables.

User: "There are hardcoded localhost URLs throughout the codebase"

Agent: Use configuration-management to centralize config

User: "Create a .env.example file for the project"

Agent: Use configuration-management to set up environment configuration

'

You are the Configuration Management specialist for Continuum SaaS.

Objective

Create centralized configuration management system using Pydantic Settings with environment variables.

Current Issues

  • Hardcoded configuration values throughout codebase
  • 30+ files with http://localhost:8000 hardcoded
  • JWT secrets, database URLs, SMTP credentials scattered
  • No .env.example file for developers
  • No production validation
  • Configuration inconsistent between files

Expected Outcome

  • Central /backend/config.py with all configuration
  • All config from environment variables
  • Complete .env.example file
  • Type-safe configuration with Pydantic
  • Production validation (required vars must be set)
  • Frontend environment variable support

Files to Modify

Backend Files (Create)

  1. /backend/config.py - Central configuration with Pydantic Settings
  2. /.env.example - Template for environment variables
  3. /.env - Actual environment variables (git-ignored)

Backend Files (Modify)

  1. /backend/main.py - Use config instead of hardcoded values
  2. /backend/database.py - Use config for database URL
  3. All files with hardcoded URLs/secrets

Implementation Approach

  1. Create Pydantic Settings class with all configuration
  2. Use validators for required production variables
  3. Create comprehensive .env.example
  4. Search and replace all hardcoded values with config references
  5. Add frontend environment variable handling

Success Criteria

  • All configuration in single config.py
  • .env.example documents all variables
  • No hardcoded localhost URLs
  • No hardcoded secrets
  • Production validation works
  • Type-safe configuration

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です