askill
persona

personaSafety 85Repository

Unified entry point for AI Persona OS — setup wizard, in-chat commands, context protection, monitoring, and learning system. Say 'persona setup' to start, 'persona status' for dashboard, or 'persona help' for all commands.

0 stars
1.2k downloads
Updated 2/17/2026

Package Files

Loading files...
SKILL.md

Persona Gateway

This is the unified command gateway for the AI Persona OS plugin. It routes user requests to the appropriate skill based on intent detection.

How It Works

  1. Read the intent mapping configuration
  2. Match user input against keyword patterns
  3. Route to the correct skill
  4. Handle fallback if no match found

Implementation

# Step 1: Load intent mapping
intent_config = READ ${CLAUDE_PLUGIN_ROOT}/commands/persona/intent-mapping.yaml

# Step 2: Parse user input
user_input = LOWERCASE(args)
matched_intent = NULL

# Step 3: Match keywords
FOR EACH intent IN intent_config.intents:
  FOR EACH keyword IN intent.keywords:
    IF keyword IN user_input:
      matched_intent = intent
      BREAK

# Step 4: Route to skill or show help
IF matched_intent IS NOT NULL:
  TASK(
    skill: matched_intent.skill,
    args: args
  )
ELSE:
  # Show fallback help message
  PRINT intent_config.fallback.message

Available Commands

  • persona setup — First-run wizard to configure your AI assistant
  • persona status — View system health dashboard
  • persona help — List all available commands
  • persona checkpoint — Save current context immediately
  • persona heartbeat — Run ambient health check
  • persona learn — Capture a learning or error for review

Examples

/persona setup
/persona status
/persona help
/persona checkpoint
/persona learn "remember to check permissions before file operations"

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

70/100Analyzed 2/22/2026

A moderately complete skill describing an intent-based command routing gateway for an AI Persona OS. Provides clear pseudocode implementation and lists available commands. However, it's missing concrete configuration examples, error handling details, and actual file paths needed for implementation. The skill is somewhat tied to the specific project but the routing pattern itself is reusable. Well-structured and clear, but lacks depth for high actionability.

85
75
60
65
70

Metadata

Licenseunknown
Version-
Updated2/17/2026
Publisherhiivmind

Tags

No tags yet.