人格网关

SkillMonitoring & ops

Once added, your AI can draw on a large collection of ready-made skills, commands, and agent personas for coding and business tasks. It can step into specialist roles across areas like engineering, marketing, product, compliance, research, and business operations, so you don't have to build each ability yourself. The collection is made for popular coding assistants, including Claude Code, Codex, Gemini CLI, and Cursor.

Available today. Use it from your connected AI after setup.

After adding it, tell your AI what you are working on and ask it to use a matching skill or persona, for example one focused on engineering or marketing. You can also try the ready-made commands for common coding and business tasks.

Then ask your AI: use the 人格网关 skill

What your AI can do with it

  • Choose from more than 30 ready-made agent personas
  • Use hundreds of prepared skills for coding and business tasks
  • Run more than 70 ready-made commands for common tasks
  • Get help across engineering, marketing, product, compliance, research, and business operations
  • Work with included reference materials and scripts while completing tasks

What this skill tells your AI

The instructions your AI receives, as published by l-lesteryu/openclaw-hot-skills-zh in skills/ai-persona-os-zh/SKILL.md and read by ahel’s review.

这是 AI 人格操作系统插件的统一命令入口。根据意图检测将用户请求路由到对应的技能模块。

工作原理

  1. 读取意图映射配置
  2. 将用户输入与关键词模式匹配
  3. 路由到正确的技能
  4. 如果没有匹配则显示回退帮助信息

实现方式

# 第一步:加载意图映射
intent_config = READ ${CLAUDE_PLUGIN_ROOT}/commands/persona/intent-mapping.yaml

# 第二步:解析用户输入
user_input = LOWERCASE(args)
matched_intent = NULL

# 第三步:匹配关键词
FOR EACH intent IN intent_config.intents:
  FOR EACH keyword IN intent.keywords:
    IF keyword IN user_input:
      matched_intent = intent
      BREAK

# 第四步:路由到技能或显示帮助
IF matched_intent IS NOT NULL:
  TASK(
    skill: matched_intent.skill,
    args: args
  )
ELSE:
  # 显示回退帮助信息
  PRINT intent_config.fallback.message

可用命令

  • persona setup — 首次运行向导,配置你的 AI 助手
  • persona status — 查看系统健康仪表盘
  • persona help — 列出所有可用命令
  • persona checkpoint — 立即保存当前上下文
  • persona heartbeat — 运行环境健康检查
  • persona learn — 记录一条学习或错误以供回顾

示例

/persona setup
/persona status
/persona help
/persona checkpoint
/persona learn "记住在文件操作前检查权限"

Signals

GitHub stars
54
Forks
8
Last commit
Apr 2026
Advanced
Catalog kind
skill
Gateway key
persona
Source
github.com/l-lesteryu/openclaw-hot-skills-zh