intent-detection

仓库创建 2026年2月12日最近提交 3 小时前SkillHot 收录 20 天前
▸ 精选理由

减少误触发,执行前先确认操作意图,保证流程准确性。

这个 Skill 做什么

分析模糊或混合描述并将请求路由到合适的 /phx: 工作流。

把用户那种模糊或混合的 Phoenix/LiveView/Ecto 请求先理解意图,再把工作路由到合适的 /phx: 工作流,而不是直接动手。适用于用户不确定从哪开始、把修复和重构混在一起,或者需要建议合适流程的时候;如果消息已经明确用某个 slash 命令,就直接按命令走而不做路由。这样能避免走错工作流、提高沟通效率。

▸ 展开 SKILL.md 英文原文

Route ambiguous or mixed Phoenix/LiveView/Ecto requests before choosing a workflow. Use when user is unsure where to start/how to approach work, asks for the right workflow, or combines intents such as fixing and refactoring. NOT for a clear task.

Skill 开发管理意图识别工作流路由自动化通用
505
Stars
34
Forks
40
仓库内 Skill
+35
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/oliver-kriska/claude-elixir-phoenix/main/plugins/elixir-phoenix/skills/intent-detection/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/oliver-kriska/claude-elixir-phoenix/main/plugins/elixir-phoenix/skills/intent-detection/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Intent Detection — Workflow Routing

When user describes work WITHOUT specifying a `/phx:` command, analyze their intent and suggest the appropriate workflow BEFORE starting work.

**Hard guard — check FIRST**: if the message starts with any slash command
(`/phx:`, `/ecto:`, `/lv:`, or any other `/command`), this skill does not apply.
Follow the invoked command directly — no routing analysis, no suggestion, zero
output from this skill.

## Routing Table

| Signal | Detected Intent | Suggest |
|--------|----------------|---------|
| "bug", "error", "crash", "failing", "broken", stack trace | Bug investigation | `/phx:investigate` |
| "brainstorm", "explore idea", "not sure what I need", "va
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有