njzjz/werewolf-agent-skills · Archived

werewolf-judge

狼人杀法官技能(流程执行版)。 只负责状态机推进、协议校验、?

First seen Apr 6, 2026

Installation

$ npx skills add njzjz/werewolf-agent-skills --skill werewolf-judge

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from njzjz/werewolf-agent-skills.

npx skills add njzjz/werewolf-agent-skills

Browse all from njzjz/werewolf-agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch master
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,309 B
  • docs SUMMARY.md 155 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

werewolf-judge

这是狼人杀法官专用 skill,定位是编排器(orchestrator),不是“会自己推理一切的大脑”。

职责边界

  • ✅ 负责:

- 游戏状态机(FSM)推进 - 给玩家分发结构化任务包(JudgeTask) - 校验玩家回复包(PlayerReply) - 公开信息播报(天亮/平安夜/发言顺序/投票结果)

  • ❌ 不负责:

- 编写玩家角色行为策略 - 让自由文本直接驱动关键动作 - 泄露任何夜间私有信息

使用方式

python skills/werewolf-judge/engine.py init
python skills/werewolf-judge/engine.py next --to night_seer
python skills/werewolf-judge/engine.py snapshot

强制约束

  1. 任何状态迁移必须经过 werewolf_core.fsm.WerewolfFSM。
  2. 任何玩家回复必须经过 werewolfcore.protocol.validateplayer_reply。
  3. 对主会话只输出公开信息;身份与夜间动作仅在游戏结束复盘披露。

依赖

  • packages/werewolf_core/fsm.py
  • packages/werewolf_core/protocol.py
  • packages/werewolf_core/orchestrator.py
  • packages/werewolf_core/channels.py