Set or change your AIDA personality
Manages AIDA personality settings by enabling, disabling, or listing available personalities.
/plugin marketplace add oakensoul/aida-core-plugin/plugin install core@aidaIMPORTANT: This command requires you to execute bash commands. Do not just explain - actually run them!
/personality jarvis
/personality list
/personality none
/personality <argument>Step 1: Determine the action
Run this command:
if [ -f ~/.claude/config/personality.txt ]; then
cat ~/.claude/config/personality.txt
else
echo "none"
fi
Then tell the user:
Current personality: <result>
Usage:
/personality jarvis - Enable JARVIS personality
/personality list - Show available personalities
/personality none - Disable personality
Run this command to find installed personalities:
ls -d ~/.claude/plugins/cache/aida-personality-* 2>/dev/null | sed 's|.*/aida-personality-||'
Check current personality:
cat ~/.claude/config/personality.txt 2>/dev/null || echo "none"
Then show the user:
Available AIDA personalities:
<list each found personality>
- <name> - <read description from plugin.json if available>
Status: Installed
Current: <current personality>
To activate: /personality <name>
Run these commands:
mkdir -p ~/.claude/config
rm -f ~/.claude/config/personality.txt
Then tell the user:
✓ Personality disabled
AIDA will use neutral core behavior.
Restart Claude Code to apply this change.
Step 1: Verify the personality plugin exists
Run this command (replace <name> with the personality name):
test -d ~/.claude/plugins/cache/aida-personality-<name> && echo "exists" || echo "missing"
If "missing":
/plugin install personality-<name>@aidaIf "exists":
Step 2: Write the configuration
Run these commands:
mkdir -p ~/.claude/config
echo "<name>" > ~/.claude/config/personality.txt
Step 3: Verify it was written
cat ~/.claude/config/personality.txt
Step 4: Tell the user:
✓ Personality set to: <name>
The <name> personality will be loaded at the start of your next Claude Code session.
To activate now:
1. Exit Claude Code (type 'exit' or Ctrl+D)
2. Start Claude Code again
The session-start hook will load your personality automatically.
~/.claude/config/personality.txt~/.claude/plugins/cache/aida-personality-<name>/