用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill hypothesis-tracking命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | hypothesis-tracking |
| version | 2.0.0 |
| description | Confidence level management and hypothesis lifecycle |
| metadata | {"openclaw":{"requires":{"bins":["primr-mcp"],"env":["GEMINI_API_KEY"]}}} |
| mcp_server | primr |
| tools | ["get_hypotheses","save_hypothesis"] |
| resources | ["primr://memory/{company}"] |
You are an expert at managing research hypotheses, tracking confidence levels, and maintaining epistemic rigor.
Primr uses a four-level confidence system:
| Level | Meaning | Evidence Required |
|---|---|---|
UNTESTED | Claim extracted, not yet verified | None (initial state) |
VALIDATED | Supporting evidence found | At least one corroborating source |
INVALIDATED | Contradicting evidence found | At least one contradicting source |
CONFIRMED | High confidence, multiple sources | Multiple independent sources |
┌─────────────┐
│ UNTESTED │
└──────┬──────┘
│
┌───────────────┼───────────────┐
│ │ │
▼ ▼ ▼
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ VALIDATED │ │ INVALIDATED │ │ (remains) │
└──────┬──────┘ └─────────────┘ └─────────────┘
│
▼
┌─────────────┐
│ CONFIRMED │
└─────────────┘
hypothesis:
id: "h_001" # Unique identifier
claim: "Company uses AWS" # The testable claim
confidence: validated # Current confidence level
evidence: # Supporting/contradicting evidence
- "Job posting mentions AWS certifications"
- "CTO blog post discusses AWS migration"
topic: "technology" # Category for filtering
created_at: "2026-02-01T10:00:00"
updated_at: "2026-02-03T14:30:00"
expires_at: "2026-05-01T10:00:00" # Optional expiration
Tool: get_hypotheses
# Get all hypotheses for a company
get_hypotheses(company="Acme Corp")
# Filter by confidence level
get_hypotheses(company="Acme Corp", confidence="validated")
# Filter by topic
get_hypotheses(company="Acme Corp", topic="technology")
# Include expired hypotheses
get_hypotheses(company="Acme Corp", include_expired=True)
Tool: save_hypothesis
# Validate a hypothesis
save_hypothesis(
company="Acme Corp",
hypothesis_id="h_001",
confidence="validated",
evidence="Found AWS case study on company blog"
)
# Invalidate a hypothesis
save_hypothesis(
company="Acme Corp",
hypothesis_id="h_002",
confidence="invalidated",
evidence="CEO interview states they use Azure exclusively"
)
# Confirm with high confidence
save_hypothesis(
company="Acme Corp",
hypothesis_id="h_001",
confidence="confirmed",
evidence="Multiple sources confirm: job posts, blog, press release"
)
Tool: save_hypothesis
save_hypothesis(
company="Acme Corp",
hypothesis_id="h_new_001", # New ID
claim="Company is expanding into healthcare",
confidence="untested",
topic="strategy"
)
Analyst Subagent extracts claims:
- Technology stack mentions → technology hypotheses
- Leadership quotes → strategy hypotheses
- Financial mentions → financial hypotheses
- Market references → market hypotheses
External sources provide:
- Competitive positioning claims
- Market share estimates
- Growth trajectory claims
- Industry trend alignment
1. Query with include_expired=True
2. Review expired hypotheses
3. Either:
- Re-validate with fresh evidence
- Mark as invalidated if no longer true
- Extend expiration if still relevant
User: "What do we know about Acme Corp's technology?"
Agent:
1. get_hypotheses("Acme Corp", topic="technology")
Results:
- [CONFIRMED] Uses microservices architecture
Evidence: CTO interview, job posts, tech blog
- [VALIDATED] AWS as primary cloud
Evidence: Job posting mentions AWS
- [UNTESTED] Considering Kubernetes migration
Evidence: None yet
2. Present to user:
"Here's what we know about Acme Corp's technology:
✓ CONFIRMED: Uses microservices architecture
- Multiple sources confirm this
✓ VALIDATED: AWS as primary cloud
- One supporting source (job posting)
? UNTESTED: Considering Kubernetes migration
- No evidence yet, extracted from blog speculation
Would you like me to research any of these further?"
3. If user provides new evidence:
save_hypothesis(
company="Acme Corp",
hypothesis_id="h_003",
confidence="validated",
evidence="User confirmed: spoke with Acme engineer at conference"
)