| name | athena-dev |
| description | Athena 主入口 skill. 接收用户任务, 做 PACE 路由分诊 (brainstorm/roadmap/plan/...), 启动对应 stage.
v9.6.4 升级: 加 brainstorm + roadmap 分诊 (铁律 14), 加路由检测自动 ultrathink 提示.
|
| effort | medium |
/athena-dev — Athena 主入口 (v9.6.4)
触发
用户进任意项目, 说 "开始", "做个 X", "帮我 Y" 等. 主 agent 进入路由分诊.
路由分诊 (铁律 14)
def route(user_input, ai_state):
if not has_ai_state_dir():
suggest("先跑 /athena-init 初始化项目")
return None
if explicit_kws(["想法不清楚", "先 brainstorm", "讨论", "聊聊"]):
return start_stage("brainstorm")
if explicit_kws(["路线图", "拆分", "分步推进"]):
return start_stage("roadmap")
if explicit_kws(["生产事故", "线上故障", ]):
start_stage(, path=)
explicit_kws([, , ]):
start_stage(, path=)
explicit_kws([, ]):
start_stage(, path=)
explicit_kws([, , ]):
start_stage(, path=)
(user_input.split()) < has_concrete_verb(user_input):
start_stage()
mentions_modules(user_input) >= :
start_stage()
estimated = estimate_scope(user_input)
estimated == :
start_stage(, path=)
estimated == :
start_stage(, path=)
estimated == :
start_stage(, path=)
start_stage(, path=)