소스 정보
- 저장소
- notque/vexjoy-agent
- 최근 소스 활동
- 2026년 5월 10일 19:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 415
- 포크
- 44
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/notque/vexjoy-agent --skill decision-helper명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Run the full evidence-to-live implementation workflow for large, multi-system, multi-wave, or CPU-delegated 5 Star Booker GM programs.
Classify user requests and route to the correct agent + skill. Primary entry point for all delegated work.
Structured multi-phase workflows: review, debug, refactor (tidy, clean up, untangle messy code without behaviour change), deploy, create, research.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | decision-helper |
| description | Weighted decision scoring for architectural choices. |
| user-invocable | false |
| allowed-tools | ["Read","Write","Bash","Grep","Glob","Edit"] |
| routing | {"triggers":["weigh options","decision matrix","compare approaches","help me decide","pros and cons","trade-offs","which is better","should I use","evaluate options"],"category":"process","pairs_with":["multi-persona-critique","adr-consultation","planning"]} |
Structured weighted scoring for architectural and technology choices. Runs inline (no context fork) because users adjust criteria and weights interactively.
Goal: Turn the user's question into a clear, scorable decision.
If the user's request is too vague to frame, ask clarifying questions. Do not guess at options. If someone invoked this skill, the decision is not obvious -- run the full framework even when a quick answer feels tempting.
Gate: Decision statement defined, 2-4 options listed, hard constraints applied.
Goal: Establish what matters for this decision and how much.
Present the default criteria table unless the user provides custom criteria. Ask if they want to adjust weights or add/remove criteria.
| Criterion | Weight | What It Measures |
|---|---|---|
| Correctness | 5 | Does it solve the actual problem? |
| Complexity | 3 | How much complexity does it add? (lower = better) |
| Maintainability | 3 | How easy to change/debug later? |
| Risk | 3 | What can go wrong? How bad is the failure mode? |
| Effort | 2 | Implementation time and difficulty |
| Familiarity | 2 | Team/user comfort with this approach |
| Ecosystem | 1 | Library support, documentation, community |
WHY these defaults: Correctness dominates because a wrong solution has zero value regardless of other factors. Complexity/Maintainability/Risk form a middle tier because they determine long-term cost. Effort/Familiarity are lower because they're temporary (teams learn, effort is one-time). Ecosystem is lowest because it rarely decides between otherwise-equal options.
Use defaults unless the user has a strong reason to change them. Agonizing over whether Complexity should be weight 3 or 4 rarely changes the outcome -- the framework exists to make decisions faster, not slower. Set weights before scoring; adjusting weights after seeing results to make a preferred option win is confirmation bias with extra steps.
If the user wants sensitivity analysis, re-score with adjusted weights after the initial pass to test recommendation stability.
Gate: Criteria and weights confirmed (default or custom).
Goal: Rate each option against each criterion with justification.
Score every criterion 1-10 (1-3 poor, 4-6 adequate, 7-9 strong, 10 exceptional). Provide a one-sentence justification per score -- this prevents arbitrary numbers and makes disagreements productive.
Calculate weighted score: sum(score * weight) / sum(weights)
Treat scores as subjective estimates, not measurements. A difference of 0.03 between two options is noise, not signal -- the close-call detection in Step 4 handles this.
Gate: All options scored, all scores justified, weighted scores calculated.
Goal: Interpret the scores and provide a clear recommendation.
Apply these rules in order:
If the matrix contradicts the user's intuition, do not override the math. Instead, ask which criterion is missing or mis-weighted. Add it, re-score, and see if the matrix now agrees. If it does, you found the hidden factor. If it still disagrees, trust the matrix -- it surfaces the reasoning that gut feelings obscure.
Present the output table:
## Decision: [statement]
| Criterion (weight) | Option A | Option B | Option C |
|---------------------|----------|----------|----------|
| Correctness (5) | 8 | 7 | 9 |
| Complexity (3) | 6 | 8 | 4 |
| Maintainability (3) | 7 | 7 | 5 |
| Risk (3) | 6 | 8 | 4 |
| Effort (2) | 7 | 5 | 3 |
| Familiarity (2) | 8 | 4 | 2 |
| Ecosystem (1) | 7 | 6 | 8 |
| **Weighted Score** | **7.0** | **6.7** | **5.2** |
**Recommendation**: Option A (7.0) — [key reasoning]
**Confidence**: High / Medium (scores within 0.5) / Low (no option >6.0)
Gate: Recommendation stated with confidence level. Close calls flagged.
Goal: Record the decision for future reference.
Check for an active ADR session:
cat .adr-session.json 2>/dev/null
If ADR exists: Append a decision record (statement, options, winner, key reasoning, confidence, date) to the ADR's decisions section.
If no ADR: Note the decision in the active task plan (plan/active/*.md). If neither exists, present the record to the user for manual recording.
The user can skip persistence for informal exploration by requesting it.
Gate: Decision recorded or presented. Workflow complete.
Cause: User presents 5+ options Solution: Help decompose. Group similar options or eliminate clearly inferior ones first. Then score the remaining 2-4.
Cause: Default criteria aren't relevant (e.g., scoring a content strategy, not a technical choice) Solution: Ask the user to define custom criteria. Suggest domain-appropriate alternatives.
Cause: User disagrees with a score after seeing the matrix Solution: Adjust the score and recalculate. The matrix is a tool for the user, not an authority over them. If many scores feel wrong, the criteria may need revisiting.
Load these files when the corresponding signals appear in the decision request:
| Signal | Reference File | What It Adds |
|---|---|---|
| "build vs buy", "vendor", "SaaS", "self-host", database, cloud provider, framework, library, API design | references/decision-archetypes.md | Archetype-specific criteria weight adjustments, hard-constraint checklists, detection commands |
| User adjusts weights after scoring, adds options mid-scoring, scores feel arbitrary, "something feels off" | references/decision-preferred-patterns.md | Failure mode identification, intervention scripts, error-fix mappings |
| 5+ options presented, close call (<0.5 margin), repeated score changes | references/decision-preferred-patterns.md | Structural failure modes and fixes |