Browse Source

chore: Move installers to scripts directory

- Move install.sh and install.ps1 to scripts/
- Update README.md with new paths and structure

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0xDarkMatter 5 months ago
parent
commit
7be2e7cea6
3 changed files with 5 additions and 6 deletions
  1. 5 6
      README.md
  2. 0 0
      scripts/install.ps1
  3. 0 0
      install.sh

+ 5 - 6
README.md

@@ -9,11 +9,10 @@ claude-mods/
 ├── commands/           # Slash commands
 ├── skills/             # Custom skills
 ├── agents/             # Custom subagents
-├── tools/              # Modern CLI toolkit (install scripts, docs)
+├── tools/              # Modern CLI toolkit docs
 ├── rules/              # Claude Code rules (cli-tools.md)
-├── tests/              # Test suites
-├── install.sh          # Linux/macOS installer
-└── install.ps1         # Windows installer
+├── tests/              # Test suites and justfile
+└── scripts/            # Install scripts
 ```
 
 ## Installation
@@ -24,14 +23,14 @@ claude-mods/
 ```bash
 git clone https://github.com/0xDarkMatter/claude-mods.git
 cd claude-mods
-./install.sh
+./scripts/install.sh
 ```
 
 **Windows (PowerShell):**
 ```powershell
 git clone https://github.com/0xDarkMatter/claude-mods.git
 cd claude-mods
-.\install.ps1
+.\scripts\install.ps1
 ```
 
 ### Manual Install

install.ps1 → scripts/install.ps1


+ 0 - 0
install.sh