shuffle-json-data
$
npx mdskill add github/awesome-copilot/shuffle-json-dataSafely reorder elements within arrays of JSON objects after validating structural consistency.
- Randomizes entries in collections of JSON objects while maintaining data integrity.
- Requires a JSON data file as input to perform any reordering operations.
- Determines shuffle scope by checking for explicit variable overrides or defaulting to all objects.
- Outputs the fully reordered JSON structure, confirming successful transformation.
SKILL.md
.github/skills/shuffle-json-dataView on GitHub ↗
---
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:
```json
[
{
"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:
```json
[
{
"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
```text
[user]
> /shuffle-json-data
[agent]
> Please provide a JSON file to shuffle. Preferably as chat variable or attached context.
```
### Custom Configuration
```text
[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
More from github/awesome-copilot
- acquire-codebase-knowledgeUse this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document this architecture", "onboard me to this repo", or "create codebase docs". Do not trigger for routine feature implementation, bug fixes, or narrow code edits unless the user asks for repository-level discovery.
- acreadiness-assessRun the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc readiness` and hands off rendering to the @ai-readiness-reporter custom agent. Supports policies (--policy) for org-specific scoring. Use when asked to assess, audit, or score the AI readiness of a repo.
- acreadiness-generate-instructionsGenerate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS Code) plus optional per-area .instructions.md files with applyTo globs for monorepos. Use after running /acreadiness-assess to close gaps in the AI Tooling pillar.
- acreadiness-policyHelp the user pick, write, or apply an AgentRC policy. Policies customise readiness scoring by disabling irrelevant checks, overriding impact/level, setting pass-rate thresholds, or chaining org baselines with team overrides. Use when the user asks about strict mode, AI-only scoring, custom weights, CI gating, or wants org-wide standardisation.
- add-educational-comments'Add educational comments to the file specified, or prompt asking for file to comment if one is not provided.'
- adobe-illustrator-scriptingWrite, debug, and optimize Adobe Illustrator automation scripts using ExtendScript (JavaScript/JSX). Use when creating or modifying scripts that manipulate documents, layers, paths, text frames, colors, symbols, artboards, or any Illustrator DOM objects. Covers the complete JavaScript object model, coordinate system, measurement units, export workflows, and scripting best practices.
- agent-governance|
- agent-owasp-compliance|
- agent-supply-chain|
- agentic-eval|