tensorcircuit-ng: Skill for Claude Code

.agents/skills/arxiv-reproduce/SKILL.md

arxiv-reproduce is a skill for Claude Code from tensorcircuit/tensorcircuit-ng. It costs 59 tokens per session (2,268 once invoked), scanned A, original, Apache-2.0.

A workflow for reproducing results from quantum-computing research papers published on arXiv, an online archive of scientific papers, using TensorCircuit-NG.

In plain words
What is it for?
It creates a standard example folder, writes metadata and JAX-based simulation code, compares small cases with exact circuit results, runs checks, and saves figures.
Why use it?
It turns a paper's algorithms and figures into a repeatable simulation while adapting experiments that are too large for the available computer.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: installed under .agents/ (shared by several agents).

This is tensorcircuit/tensorcircuit-ng's own configuration. It tells Claude Code how to work on tensorcircuit-ng itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tensorcircuit-ng configures →

Reuse

Borrowing it

Nothing to install: this file belongs to tensorcircuit/tensorcircuit-ng. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/tensorcircuit/tensorcircuit-ng/master/.agents/skills/arxiv-reproduce/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/tensorcircuit/tensorcircuit-ng

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for arxiv-reproduce

README.md
[![agentmods](https://agentmods.dev/badge/skills/tensorcircuit/tensorcircuit-ng/arxiv-reproduce/github.svg)](https://agentmods.dev/skills/tensorcircuit/tensorcircuit-ng/arxiv-reproduce)
Your own site
<a href="https://agentmods.dev/skills/tensorcircuit/tensorcircuit-ng/arxiv-reproduce"><img src="https://agentmods.dev/badge/skills/tensorcircuit/tensorcircuit-ng/arxiv-reproduce/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for arxiv-reproduce

Your own site · 80×15
<a href="https://agentmods.dev/skills/tensorcircuit/tensorcircuit-ng/arxiv-reproduce"><img src="https://agentmods.dev/badge/skills/tensorcircuit/tensorcircuit-ng/arxiv-reproduce.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,268 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.02268
Opus 5 $0.00030 $0.01134
Sonnet 5 $0.00012 $0.00454
Haiku 4.5 $0.00006 $0.00227

Measured 11d ago against content hash 787d7d3c5401, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

arxiv-reproduce scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/arxiv-reproduce/SKILL.md · 123 lines

How it starts

The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.

When tasked with reproducing an arXiv paper using TensorCircuit-NG, you act as an expert Quantum Software Engineer and must strictly follow this standardized Agentic workflow:

1. Paper Reading & Adaptive Scaling

  • Analyze: Extract the core algorithms, target figure/table, and specific physical phenomena from the provided arXiv link or paper details.
  • Scale Down: Assess the original problem size. Intelligently reduce the qubit counts, circuit depth, or bond dimension so the simulation is computationally feasible on the current machine, while still theoretically preserving the core phenomenon. Also, plan to compare with exact tc.Circuit results for small-size systems to ensure correctness.
  • Result Alignment Goal: The final goal is to ensure the reproduced results (even if scaled down) qualitatively and quantitatively align with the trends and values in the manuscript.

2. Standardized Workspace Initialization

  • Create Directories: Strictly follow the repository's folder structure convention. Create a new directory named examples/reproduce_papers/<YYYY>_<keywords>/ (e.g., examples/reproduce_papers/2022_dmrg_circuit/).
  • Create Output Folder: Inside the new directory, create an outputs/ subfolder for all generated data and figures.
  • Generate meta.yaml: Create a meta.yaml file in the main folder using this exact template, filling in the extracted paper details:
  title: "[Extracted Title, in Title Case]"
  arxiv_id: "[Extracted ID]"
  url: "https://arxiv.org/abs/[Extracted ID]"
  year: [YYYY]
  authors:
    - "[Author 1]"
    - "[Author 2]"
  tags:
    - "[canonical tag from taxonomy.yaml]"
    - "[canonical tag from taxonomy.yaml]"
  tc_features:
    - "[canonical feature from taxonomy.yaml]"
  backend: "[jax | tensorflow | pytorch | numpy | cupy]"
  hardware_requirements:
    gpu: false
    min_memory: "[Estimated Memory]"
  card_title: "[Short gallery label, <= 60 chars, e.g. 'Figure 2(a) · Phase diagram']"
  summary: "[One sentence, <= 140 chars, what the reproduction shows]"
  description: "[Full description of the reproduction, scaling strategy, and simplifications]"
  outputs:
    - target: "[Target Figure, e.g., Figure 2(a)]"
      path: outputs/result.png
      script: "main.py"
  # thumbnail: outputs/other.png   # optional, only when the first image is a poor card image
  # contributor: "Name"            # optional, see below; normally derived from git history

Read the full file on GitHub · 123 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 123 lines · 59 tokens per session scan A 787d7d3c5401

Subscribe to this mod's changes

arxiv-reproduce is a skill published in the GitHub repository tensorcircuit/tensorcircuit-ng (90 stars, last pushed 9d ago), licensed Apache-2.0. It adds 59 tokens to every session and 2,268 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

physicsnemo-discover

Official NVIDIA-authored guidance for navigating PhysicsNeMo — pick the model, datapipe, or example for a SciML/AI4Science task (surrogates, forecasting, downscaling, physics-informed, inverse, generative). Points at existing files via live repo search; never writes code. Do NOT use for installation or environment…

NVIDIA/physicsnemo · 124 tokens

fine-tuning-serving-openpi

Fine-tune and serve Physical Intelligence OpenPI models (pi0, pi0-fast, pi0.5) using JAX or PyTorch backends for robot policy inference across ALOHA, DROID, and LIBERO environments. Use when adapting pi0 models to custom datasets, converting JAX checkpoints to PyTorch, running policy inference servers, or debugging…

Orchestra-Research/AI-Research-SKILLs · 87 tokens

cellxgene-census-query

Query CZ CELLxGENE Census (61M+ cells). Filter by cell type/tissue/disease, retrieve expression data, and integrate with scanpy/PyTorch for population-scale single-cell analysis. Use this skill when: (1) Querying single-cell expression data by cell type, tissue, or disease, (2) Exploring available single-cell datasets…

PharMolix/OpenBioMed · 105 tokens

hugging-face-trackio

Track and visualize ML training experiments with Trackio. Use when logging metrics during training (Python API) or retrieving/analyzing logged metrics (CLI). Supports real-time dashboard visualization, HF Space syncing, and JSON output for automation.

patchy631/ai-engineering-hub · 52 tokens

physicsnemo-shard-tensor

Official NVIDIA-authored guidance for PhysicsNeMo ShardTensor domain parallelism — integrate domain parallelism into training/inference scripts (new or existing) with DDP or FSDP2, write and register shard patches to enable new layers/ops, and bootstrap multi-GPU correctness tests. Use when working with ShardTensor…

NVIDIA/physicsnemo · 152 tokens

pysr

Use when fitting equations to data with PySR or SymbolicRegression.jl, when a user wants an interpretable formula, symbolic model, scaling law, or empirical relation discovered from numeric data, or when debugging a PySR search that is slow, stuck, or giving poor equations.

astroautomata/PySR · 61 tokens