Move config directory to setup/config and remove unused configurations

- Move config/ to setup/config/ to consolidate installation files
- Delete 3 unused hooks configuration files:
  - hooks-config.json (367 lines of unimplemented hooks config)
  - claude-code-settings-template.json (unused Claude Code hooks template)
  - superclaude-config-template.json (unused SuperClaude config template)
- Keep active configuration files:
  - features.json (component registry)
  - requirements.json (system requirements)
- Update all references to use new CONFIG_DIR path:
  - setup/__init__.py: CONFIG_DIR = SETUP_DIR / "config"
  - setup/operations/install.py: Use CONFIG_DIR import
  - setup/core/validator.py: Use CONFIG_DIR import
- Verify installation functionality works correctly

This consolidates all setup-related configuration in one location
and removes unused configuration cruft from the framework.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
NomenAK
2025-08-14 21:12:48 +02:00
parent 2e0f2cff6c
commit 41d1ef4de4
9 changed files with 6 additions and 599 deletions

View File

@@ -11,7 +11,7 @@ from pathlib import Path
# Core paths
SETUP_DIR = Path(__file__).parent
PROJECT_ROOT = SETUP_DIR.parent
CONFIG_DIR = PROJECT_ROOT / "config"
CONFIG_DIR = SETUP_DIR / "config"
# Installation target
DEFAULT_INSTALL_DIR = Path.home() / ".claude"