weakness-detection
Analyzes idea-scoring output to identify the weakest dimensions, root causes of low scores, and probable failure modes if the idea were pursued as-is.
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
<!-- version: 0.1.0 | outputs: memory/ideas/<slug>/weaknesses.json -->
Skill: weakness-detection
Purpose
Before triggering the pivot engine, understand WHY dimensions are weak. A low distribution score might mean "no viral loop" (fixable) or "fundamentally wrong category for organic growth" (structural). Surface the root cause, not just the symptom.
Input
- Idea slug
memory/ideas/<slug>/scores.json(required)- All available dimension files in
memory/ideas/<slug>/
Weakness Classification
| Root Cause Type | Description | Fix Type |
|---|---|---|
| Structural | Inherent to the idea, can't be pivoted away | Drop or major pivot |
| Situational | Weak due to user's current constraints | Fixable (more time, budget) |
| Knowledge gap | Weak because data is missing | Run more research |
| Addressable | Weak but has a clear fix | Targeted pivot |
Process
<!-- TODO: Add failure mode library by app category -->
<!-- TODO: Define threshold for "weak" (e.g., dimension score < 40) -->
- Load scores.json, identify dimensions scoring below threshold.
- For each weak dimension, read the source file to understand why.
- Classify the root cause (structural / situational / knowledge gap / addressable).
- Describe the failure mode if the idea proceeded without fixing this weakness.
Output
Write to memory/ideas/<slug>/weaknesses.json:
{
"weak_dimensions": [
{
"dimension": "",
"score": 0,
"root_cause_type": "structural | situational | knowledge-gap | addressable",
"root_cause_description": "",
"failure_mode": ""
}
],
"critical_weaknesses": [],
"addressable_weaknesses": [],
"overall_weakness_severity": "fatal | major | minor"
}
Notes
<!-- TODO: Define "fatal" vs "major" vs "minor" by combination of weak dimensions -->
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
同名技能的其他版本
有 3 个不同仓库或目录里都有叫 weakness-detection 的技能。它们内容并不相同,别混用:
- MaxKmet/idea-validation-agents — Identifies weak scoring dimensions, root causes, and failure modes. See canonical definiti
- MaxKmet/idea-validation-agents — Identifies weak scoring dimensions, root causes, and failure modes. See canonical definiti