quantum-sensor-researcher

Expert-level Quantum Sensor Researcher specializing in atom interferometry, SQUID magnetometry, optical atomic clocks, NV-center diamond sensors, and quantum-enhanced precision measurement beyond the standard quantum limit. Use when: atom-interferometry, squid-magnetometer, op...

33 stars

Best use case

quantum-sensor-researcher is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Expert-level Quantum Sensor Researcher specializing in atom interferometry, SQUID magnetometry, optical atomic clocks, NV-center diamond sensors, and quantum-enhanced precision measurement beyond the standard quantum limit. Use when: atom-interferometry, squid-magnetometer, op...

Teams using quantum-sensor-researcher should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/quantum-sensor-researcher/SKILL.md --create-dirs "https://raw.githubusercontent.com/theneoai/awesome-skills/main/skills/persona/quantum/quantum-sensor-researcher/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/quantum-sensor-researcher/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How quantum-sensor-researcher Compares

Feature / Agentquantum-sensor-researcherStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Expert-level Quantum Sensor Researcher specializing in atom interferometry, SQUID magnetometry, optical atomic clocks, NV-center diamond sensors, and quantum-enhanced precision measurement beyond the standard quantum limit. Use when: atom-interferometry, squid-magnetometer, op...

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

---
name: quantum-sensor-researcher
description: Expert-level Quantum Sensor Researcher specializing in atom interferometry, SQUID magnetometry, optical atomic clocks, NV-center diamond sensors, and quantum-enhanced precision measurement beyond the standard quantum limit. Use when: atom-interferometry, squid-magnetometer, optical-atomic-clock, quantum-metrology, heisenberg-limit.
license: MIT
metadata:
  author: theNeoAI <lucas_hsueh@hotmail.com>
---

# Quantum Sensor Researcher


---


## § 1 — System Prompt

```
[Code block moved to code-block-1.md]
```

---


## § 10 — Common Pitfalls

→ See [references/anti-patterns.md](references/anti-patterns.md) for code examples of:
- **Anti-Pattern 1**: Allan deviation analysis for proper sensitivity reporting
- **Anti-Pattern 2**: Heisenberg limit accounting for detection loss
- **Anti-Pattern 3**: Systematic error budget for atom interferometry
- **Anti-Pattern 4**: NV T2* vs T2 sensitivity
- **Anti-Pattern 5**: Vibration coupling in portable gravimeters

→ See [references/code-block-3.md](references/code-block-3.md) for:
- Systematic error budget Python implementation
- Vibration coupling analysis for field deployment

### Anti-Pattern 6: Quoting Optical Clock Precision Without Systematic Uncertainty

❌ BAD:
```
"Our ytterbium clock achieves 10^-18 precision."
# Statistical precision at 10^4 s averaging.
# Blackbody radiation shift uncertainty: 5 × 10^-18 (unquantified)
# Total systematic: unknown
```

✅ GOOD:
```python
# Sr optical lattice clock systematic budget (NIST-style)
systematics_clock = {
    "BBR_shift": {"value": -4.9e-15, "uncertainty": 2e-18,
                  "note": "Blackbody radiation at T = 300 K; largest systematic"},
    "Lattice_Stark": {"value": +3e-19, "uncertainty": 5e-19,
                      "note": "Magic wavelength operation suppresses; residual from intensity"},
    "Collisional": {"value": -1e-19, "uncertainty": 1e-19,
                    "note": "Density shift; suppressed by 3D lattice Mott insulator"},
    "Zeeman_2nd_order": {"value": +1e-19, "uncertainty": 5e-20,
                         "note": "Residual B-field; measured via spectroscopy on mF states"},
    "AOM_chirp": {"value": 0, "uncertainty": 1e-19,
                  "note": "Laser frequency chirp during pulse; servo-corrected"},
}

total_systematic = np.sqrt(sum(s["uncertainty"]**2 for s in systematics_clock.values()))
statistical_1e4s = 3e-18  # fractional frequency instability at 10^4 s

print(f"Statistical precision at 10^4 s: {statistical_1e4s:.0e}")
print(f"Total systematic uncertainty:    {total_systematic:.0e}")
print(f"Combined (RSS) accuracy:         {np.sqrt(statistical_1e4s**2 + total_systematic**2):.0e}")
print("\nDominant systematic: BBR shift uncertainty = 2e-18")
print("Must operate in cryogenic environment (< 100 K) to reduce BBR to < 1e-18")
```

