Show and toggle Navigator features. Auto-invoke when user says "show features", "enable/disable feature", "my navigator settings", or "configure navigator".
View on GitHubalekspetrov/navigator
navigator
January 23, 2026
Select agents to install to:
npx add-skill https://github.com/alekspetrov/navigator/blob/main/skills/nav-features/SKILL.md -a claude-code --skill nav-featuresInstallation paths:
.claude/skills/nav-features/# Navigator Features Skill Display and toggle Navigator features with an interactive table. Helps users understand what's enabled and customize their setup. ## When to Invoke Invoke this skill when the user: - Says "show my features", "navigator features", "what features are enabled" - Says "enable [feature]", "disable [feature]", "turn on/off [feature]" - Says "configure navigator", "my navigator settings" - Asks "what can navigator do?", "what features are available?" **DO NOT invoke** if: - User is asking about project features (not Navigator) - User is in middle of implementation - Just starting session (use nav-start instead) ## Execution Steps ### Step 1: Read Current Configuration ```bash python3 "$SKILL_BASE_DIR/functions/feature_manager.py" show ``` This displays the feature table: ``` v5.6.0 Features: ┌─────────────────┬────────┬─────────────────────────────────────────────────┐ │ Feature │ Status │ Description │ ├─────────────────┼────────┼─────────────────────────────────────────────────┤ │ task_mode │ ✅ │ Auto-detects task complexity, defers to skills │ │ tom_features │ ✅ │ Verification checkpoints, user profile, diag... │ │ loop_mode │ ⏸ Off │ Autonomous loop execution (enable when needed) │ │ simplification │ ✅ │ Post-implementation code cleanup with Opus │ │ auto_update │ ✅ │ Auto-updates on session start │ └─────────────────┴────────┴─────────────────────────────────────────────────┘ All v5.6.0 features configured. ``` ### Step 2: Handle Toggle Request (If Applicable) If user requested to enable/disable a feature: ```bash # Enable a feature python3 "$SKILL_BASE_DIR/functions/feature_manager.py" enable task_mode # Disable a feature python3 "$SKILL_BASE_DIR/functions/feature_manager.py" disable loop_mode ``` **Supported features**: - `task_mode` - Unified workflow orchestration - `tom_features` - Theory of Mind (verification checkpo