소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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"
)