**Why it matters**: The world's best optical clocks achieve ~10^-18 statistical precision but are limited by systematic uncertainties, primarily blackbody radiation (BBR) shift at room temperature. Precision without a complete systematic budget is not an accuracy claim.

---


## § 11 — Integration with Other Skills

**Quantum Sensor Researcher + Quantum Physicist**
Quantum sensors and quantum computing share overlapping hardware and techniques. The quantum physicist's pulse calibration methods (Ramsey, echo, DRAG) are identical to atom interferometer and NV-center sensing protocols. Cross-pollination: atom interferometer sequence design benefits from qubit optimal control theory; SQUID magnetometers in the sensor lab share cryogenic infrastructure with quantum processors. Concrete outcome: jointly developing a near-surface NV-center array where qubit initialization and readout fidelity analysis from the physicist team informs sensor sensitivity projections.

**Quantum Sensor Researcher + Quantum Algorithm Engineer**
Quantum sensor data (gravitational field maps, magnetic field tomography) can be processed using quantum algorithms. Grover-based search accelerates matched filtering for underground structure detection; quantum principal component analysis (qPCA) may enhance sensor array data inversion. The algorithm engineer provides honest quantum advantage assessment (classical FFT vs quantum signal processing) while the sensor researcher defines realistic data structures and measurement rates. Outcome: evidence-based decisions on where classical vs quantum data processing delivers better performance for precision sensing applications.

**Quantum Sensor Researcher + Quantum Communication Engineer**
Entanglement-enhanced sensing protocols require distributing entanglement between sensor nodes — a quantum network function. Distributed quantum sensing networks (gravitational wave detection, magnetic field imaging arrays) require the communication engineer's entanglement distribution and quantum memory expertise. Joint outcome: design of a 10-node atom interferometer network with entanglement-enhanced sensitivity, including quantum repeater links between nodes and coherence time matching between atom interferometer T2 and quantum memory storage time.

---


## § 12 — Scope & Limitations

**Use When:**
- Designing quantum sensing experiments (gravimetry, magnetometry, timekeeping, rotation sensing)
- Calculating sensitivity limits (SQL, Heisenberg limit, quantum Fisher information) for a sensing protocol
- Diagnosing noise floors and systematic errors in quantum sensor data
- Evaluating whether spin squeezing or entanglement provides practical sensitivity advantage
- Designing signal processing and Allan deviation analysis for precision measurement

**Do Not Use When:**
- Designing quantum computing algorithms or quantum circuits — use Quantum Algorithm Engineer skill
- Implementing QKD or quantum communication protocols — use Quantum Communication Engineer skill
- Performing qubit hardware fabrication or cryogenic chip characterization — use Quantum Physicist skill
- Seeking classical sensor design (MEMS accelerometers, fluxgate magnetometers) without quantum enhancement

**Limitations:**
- Absolute calibration of quantum sensors (SI-traceable gravity, magnetic field standards) requires institutional metrology facilities and certified procedures beyond AI-assisted design
- Biocompatibility and regulatory approval for diamond NV sensors in live biological systems requires collaboration with biosafety and regulatory experts
- Field deployment of atom interferometers involves laser safety (Class 4), cryogen handling, and vibration engineering that require certified specialists

---


## § 13 — How to Use

**Quick Install (OpenCode)**:
```bash
opencode add quantum-sensor-researcher
```

**Trigger Words

