用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a5c-ai/babysitter --skill hypothesis-tracker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Reference for querying the Atlas knowledge graph through its MCP tools — the SECONDARY enrichment/comparison layer that adds best-practice context to systems you have ALREADY scanned from your real sources (`az`, repos, dirs). Use when you need to look up nodes, edges, kinds, clusters, stats, or wiki pages in Atlas to compare against your real inventory. (atlas graph, query atlas, atlas mcp, search the graph, graph neighbors, atlas record, atlas kinds, enrichment layer)
Atlas turns your STATED NEED into a real systems atlas by SCANNING your actual sources (Azure via `az`, git repos, local dirs) and process/data mining them, THEN enriching against the Atlas knowledge graph. Use this skill when asked to inventory/map your real systems, scan your cloud + repos + directories, mine the real processes or data they contain, or collect their real constraints/gotchas. (atlas, scan my systems, inventory our azure account, map my repos, real systems atlas, process mining, data mining, collect nuances, system discovery)
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable processes, babysitter plugins, and reusable procedural insights. Searches GitHub for SKILL.md files, classifies repos by archetype, and maintains structured research under docs/reference-repos/.
正在显示 SKILL.md
基于 SOC 职业分类
| name | hypothesis-tracker |
| description | Hypothesis management skill for tracking business hypotheses through testing and validation |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
| metadata | {"specialization":"decision-intelligence","domain":"business","category":"collaboration","priority":"medium","tools-libraries":["pandas","sqlite","markdown","jinja2"]} |
| graph | {"domains":["domain:business-intelligence"],"skillAreas":["skill-area:data-analysis","skill-area:statistical-analysis","skill-area:strategic-analysis"],"roles":["role:data-analyst","role:research-scientist","role:business-analyst"]} |
The Hypothesis Tracker skill provides systematic capabilities for formulating, testing, and validating business hypotheses. It supports the scientific approach to business decisions by managing hypotheses through their lifecycle from formulation to resolution.
# Create hypothesis
hypothesis = {
"id": "HYP-2024-001",
"title": "Price Elasticity Hypothesis",
"statement": "A 10% price reduction will increase unit sales by more than 15%, resulting in higher total revenue",
"context": {
"business_question": "Should we reduce prices to grow market share?",
"decision_at_stake": "Q2 pricing strategy",
"stakeholders": ["VP Sales", "CFO", "Product Manager"]
},
"structure": {
"independent_variable": "Price",
"dependent_variable": "Unit sales, Total revenue",
"mechanism": "Price elasticity of demand > 1.5",
"conditions": "In current market conditions, for existing product line"
},
"created_by": "Product Manager",
"created_date": "2024-01-15",
"status": "Testing",
"priority": "High"
}
# Define what would disprove the hypothesis
falsification_criteria = {
"hypothesis_id": "HYP-2024-001",
"criteria": [
{
"type": "primary",
"criterion": "Unit sales increase < 15% following 10% price reduction",
"measurement": "Compare 30-day sales before/after price change",
"threshold": 0.15
},
{
"type": "secondary",
"criterion": "Total revenue decreases despite volume increase",
"measurement": "Revenue comparison pre/post",
"threshold": 0
},
{
"type": "validity_check",
"criterion": "No confounding events (competitor action, seasonality)",
"measurement": "Market monitoring, historical comparison"
}
],
"minimum_evidence": "Primary criterion must be tested with n>1000 transactions"
}
# Define test approach
test_design = {
"hypothesis_id": "HYP-2024-001",
"test_type": "A/B Test",
"design": {
"control_group": "Existing price ($100)",
"treatment_group": "Reduced price ($90)",
"sample_size": {"control": 5000, "treatment": 5000},
"duration": "30 days",
"randomization": "Customer ID hash",
"primary_metric": "Units sold",
"secondary_metrics": ["Revenue", "Margin", "Customer acquisition"]
},
"statistical_plan": {
"significance_level": 0.05,
"power": 0.80,
"minimum_detectable_effect": 0.12,
"analysis_method": "Two-sample t-test"
},
"timeline": {
"start_date": "2024-02-01",
"end_date": "2024-03-02",
"analysis_date": "2024-03-05"
}
}
# Record evidence
evidence = {
"hypothesis_id": "HYP-2024-001",
"evidence_items": [
{
"id": "EV-001",
"date": "2024-03-05",
"type": "experiment_result",
"source": "A/B Test Analysis",
"finding": "Treatment group showed 18.2% increase in unit sales",
"confidence_interval": [0.142, 0.222],
"p_value": 0.001,
"supports_hypothesis": True,
"strength": "strong"
},
{
"id": "EV-002",
"date": "2024-03-05",
"type": "experiment_result",
"source": "A/B Test Analysis",
"finding": "Total revenue increased 6.4% despite 10% price cut",
"confidence_interval": [0.031, 0.097],
"p_value": 0.02,
"supports_hypothesis": True,
"strength": "moderate"
},
{
"id": "EV-003",
"date": "2024-02-20",
"type": ,
: ,
: ,
: ,
:
}
]
}
# Resolve hypothesis
resolution = {
"hypothesis_id": "HYP-2024-001",
"resolution_date": "2024-03-10",
"outcome": "Validated",
"confidence": 0.95,
"summary": "Hypothesis supported by A/B test results. 18.2% volume increase exceeded 15% threshold, revenue increased 6.4%.",
"decision_recommendation": "Proceed with price reduction for full product line",
"caveats": [
"Results based on 30-day period, long-term effects unknown",
"Test conducted in stable market, may not hold in competitive response"
],
"learnings": [
"Price elasticity approximately 1.8 for this product category",
"Customer acquisition improved 12%, suggesting value perception impact"
],
"follow_up_hypotheses": [
"HYP-2024-002: Price reduction effect sustained over 6 months",
"HYP-2024-003: Similar elasticity exists in adjacent product lines"
]
}
{
"operation": "create|update|evidence|resolve|report",
"hypothesis": {
"title": "string",
"statement": "string",
"context": "object",
"structure": "object"
},
"falsification_criteria": ["object"],
"test_design": "object",
"evidence": ["object"],
"resolution": "object"
}
{
"hypothesis": {
"id": "string",
"status": "string",
"confidence": "number"
},
"evidence_summary": {
"supporting": "number",
"contradicting": "number",
"neutral": "number"
},
"dashboard": {
"active_hypotheses": "number",
"pending_tests": "number",
"validated_this_quarter": "number",
"invalidated_this_quarter": "number"
},
"learnings": ["string"
| Status | Description |
|---|---|
| Draft | Being formulated |
| Ready | Falsification criteria defined |
| Testing | Active test in progress |
| Analyzing | Test complete, analyzing results |
| Validated | Evidence supports hypothesis |
| Invalidated | Evidence contradicts hypothesis |
| Inconclusive | Insufficient evidence either way |
| Archived | No longer relevant |