Local cloud parity
Use when a requirement integrates with external infrastructure but must remain runnable and testable locally.From its SKILL.md
npx -y skills add authenticfake/clike --skill local-cloud-parityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.4 KB, 171 tokens by cl100k_base, as published. Nobody here has run it
Local/Cloud Parity Skill
Intent
Generated software must support both realistic production/cloud execution and deterministic local execution when the REQ touches external infrastructure.
Requirements
- Provide a production/cloud adapter when the REQ requires real infrastructure.
- Provide a local deterministic adapter or simulator when the REQ must be testable locally.
- Use explicit configuration to select the runtime implementation.
- Unit tests must not call real cloud services.
- Integration tests that require real services must be opt-in and clearly documented.
- Documentation must explain local execution and production/cloud execution separately.
Evaluation
The REQ satisfies this skill only if:
- both local and production/cloud paths are represented when applicable;
- the local path is executable without cloud credentials;
- tests cover the local path;
- HOWTO documents both paths;
- missing runtime dependencies are reported truthfully instead of hidden.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.