workspace/hyodo/skills/strategy-engine/SKILL.md
4-stage command triage and orchestration using LangGraph. Routes decisions through 3 strategists. (Standalone mode uses InMemoryQueue instead of Redis)
npx skillsauth add lofibrainwav/kingdom strategy-engineInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The strategic command center of AFO Kingdom, orchestrating decisions through the wisdom of 3 legendary strategists.
| Strategist | Korean | Role | Specialty | |------------|--------|------|-----------| | Jang Yeong-sil | 장영실 | Prime Strategist | Long-term planning, complex analysis | | Yi Sun-sin | 이순신 | Risk Strategist | Risk assessment, defensive measures | | Shin Saimdang | 신사임당 | UX Strategist | Quick decisions, user experience |
[User Command] → [Parse] → [Triage] → [Strategize] → [Execute]
↓ ↓ ↓
[Intent] [Priority] [Consensus]
↓ ↓ ↓
[Context] [Risk Score] [Decision]
All conversation states are persisted to Redis for:
Use the /strategist command in Claude CLI:
# 3-strategist 분석 요청
/strategist "Optimize the database queries"
# 전략가별 관점 확인
/trinity # Trinity Score 확인
/routing # 라우팅 결정 확인
Or invoke the engine programmatically:
from hyodo.strategy import StrategyEngine
engine = StrategyEngine()
result = engine.analyze({
"command": "Optimize the database queries",
"context": {"current_latency": "500ms"}
})
print(f"Decision: {result['decision']}")
print(f"Lead Strategist: {result['lead_strategist']}")
The strategists vote based on:
Consensus requires 2/3 agreement for AUTO_RUN.
tools
Kingdom CLI와 kingdom-cmd MCP를 써서 상태 확인, 진단, query, agent 작업을 진행할 때 사용합니다.
testing
Calculate the 5-Pillar Trinity Score (眞善美孝永) with weighted philosophy alignment. Core evaluation system for AFO Kingdom decisions.
development
This skill should be used when the user asks about "Trinity Score", "5 pillars", "眞善美孝永", "philosophy", "ethical AI decisions", or discusses the AFO Kingdom's guiding principles. Provides comprehensive guidance on applying the 5-pillar philosophy to development decisions.
development
This skill should be used when the user asks "where is", "find file", "navigate to", "project structure", "which file handles", or needs to locate specific functionality in the AFO Kingdom codebase. Provides intelligent navigation based on MAP_OF_KINGDOM.md and CONTEXT_COMPASS.yaml.