Install Tenax
Get persistent project memory for Claude Code in under a minute. Choose your platform below.
/plugin marketplace add Rab-crypto/tenax
/plugin install tenax@tenax-marketplace
Run these commands inside Claude Code, then restart your session.
Alternative: Script Install
One-liner
PS>
irm https://raw.githubusercontent.com/Rab-crypto/tenax/master/install.ps1 | iex
Prerequisites
- Claude Code CLI — Install from claude.ai/code
- PowerShell 5.1+ — Comes with Windows 10/11
Manual Installation
5 stepsInstall Node.js
Tenax requires Node.js 18+. Download from nodejs.org or use winget:
winget install OpenJS.NodeJS.LTSAfter installation, restart your terminal for the node command to be available.
Download Tenax
Clone or download the plugin to a permanent location:
# Option A: Clone with git
git clone https://github.com/Rab-crypto/tenax.git "$env:USERPROFILE\.claude\plugins\tenax"
# Option B: Download ZIP
Invoke-WebRequest -Uri "https://github.com/Rab-crypto/tenax/archive/master.zip" -OutFile tenax.zip
Expand-Archive tenax.zip -DestinationPath "$env:USERPROFILE\.claude\plugins"Install Dependencies
Navigate to the plugin directory and install packages:
cd "$env:USERPROFILE\.claude\plugins\tenax"
npm installRegister the Plugin
Add Tenax to your Claude Code settings. Create or edit ~/.claude/settings.json:
{
"extraKnownMarketplaces": [
{
"name": "local-plugins",
"source": {
"type": "directory",
"path": "%USERPROFILE%\\.claude\\plugins"
}
}
]
}Verify Installation
Start Claude Code and check that Tenax is loaded:
claude
# In Claude Code, run:
/tenax:statusYou're all set!
Tenax will now automatically capture decisions, patterns, and insights from your sessions. Use markers like [D] topic: decision to save knowledge.
$
curl -fsSL https://raw.githubusercontent.com/Rab-crypto/tenax/master/install.sh | bash
Prerequisites
- Claude Code CLI — Install from claude.ai/code
- macOS 10.15+ — Catalina or later
Manual Installation
5 stepsInstall Node.js
Tenax requires Node.js 18+. Install via Homebrew:
brew install nodeOr download from nodejs.org.
Download Tenax
Clone the repository:
# Create plugins directory
mkdir -p ~/.claude/plugins
# Clone the repository
git clone https://github.com/Rab-crypto/tenax.git ~/.claude/plugins/tenaxInstall Dependencies
Install the required packages:
cd ~/.claude/plugins/tenax
npm installRegister the Plugin
Add to ~/.claude/settings.json:
{
"extraKnownMarketplaces": [
{
"name": "local-plugins",
"source": {
"type": "directory",
"path": "~/.claude/plugins"
}
}
]
}Verify Installation
Start Claude Code and test:
claude
# In Claude Code:
/tenax:statusYou're all set!
Tenax will now automatically capture decisions, patterns, and insights from your sessions. Use markers like [D] topic: decision to save knowledge.
$
curl -fsSL https://raw.githubusercontent.com/Rab-crypto/tenax/master/install.sh | bash
Prerequisites
- Claude Code CLI — Install from claude.ai/code
- curl and git — Usually pre-installed
Manual Installation
5 stepsInstall Node.js
Tenax requires Node.js 18+. Use your package manager:
# Ubuntu/Debian
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejsOr download from nodejs.org.
Download Tenax
Clone the repository:
# Create plugins directory
mkdir -p ~/.claude/plugins
# Clone the repository
git clone https://github.com/Rab-crypto/tenax.git ~/.claude/plugins/tenaxInstall Dependencies
Install the required packages:
cd ~/.claude/plugins/tenax
npm installRegister the Plugin
Add to ~/.claude/settings.json:
{
"extraKnownMarketplaces": [
{
"name": "local-plugins",
"source": {
"type": "directory",
"path": "~/.claude/plugins"
}
}
]
}Verify Installation
Start Claude Code and test:
claude
# In Claude Code:
/tenax:statusYou're all set!
Tenax will now automatically capture decisions, patterns, and insights from your sessions. Use markers like [D] topic: decision to save knowledge.
Developer Tip: Hot-Reload
Claude Code v2.1.0+ supports skill hot-reload. Symlink your skills to ~/.claude/skills/ for instant updates during development without reinstalling.