shuffle-json-data
Shuffle repetitive JSON objects safely by validating schema consistency before randomising entries.
What this skill does
# 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
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.