adaptyv
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user…
Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware
$ npx -y skills add k-dense-ai/claude-scientific-skills --skill neurokit2 --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/neurokit2Context preview
The summary Claude sees to decide when to auto-load this skill.
Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware
name: neurokit2 description: Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation. license: MIT compatibility: Python 3.10+ and uv; pinned workflows use NeuroKit2 0.2.13. Core processing needs NumPy, SciPy, pandas, scikit-learn, matplotlib, PyWavelets, requests, and setuptools; selected EEG, cvxEDA, plotting, file-format, and RQA features need separately locked optional packages. allowed-tools: Read Write Edit Bash Glob metadata: version: "1.2" skill-author: K-Dense Inc.
Use this skill for method-aware, reproducible biosignal research with NeuroKit2. The snapshot was checked on **2026-07-23** against:
`0.2.13.dev214`); and
The live documentation can be ahead of the stable wheel. Prefer the pinned runtime for reproducible work and name both versions if consulting development docs.
NeuroKit2 is a research and educational toolbox. Do **not** present its output as:
protocol, environment, population, or disease group.
Validate acquisition hardware, electrode/optode placement, units, sampling and clock accuracy, preprocessing, detector/decomposition method, population, task, and outcomes for the intended study. Preserve raw data and an auditable exclusion log. Use deidentified local files only; do not place PHI in prompts, logs, examples, or bundled fixtures.
uv pip install "neurokit2==0.2.13"
For optional features, create a uv project, add only the packages actually required at reviewed exact versions, and commit/review the resulting `uv.lock` before `uv sync --locked`. NeuroKit2 exposes an upstream `full` extra, but this skill intentionally does not install that floating transitive set in an automated workflow. Optional capabilities can require MNE, cvxopt, Plotly, PyEMD, pyRQA, Pillow, OpenCV, or file readers. Record the resolved environment with the analysis. Provision any MNE data/template download as an explicit, checksummed study input. Do not install a moving development branch for a reproducible study.
Before processing, record:
1. signal identity and sensor/channel configuration; 2. native sampling rate in Hz and physical unit (or explicitly `arbitrary_unit`); 3. clock, timestamp origin, drift correction, and synchronization evidence; 4. polarity/orientation and acquisition-side filters/gain; 5. missing samples, discontinuities, saturation, flatlines, motion, and annotations; 6. whether event onsets are zero-based sample indices or seconds; 7. planned preprocessing order, methods, parameters, exclusions, and outputs; and 8. participant-level grouping needed to prevent leakage in later statistics.
Never infer units from a column name. Do not silently treat samples as milliseconds, volts, microsiemens, or arbitrary units.
python skills/neurokit2/scripts/inspect_signal.py \ --input recording.csv --root . --deidentified \ --columns ECG,RSP,EDA --time-column time_s \ --units ECG=mV,RSP=a.u.,EDA=uS
The inspector is bounded and emits no row values or paths. Resolve non-monotonic time, duplicate samples, gaps, non-finite values, flat runs, and sampling-rate disagreement before filtering.
Use this default reasoning order, adapting it to the acquisition and cited method:
1. preserve immutable raw signal and annotations; 2. verify time base, units, polarity, clipping, gaps, and artifacts; 3. segment at long gaps; only interpolate short gaps under a declared policy; 4. apply modality-specific cleaning at the native sampling rate; 5. detect peaks/onsets or decompose components; 6. inspect quality outputs and raw overlays; 7. correct peaks only with logged categories and sensitivity checks; 8. derive rates/features; 9. align continuous modalities on a declared common time grid; and 10. map event indices to that grid, epoch, baseline, and analyze.
Do not resample binary markers or peak-index arrays as ordinary continuous signals. Map their timestamps to the target grid. Filtering and interpolation can create edge artifacts and false precision; retain masks for padded, missing, and rejected regions.
Return columns depend on NeuroKit2 version, function, method, signal availability, and analysis mode. Never claim that one column list is universal.
signals, info = nk.ecg_process(ecg, sampling_rate=250)
observed_schema = {
"columns": list(signals.columns),
"info_keys": sorted(info),
}Persist the observed schema with package version, method parameters, sampling rate, and quality/exclusion summary. Reference files list verified default schemas for 0.2.13, not guarantees for every method.
In stable 0.2.13, `ecg_process()` performs cleaning, R-peak detection with `correct_artifacts=True`, rate, default `averageQRS` quality, DWT delineation, and phase.
signals, info = nk.ecg_process(ecg, sampling_rate=250, method="neurokit") time_hrv = nk.hrv_time(info, sampling_rate=250)
Inspect `E
🔔 Claude Scientific Skills is now Scientific Agent Skills. Same skills, broader compatibility — now works with any AI agent that supports the open Agent Skills standard, not just Claude.
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user…
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection,…
Plan, execute, and document validation, verification, and transfer of analytical procedures under the governing framework - ICH Q2(R2) and Q14, USP…
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data…
Autonomously improve a real artifact (code, training recipe, agent harness, data pipeline, prompt) against an objective and an evaluator, using Hypothesis Tree…
Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk…