Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add TaoELi/MaxwellLink --skill "mxl-driver-qutip"
Install specific skill from multi-skill repository
# Description
This skill should be used when users want to run the QuTiP molecular driver (preset TLS or custom Hamiltonians) in MaxwellLink and need correct parameter passing for socket or embedded mode.
# SKILL.md
name: mxl-driver-qutip
description: This skill should be used when users want to run the QuTiP molecular driver (preset TLS or custom Hamiltonians) in MaxwellLink and need correct parameter passing for socket or embedded mode.
QuTiP driver (model Hamiltonians)
Confirm prerequisites
- Ensure
qutipis installed in the driver environment; import failures are expected otherwise.
Use preset TLS mode
- Prefer passing TLS parameters as top-level tokens to avoid comma-parsing confusion:
- Socket:
mxl_driver --model qutip --port <port> --param "preset=tls, omega=0.242, mu12=187, orientation=2, pe_initial=1e-4" - Embedded:
Molecule(driver="qutip", driver_kwargs={"preset": "tls", "omega": 0.242, "mu12": 187, "orientation": 2, "pe_initial": 1e-4})
Use custom-module mode
- Provide a Python file that defines
build_model(**kwargs)and returnsH0,mu_ops, optionalc_ops, and optionalrho0. - Socket (module next to the job):
mxl_driver --model qutip --port <port> --param "preset=custom, module=hcn_qutip.py" - Socket (absolute path):
mxl_driver --model qutip --port <port> --param "preset=custom, module=/abs/path/spec.py" - Embedded:
Molecule(driver="qutip", driver_kwargs={"preset": "custom", "module": "hcn_qutip.py"}) - Ensure the driver process can import the module:
- Launch the driver from the directory that contains the module, or
- Add that directory to
PYTHONPATH, or - Use an absolute
module=...path on shared filesystem.
Notes
- Use
fd_dmudt=trueonly when an analytical dipole-current expression is unavailable or unstable. - For example setups, compare to
tests/test_qutip/anddocs/source/drivers/qutip.rst.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.