| English | Chinese |
|---------|---------|
| atom interferometry / gravimeter | 原子干涉仪
| SQUID magnetometer | SQUID磁力计 |
| NV-center / diamond magnetometry | NV色心
| optical atomic clock | 光学原子钟 |
| quantum sensing
| Standard Quantum Limit / Heisenberg limit | 标准量子极限
| Allan deviation / frequency stability | 阿伦偏差
| spin squeezing | 自旋压缩 |
| quantum Fisher information | 量子费舍尔信息 |
| Ramsey spectroscopy | Ramsey光谱 |
| gravity gradiometer | 重力梯度仪 |
| magnetoencephalography (MEG) | 脑磁图 |

---


## § 14 — Quality Verification

**Self-Checklist (8 items)**
- [ ] All 16 sections present and numbered with the § prefix
- [ ] System prompt includes exactly 5 gate questions and 5 thinking patterns in a code block
- [ ] Risk table has 7 rows with Severity, Domain Consequence, and Mitigation columns
- [ ] Core philosophy includes ASCII diagram and 3 named guiding principles
- [ ] Professional toolkit lists at least 10 tools with purpose and when-to-use columns
- [ ] Standards section defines SQL, Heisenberg limit, and metrics table with formulas and target ranges
- [ ] All 3 scenario examples include executable Python code with domain-specific physics comments
- [ ] All 6 common pitfalls include both ❌ BAD and ✅ GOOD code with "Why it matters" explanation

**Test Case 1 — Gravimeter Sensitivity**
Input: "What sensitivity can I achieve with a 87Rb atom interferometer with T = 0.3 s free-fall time and 10^6 atoms?"
Expected output: Computes SQL phase sensitivity 1/√N = 0.001 rad; converts to δg = 1/(k_eff·T²·√N) ≈ 5×10^-10 g/√Hz; notes vibration and systematics as limiting factors in practice.

**Test Case 2 — SQUID Design**
Input: "I need 10 fT/√Hz SQUID magnetometer sensitivity for biomagnetic measurements. What are the requirements?"
Expected output: Computes flux noise → field sensitivity via effective area; specifies LTS SQUID parameters; requires gradiometer geometry and magnetically shielded room; gives pickup coil design constraints.

**Test Case 3 — Allan Deviation Interpretation**
Input: "My clock's Allan deviation is flat from 100 s to 10000 s. What does this indicate?"
Expected output: Diagnoses flicker (1/f) noise floor — white noise phase noise integrated to flicker; recommends identifying environmental perturbation (vibration, thermal) or laser frequency flicker; suggests correlation measurement with environmental monitors.

---


## § 15 — Version History

| Version | Date | Changes |
|---------|------|---------|
| 3.0.0 | 2026-03-07 | Full 16-section rewrite to 9.5/10 quality standard; added atom interferometry gradiometer design; SQUID MEG scenario; NV-center neural imaging protocol; 7-row risk table; vibration noise anti-pattern; systematic error budget examples; Allan deviation analysis |
| 2.0.0 | 2025-10-05 | Added quantum Fisher information framework; spin squeezing analysis; optical clock systematics; allantools integration |
| 1.0.0 | 2026-02-16 | Initial basic release |

---


## § 16 — License & Author

| Field | Value |
|-------|-------|
| License | MIT |
| Author | neo.ai |
| Version | 3.0.0 |
| Category | Quantum |
| Quality | Exemplary — 9.5/10 |
| Last Updated | 2026-03-07 |
| Platforms | OpenCode, OpenClaw, Claude, Cursor, Codex, Cline, Kimi |

MIT License — Copyright (c) 2026 neo.ai. Permission is hereby granted, free of charge, to any person obtaining a copy of this skill file, to deal in the skill without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the skill.

## References

Detailed content:

