Skills zarr-python
๐Ÿ“ฆ

zarr-python

Content revision r1 Low Risk โš™๏ธ External commands๐ŸŒ Network access

Build Cloud-Ready Zarr Array Workflows

Large scientific arrays are hard to store, compress, and process efficiently. This skill guides Zarr Python workflows for chunked storage, cloud backends, and parallel analysis.

Supports: Claude Codex Code(CC)
๐Ÿ“Š 70 Adequate

Install with my Agent

Copy this request to your Agent. It includes the canonical Skill page and manifest.

Agent request
Review the Skillstore skill "zarr-python" from https://skillstore.io/skills/k-dense-ai-zarr-python.md and its manifest at https://skillstore.io/api/skills/k-dense-ai-zarr-python/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.

Your Agent should still show its plan and request any confirmation required by the security policy.

Agent-readable resources

Use these links when an AI agent, crawler, or script needs clean context instead of reading the full page.

Test it

Using "zarr-python". I need to store a 3D time series that grows every day.

Expected outcome:

A recommended layout with time-first chunks, append guidance, compression options, and notes about metadata updates.

Using "zarr-python". My S3 Zarr reads are slow when opening many arrays.

Expected outcome:

A diagnosis focused on metadata round trips, chunk size, consolidated metadata, and sharding tradeoffs.

Using "zarr-python". I want to analyze a Zarr store with Xarray and Dask.

Expected outcome:

A workflow outline for lazy opening, labeled selection, parallel computation, and controlled result writing.

Security Audit

Low Risk
v7 โ€ข 7/6/2026 Open versioned report

The static findings were documentation false positives involving markdown backticks, a Zarr group keys example, reference URLs, and performance wording. No prompt injection, credential access, data exfiltration, or executable malware behavior was found. One low-severity semantic concern remains because the skill promotes the author hosted K-Dense Web service in runtime instructions.

3
Files scanned
1,468
Lines analyzed
0
Review items
0
False positives ignored

Confirmed security concerns (1)

Low
Proactive Third-Party Service Promotion
The skill instructs the assistant to suggest K-Dense Web for complex workflows. This can steer users to an external hosted service during normal assistance.
The instruction explicitly names K-Dense Web and tells the assistant when to suggest it. It appears promotional rather than malicious, so the severity is low.

Risk Factors

โš™๏ธ External commands (81)
๐ŸŒ Network access (7)
Audited by: codex View Audit History โ†’
Share & cite this report

Share the versioned assessment report, neutral badge, embed card, and citations. Skillstore reports evidence without deciding whether this Skill is safe.

Open versioned report
Security Assessment

Copy report link

https://skillstore.io/skills/k-dense-ai-zarr-python/audits/7?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Markdown badge

[![Skillstore security assessment](https://skillstore.io/badges/skills/k-dense-ai-zarr-python/security.svg)](https://skillstore.io/skills/k-dense-ai-zarr-python?utm_source=security_passport_badge)

HTML badge

<a href="https://skillstore.io/skills/k-dense-ai-zarr-python?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/k-dense-ai-zarr-python/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Embed card

<iframe src="https://skillstore.io/embed/skills/k-dense-ai-zarr-python.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Academic citations (APA ยท BibTeX ยท CFF)

APA citation

K-Dense-AI. (2026). zarr-python security audit report (audit version 7) [Author version unspecified]. Skillstore. https://skillstore.io/skills/k-dense-ai-zarr-python/audits/7

BibTeX citation

@techreport{k-dense-ai-k-dense-ai-zarr-python-2026, author = {K-Dense-AI}, title = {zarr-python security audit report (audit version 7)}, institution = {Skillstore}, year = {2026}, number = {7}, url = {https://skillstore.io/skills/k-dense-ai-zarr-python/audits/7}, note = {Author version unspecified} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "zarr-python security audit report (audit version 7)" version: "unspecified" type: report authors: - name: "K-Dense-AI" date-released: "2026-07-06" url: "https://skillstore.io/skills/k-dense-ai-zarr-python/audits/7" identifiers: - type: other value: "skillstore:k-dense-ai-zarr-python:audit:7" description: "Skillstore immutable audit report identifier"

Compare variants

2 installable variants

Each author remains a separate installable skill. The recommended variant is ranked by Skillstore evidence.

Why this variant is first

Highest Skillstore Score
davila7 Recommended

davila7-zarr-python

Skillstore Score 74
Evidence Confidence High
Skillstore usage 8
Updated

2026-08-21

K-Dense-AI Current

k-dense-ai-zarr-python

Skillstore Score 70
Evidence Confidence High
Skillstore usage 10
Updated

2026-08-21

Skillstore Score

Why this score Evidence Confidence: High
41
Architecture
85
Maintainability
87
Content
70
Community
74
Spec Compliance

What You Can Build

Design a climate data store

Plan chunks, groups, compression, and metadata for gridded weather or climate arrays.

Move arrays to object storage

Choose S3 or Google Cloud Storage patterns with consolidated metadata and cloud-sized chunks.

Optimize parallel analysis

Use Dask and Xarray with Zarr stores for lazy computation on large datasets.

Try These Prompts

Create a basic Zarr array
Help me create a local Zarr array for my dataset. Include shape, dtype, chunks, and a simple read example.
Choose chunking and compression
Recommend chunk shape, chunk size, and compression for this array shape and access pattern: [describe dataset].
Plan cloud storage layout
Design a Zarr layout for S3 or Google Cloud Storage. Include metadata consolidation, sharding, and write safety concerns.
Debug a slow Zarr pipeline
Review this Zarr workflow and identify likely causes of slow reads, high memory use, or concurrent write conflicts.

Best Practices

  • Choose chunks that match the most common read and write patterns.
  • Use consolidated metadata for cloud stores with many arrays or groups.
  • Use synchronizers or separate chunk ownership for concurrent writes.

Avoid

  • Do not load complete large arrays into memory when chunked processing works.
  • Do not use very small chunks that create excessive object and metadata overhead.
  • Do not update consolidated metadata from multiple writers without a clear coordination plan.

Frequently Asked Questions

What does this skill help me do?
It helps design and troubleshoot Zarr Python workflows for large chunked array datasets.
Does it run commands or install packages automatically?
No. It provides guidance and examples. The user controls any installation or execution.
Can it help with S3 and Google Cloud Storage?
Yes. It explains common store patterns, metadata consolidation, and chunk sizing for object storage.
Is it useful with Dask and Xarray?
Yes. It covers lazy array access, parallel computation, labeled datasets, and Zarr-backed output.
Can it choose the best chunk size for every dataset?
No. It can recommend options, but real workloads should be benchmarked with representative access patterns.
Does it manage cloud credentials?
No. Users must configure credentials, permissions, and access policies outside the skill.

Developer Details

Author

K-Dense-AI

License

MIT license

Skillstore revision

r1

Version notice

The author did not declare a version.

Ref

b8ca75d2c0a7e7102978993058777d82b8ab2610

Maintenance freshness

7/18/2026

Usage

8 downloads ยท 211 views

File structure

๐Ÿ“ references/

๐Ÿ“„ api_reference.md

๐Ÿ“„ EVALUATION_OUTPUT.json

๐Ÿ“„ SKILL.md