dqmc-analyze — dqmc-analyze install dqmc-analyze, community, dqmc-analyze install, ide skills, analyzing simulation results with dqmc-analyze, dqmc-analyze for AI agents, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Scientific Computing Agents needing advanced simulation data analysis capabilities with Python dqmc-analyze is a skill that analyzes results from completed simulations, extracting parameters and statistics from bin_*.h5 files.

Features

Analyzes simulation results from directories containing bin_*.h5 files
Extracts parameters and statistics for observable names such as 'sign', 'den', and 'zzr'
Provides output as a dictionary with (mean, stderr) tuples for each observable
Utilizes the analyze_hub function from the dqmc_util library
Supports basic analysis of simulation results with Python

# Core Topics

edwnh edwnh
[0]
[0]
Updated: 3/7/2026

Agent Capability Analysis

The dqmc-analyze skill by edwnh is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for dqmc-analyze install, analyzing simulation results with dqmc-analyze, dqmc-analyze for AI agents.

Ideal Agent Persona

Perfect for Scientific Computing Agents needing advanced simulation data analysis capabilities with Python

Core Value

Empowers agents to analyze simulation results from directories containing `bin_*.h5` files, providing valuable parameters and statistics using the `dqmc_util` library, and outputting dictionaries with mean and standard error values for observables like 'sign' and 'den'

Capabilities Granted for dqmc-analyze

Analyzing completed simulations for key observables
Generating statistics for simulation data
Validating simulation results with mean and standard error values

! Prerequisites & Limits

  • Requires `bin_*.h5` files in a directory
  • Limited to simulation data analysis
  • Python environment required
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

dqmc-analyze

Install dqmc-analyze, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Analyze Results

Inputs

  • Directory containing bin_*.h5 files (completed simulations)
  • Observable names (see table below)

Outputs

  • Dictionary with parameters and (mean, stderr) tuples for each observable

Procedure

Basic analysis:

python
1from dqmc_util import analyze_hub 2 3data = analyze_hub.get("data/run/", "sign", "den", "zzr") 4 5print(f"sign = {data['sign'][0]:.4f} +/- {data['sign'][1]:.4f}") 6print(f"density = {data['den'][0]:.4f} +/- {data['den'][1]:.4f}")

Available observables:

NameDescriptionRequires
signFermion sign-
denDensity <n>-
doccDouble occupancy <n_up n_down>-
gr, gkGreen's function (real/k-space)-
nnr, nnqDensity correlator / structure factor-
zzr, zzqSpin-z correlator / structure factor-
xxrSpin-x correlator-
swq0S-wave pair structure factor-
nnrw0, zzrw0Zero-freq susceptibilitiesperiod_uneqlt > 0
dwq0tD-wave pair susceptibilityperiod_uneqlt > 0

Collect from multiple directories:

python
1import os 2 3def collect_results(base_dir, observables): 4 results = [] 5 for subdir in sorted(os.listdir(base_dir)): 6 path = os.path.join(base_dir, subdir) 7 if os.path.isdir(path): 8 try: 9 results.append(analyze_hub.get(path + "/", *observables)) 10 except Exception as e: 11 print(f"Skipping {path}: {e}") 12 return results

Compute derived quantities:

python
1# Magnetic moment squared from spin correlator 2path = "data/run/" 3data = analyze_hub.get(path, "zzr") 4mz2 = 4 * data["zzr"][0][0, 0] # [0] = mean, shape (Ny, Nx) 5mz2_err = 4 * data["zzr"][1][0, 0] # [1] = stderr

Validation

  • Errorbar on sign is significantly less than mean. Otherwise, sign problem is too severe.
  • Errorbars on observable are reasonable (not >> mean)

Failure Modes

SymptomCauseRecovery
KeyError for observableObservable not computedCheck period_uneqlt setting
"No files found"Wrong path or no bin_*.h5Verify directory structure
Large error barsInsufficient statisticsRun more sweeps or bins

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is dqmc-analyze?

Perfect for Scientific Computing Agents needing advanced simulation data analysis capabilities with Python dqmc-analyze is a skill that analyzes results from completed simulations, extracting parameters and statistics from bin_*.h5 files.

How do I install dqmc-analyze?

Run the command: npx killer-skills add edwnh/dqmc. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for dqmc-analyze?

Key use cases include: Analyzing completed simulations for key observables, Generating statistics for simulation data, Validating simulation results with mean and standard error values.

Which IDEs are compatible with dqmc-analyze?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for dqmc-analyze?

Requires `bin_*.h5` files in a directory. Limited to simulation data analysis. Python environment required.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add edwnh/dqmc. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use dqmc-analyze immediately in the current project.

Related Skills

Looking for an alternative to dqmc-analyze or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI