Agent skill

qiskit

IBM quantum computing framework. Use when targeting IBM Quantum hardware, working with Qiskit Runtime for production workloads, or needing IBM optimization tools. Best for IBM hardware execution, quantum error mitigation, and enterprise quantum computing. For Google hardware use cirq; for gradient-based quantum ML use pennylane; for open quantum system simulations use qutip.

LeonChaoXgithub.com/LeonChaoXGitHub ↗
claude-codeMIT
Install
npx skills add LeonChaoX/qinyan-academic-skills --skill qiskit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 9
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/10-材料科学与物理计算/qiskit/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 759
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Qiskit ## Overview Qiskit is the world's most popular open-source quantum computing framework with 13M+ downloads. Build quantum circuits, optimize for hardware, execute on simulators or real quantum computers, and analyze results. Supports IBM Quantum (100+ qubit systems), IonQ, Amazon Braket, and other providers. **Key Features:** - 83x faster transpilation than competitors - 29% fewer two-qubit gates in optimized circuits - Backend-agnostic execution (local simulators or cloud hardware) - Comprehensive algorithm libraries for optimization, chemistry, and ML ## Quick Start ### Installation ```bash uv pip install qiskit uv pip install "qiskit[visualization]" matplotlib ``` ### First Circuit ```python from qiskit import QuantumCircuit from qiskit.primitives import StatevectorSampler # Create Bell state (entangled qubits) qc = QuantumCircuit(2) qc.h(0) # Hadamard on qubit 0 qc.cx(0, 1) # CNOT from qubit 0 to 1 qc.measure_all() # Measure both qubits # Run locally sampler = StatevectorSampler() result = sampler.run([qc], shots=1024).result() counts = result[0].data.meas.get_counts() print(counts) # {'00': ~512, '11': ~512} ``` ### Visualization ```python from qiskit.visualization im

What's inside
Steps it walks through
  1. Overview
  2. Quick Start
  3. Installation
  4. First Circuit
  5. Visualization
  6. Core Capabilities
  7. 1. Setup and Installation
  8. 2. Building Quantum Circuits
  9. 3. Primitives (Sampler and Estimator)
  10. 4. Transpilation and Optimization
  11. 5. Visualization
  12. 6. Hardware Backends
  13. 7. Qiskit Patterns Workflow
  14. 8. Quantum Algorithms and Applications
Ships with 8 files
  • references/algorithms.md
  • references/backends.md
  • references/circuits.md
  • references/patterns.md
  • references/primitives.md
  • references/setup.md
  • references/transpilation.md
  • references/visualization.md
Commands it runs
uv pip install qiskit
uv pip install "qiskit[visualization]" matplotlib
More from qinyan-academic-skills
All skills →
About this skill
What does the qiskit skill do?

IBM quantum computing framework. Use when targeting IBM Quantum hardware, working with Qiskit Runtime for production workloads, or needing IBM optimization tools. Best for IBM hardware execution, quantum error mitigation, and enterprise quantum computing. For Google hardware use cirq; for gradient-based quantum ML use pennylane; for open quantum system simulations use qutip.

How do I install it?

Run `npx skills add LeonChaoX/qinyan-academic-skills --skill qiskit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From LeonChaoX/qinyan-academic-skills, a repository with 759 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going