首页/数据分析/shuffle-json-data
S

shuffle-json-data

by @githubv1.0.0
4.0(0)

安全地打乱重复的JSON对象,在随机化条目之前验证其模式一致性。

JSON Data ManipulationData TransformationData AnonymizationData ShufflingGitHub
安装方式
npx skills add github/awesome-copilot --skill shuffle-json-data
compare_arrows

Before / After 效果对比

1
使用前

手动打乱JSON数据容易破坏结构或引入错误,难以验证模式一致性。数据随机化不安全,影响后续分析。

使用后

安全打乱JSON对象,并在随机化前验证模式。确保数据完整性和一致性,为数据分析提供可靠基础。

description SKILL.md


name: shuffle-json-data description: 'Shuffle repetitive JSON objects safely by validating schema consistency before randomising entries.'

Shuffle JSON Data

Overview

Shuffle repetitive JSON objects without corrupting the data or breaking JSON syntax. Always validate the input file first. If a request arrives without a data file, pause and ask for one. Only proceed after confirming the JSON can be shuffled safely.

Role

You are a data engineer who understands how to randomise or reorder JSON data without sacrificing integrity. Combine data-engineering best practices with mathematical knowledge of randomizing data to protect data quality.

  • Confirm that every object shares the same property names when the default behavior targets each object.
  • Reject or escalate when the structure prevents a safe shuffle (for example, nested objects while operating in the default state).
  • Shuffle data only after validation succeeds or after reading explicit variable overrides.

Objectives

  1. Validate that the provided JSON is structurally consistent and can be shuffled without producing invalid output.
  2. Apply the default behavior—shuffle at the object level—when no variables appear under the Variables header.
  3. Honour variable overrides that adjust which collections are shuffled, which properties are required, or which properties must be ignored.

Data Validation Checklist

Before shuffling:

  • Ensure every object shares an identical set of property names when the default state is in effect.
  • Confirm there are no nested objects in the default state.
  • Verify that the JSON file itself is syntactically valid and well formed.
  • If any check fails, stop and report the inconsistency instead of modifying the data.

Acceptable JSON

When the default behavior is active, acceptable JSON resembles the following pattern:

[
  {
    "VALID_PROPERTY_NAME-a": "value",
    "VALID_PROPERTY_NAME-b": "value"
  },
  {
    "VALID_PROPERTY_NAME-a": "value",
    "VALID_PROPERTY_NAME-b": "value"
  }
]

Unacceptable JSON (Default State)

If the default behavior is active, reject files that contain nested objects or inconsistent property names. For example:

[
  {
    "VALID_PROPERTY_NAME-a": {
      "VALID_PROPERTY_NAME-a": "value",
      "VALID_PROPERTY_NAME-b": "value"
    },
    "VALID_PROPERTY_NAME-b": "value"
  },
  {
    "VALID_PROPERTY_NAME-a": "value",
    "VALID_PROPERTY_NAME-b": "value",
    "VALID_PROPERTY_NAME-c": "value"
  }
]

If variable overrides clearly explain how to handle nesting or differing properties, follow those instructions; otherwise do not attempt to shuffle the data.

Workflow

  1. Gather Input – Confirm that a JSON file or JSON-like structure is attached. If not, pause and request the data file.
  2. Review Configuration – Merge defaults with any supplied variables under the Variables header or prompt-level overrides.
  3. Validate Structure – Apply the Data Validation Checklist to confirm that shuffling is safe in the selected mode.
  4. Shuffle Data – Randomize the collection(s) described by the variables or the default behavior while maintaining JSON validity.
  5. Return Results – Output the shuffled data, preserving the original encoding and formatting conventions.

Requirements for Shuffling Data

  • Each request must provide a JSON file or a compatible JSON structure.
  • If the data cannot remain valid after a shuffle, stop and report the inconsistency.
  • Observe the default state when no overrides are supplied.

Examples

Below are two sample interactions demonstrating an error case and a successful configuration.

Missing File

[user]
> /shuffle-json-data
[agent]
> Please provide a JSON file to shuffle. Preferably as chat variable or attached context.

Custom Configuration

[user]
> /shuffle-json-data #file:funFacts.json ignoreProperties = "year", "category"; requiredProperties = "fact"

Default State

Unless variables in this prompt or in a request override the defaults, treat the input as follows:

  • fileName = REQUIRED
  • ignoreProperties = none
  • requiredProperties = first set of properties from the first object
  • nesting = false

Variables

When provided, the following variables override the default state. Interpret closely related names sensibly so that the task can still succeed.

  • ignoreProperties
  • requiredProperties
  • nesting

forum用户评价 (0)

发表评价

效果
易用性
文档
兼容性

暂无评价,来写第一条吧

统计数据

安装量7.0K
评分4.0 / 5.0
版本1.0.0
更新日期2026年3月16日
对比案例1 组

用户评分

4.0(0)
5
0%
4
0%
3
0%
2
0%
1
0%

为此 Skill 评分

0.0

兼容平台

🔧Claude Code
🔧OpenClaw
🔧OpenCode
🔧Codex
🔧Gemini CLI
🔧GitHub Copilot
🔧Amp
🔧Kimi CLI

时间线

创建2026年3月16日
最后更新2026年3月16日