Complete installation instructions for Claude Code Tresor.
Before installing Claude Code Tresor, ensure you have:
- Claude Code CLI installed and configured
- Git installed (version 2.0 or higher)
- Terminal/Command Line access
- Text Editor for customization (optional)
# Check Claude Code CLI
claude --version
# Check Git
git --versionClaude Code Tresor supports three installation methods:
Installs all components: 8 skills + 8 agents + 4 commands
# Clone repository
git clone https://github.com/alirezarezvani/claude-code-tresor.git
cd claude-code-tresor
# Run installation script
./scripts/install.shWhat gets installed:
- 8 autonomous skills in
~/.claude/skills/ - 8 specialized agents in
~/.claude/agents/ - 4 slash commands in
~/.claude/commands/ - Prompt templates and standards
Installation time: ~2-3 minutes
Install only specific components:
./scripts/install.sh --skillsInstalls:
- code-reviewer
- test-generator
- git-commit-helper
- security-auditor
- secret-scanner
- dependency-auditor
- api-documenter
- readme-updater
./scripts/install.sh --agentsInstalls:
- @code-reviewer
- @test-engineer
- @docs-writer
- @architect
- @debugger
- @security-auditor
- @performance-tuner
- @refactor-expert
./scripts/install.sh --commandsInstalls:
- /scaffold
- /review
- /test-gen
- /docs-gen
Install prompts, templates, and standards without skills/agents/commands:
./scripts/install.sh --resources-onlyUse this if you only want reference materials and templates.
After installation, verify everything works:
# Check installed skills
ls ~/.claude/skills/
# Expected output:
# code-reviewer/
# test-generator/
# git-commit-helper/
# security-auditor/
# secret-scanner/
# dependency-auditor/
# api-documenter/
# readme-updater/# Check installed agents
ls ~/.claude/agents/
# Expected output:
# code-reviewer/
# test-engineer/
# docs-writer/
# architect/
# debugger/
# security-auditor/
# performance-tuner/
# refactor-expert/# Check installed commands
ls ~/.claude/commands/
# Expected output:
# scaffold/
# review/
# test-gen/
# docs-gen/Start Claude Code and test components:
# Start Claude Code
claude
# In conversation, skills activate automatically when you save code files
# Test an agent
@code-reviewer analyze this function for best practices
# Test a command
/scaffold --helpError: Permission denied: ./scripts/install.sh
Solution:
# Make install script executable
chmod +x ./scripts/install.sh
# Run installation again
./scripts/install.shError: ./scripts/install.sh: No such file or directory
Solution:
# Ensure you're in repository root
pwd # Should show: .../claude-code-tresor
# List scripts directory
ls scripts/
# If missing, re-clone repository
cd ..
rm -rf claude-code-tresor
git clone https://github.com/alirezarezvani/claude-code-tresor.git
cd claude-code-tresorProblem: Skills installed but not activating in conversations
Solution:
- Restart Claude Code CLI
- Verify skills are in
~/.claude/skills/ - Check skill configuration:
cat ~/.claude/skills/code-reviewer/SKILL.md- Ensure trigger keywords are used (see Getting Started Guide)
Problem: @agent-name not found
Solution:
- Verify agent directory exists:
ls ~/.claude/agents/code-reviewer/- Check agent configuration:
cat ~/.claude/agents/code-reviewer/SKILL.md- Restart Claude Code CLI
Problem: /command-name not recognized
Solution:
- Verify command directory exists:
ls ~/.claude/commands/scaffold/- Check command configuration:
cat ~/.claude/commands/scaffold/command.json- Restart Claude Code CLI
- Try full command path:
/development/scaffoldinstead of/scaffold
After successful installation:
-
- Learn how to use skills, agents, and commands
- Follow first-time user walkthrough
-
- See real-world workflows
- Learn best practices
-
- Modify skill behavior
- Configure agents
- Customize commands
-
- Common questions
- Troubleshooting tips
To update Claude Code Tresor to the latest version:
cd claude-code-tresor
# Pull latest changes
git pull origin main
# Re-run installation
./scripts/update.shThe update script preserves your customizations while updating utilities.
To remove Claude Code Tresor:
# Remove skills
rm -rf ~/.claude/skills/code-reviewer
rm -rf ~/.claude/skills/test-generator
rm -rf ~/.claude/skills/git-commit-helper
rm -rf ~/.claude/skills/security-auditor
rm -rf ~/.claude/skills/secret-scanner
rm -rf ~/.claude/skills/dependency-auditor
rm -rf ~/.claude/skills/api-documenter
rm -rf ~/.claude/skills/readme-updater
# Remove agents
rm -rf ~/.claude/agents/code-reviewer
rm -rf ~/.claude/agents/test-engineer
rm -rf ~/.claude/agents/docs-writer
rm -rf ~/.claude/agents/architect
rm -rf ~/.claude/agents/debugger
rm -rf ~/.claude/agents/security-auditor
rm -rf ~/.claude/agents/performance-tuner
rm -rf ~/.claude/agents/refactor-expert
# Remove commands
rm -rf ~/.claude/commands/scaffold
rm -rf ~/.claude/commands/review
rm -rf ~/.claude/commands/test-gen
rm -rf ~/.claude/commands/docs-gen
# Remove repository
cd ..
rm -rf claude-code-tresorIf you encounter issues:
- Troubleshooting Guide → - Common problems and solutions
- GitHub Issues → - Report bugs
- GitHub Discussions → - Ask questions
- FAQ → - Frequently asked questions
Last Updated: November 7, 2025 | Version: 2.0.0