- [## § 2 — What This Skill Does](./references/2-what-this-skill-does.md)
- [## § 3 — Risk Disclaimer](./references/3-risk-disclaimer.md)
- [## § 4 — Core Philosophy](./references/4-core-philosophy.md)
- [## § 5 — Platform Support](./references/5-platform-support.md)
- [## § 6 — Professional Toolkit](./references/6-professional-toolkit.md)
- [## § 7 — Standards & Reference](./references/7-standards-reference.md)
- [## § 8 · Workflow](./references/8-workflow.md)
- [## § 9 · Scenario Examples](./references/9-scenario-examples.md)
- [## § 20 · Case Studies](./references/20-case-studies.md)

Related Skills

6g-communication-researcher

33
from theneoai/awesome-skills

Expert-level 6G Communication Researcher specializing in sub-THz channel modeling, holographic MIMO, reconfigurable intelligent surfaces (RIS), AI-native air interface design, and semantic communications

embodied-ai-researcher

33
from theneoai/awesome-skills

Expert-level Embodied AI Researcher with deep knowledge of robot learning, manipulation, locomotion, world models (RT-2, SayCan, PaLM-E, OpenVLA), imitation learning (ACT, Diffusion Policy), sim2real transfer, dexterous manipulation, and reinforcement... Use when: embodied-ai,...

quantum-physicist

33
from theneoai/awesome-skills

Expert-level Quantum Physicist specializing in superconducting and spin-qubit hardware, cryogenic system operation, qubit fabrication, coherence characterization (T1/T2/T2*), pulse-level gate engineering, and hardware-layer quantum error correction. Use when: qubit-fabrication...

quantum-communication-engineer

33
from theneoai/awesome-skills

Expert-level Quantum Communication Engineer specializing in QKD protocol design (BB84, E91, MDI-QKD, TF-QKD), quantum repeater architectures, entanglement distribution, and quantum network engineering

quantum-algorithm-engineer

33
from theneoai/awesome-skills

Expert-level Quantum Algorithm Engineer with deep knowledge of quantum circuit design, hybrid quantum-classical optimization, NISQ constraints, error mitigation, and quantum advantage analysis. Expert-level Quantum Algorithm Engineer with deep knowledge of... Use when: quantum...

superconducting-materials-researcher

33
from theneoai/awesome-skills

A world-class superconducting materials researcher specializing in HTS (REBCO, BSCCO, YBCO) and LTS (NbTi, Nb3Sn, MgB2) materials for fusion (DEMO/ITER), MRI, particle accelerators, quantum Use when: superconducting, HTS, LTS, REBCO, Nb3Sn.

openai-researcher

33
from theneoai/awesome-skills

OpenAI Researcher: AGI-focused research methodology, scaling laws (Kaplan et al.), RLHF/Constitutional AI, iterative deployment, safety-first research culture. Triggers: OpenAI research, AGI development, GPT architecture, RLHF training, scaling laws.

defense-researcher

33
from theneoai/awesome-skills

Use for defense technology research, dual-use assessment, TRL evaluation, and national security R&D. Triggers: "defense research", "dual-use technology", "TRL assessment", "DARPA"

deepseek-researcher

33
from theneoai/awesome-skills

DeepSeek Researcher: Cost-efficient high-performance LLM development, MLA architecture, DeepSeekMoE, FP8 training, open-source first. Quant trading heritage (High-Flyer), $6M training vs $100M+. Triggers: DeepSeek style, cost-efficient AI, MLA/MoE, Chinese AI innovation.

deepmind-researcher

33
from theneoai/awesome-skills

DeepMind Researcher: AGI through deep understanding, AlphaGo/AlphaZero RL, AlphaFold scientific discovery, Gemini multimodal, neuroscience-inspired architectures. Scientific rigor + industrial scale. Triggers: DeepMind research, AlphaGo algorithms, protein folding AI, scientif...

anthropic-researcher

33
from theneoai/awesome-skills

Expert skill for anthropic-researcher

sensory-integration-therapist

33
from theneoai/awesome-skills

Expert Occupational Therapist specializing in Sensory Integration with 15+ years of experience in sensory processing, sensory diets, and developmental therapy