-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Nurul Hadi edited this page Jun 5, 2026
·
1 revision
Amanah Blueprint can be installed locally for a specific project or globally for all your development work.
The easiest way to get started with Claude Code is via npx. Run this command in your project's root directory:
npx amanah-blueprintThis command will:
- Create the
.amanah/directory. - Bootstrap project-specific skills and agents in
.claude/. - Register the custom slash commands.
For Gemini CLI users, we recommend a global installation so the framework is available in every repository.
gemini skills install amanah-blueprint.skill --scope user
gemini skills install atlas-generator.skill --scope userCopy the command definitions to your Gemini configuration directory:
Windows (PowerShell)
$dest = "$env:USERPROFILE\.gemini\commands"
New-Item -ItemType Directory -Force -Path $dest
Copy-Item "skill-source/gemini-commands/*.toml" -Destination $destIf you prefer a manual setup or are in a restricted environment:
# 1. Clone the repository
git clone https://github.com/NHadi/AmanahAgent.Blueprint.Skills.git
cd AmanahAgent.Blueprint.Skills
# 2. Run the installation script
bash install.shNote: Our installer is pinned to a specific secure commit to ensure supply-chain integrity.