
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@coldsurf/parley
Advanced tools
Git-style env sync between your machine and AWS Parameter Store + KMS. A self-hosted alternative to Doppler/Infisical for AWS-native teams.
Git-style env sync between your machine and AWS Parameter Store + KMS. A self-hosted alternative to Doppler/Infisical for AWS-native teams.
parley treats environment variables like source code: push, pull, diff. The store is your own AWS account (SSM Parameter Store, encrypted by KMS). No SaaS subscription, no third-party vault. Works great in TS monorepos.
parley push / pull / diff map cleanly to how you already think.apps × profiles matrix in a typed parley.config.ts.parley run --app api --profile production -- node server.js (no disk writes).parley diff --exit-code fails the build when local and remote drift.pnpm add -D @coldsurf/parley
# or
npm i -D @coldsurf/parley
# 1. Generate a parley.config.ts at repo root
pnpm parley init
# 2. Edit prefix / region / kmsKeyId / apps mappings
# 3. Validate AWS credentials and KMS/IAM
pnpm parley doctor
# 4. Push your local .env.<profile> → SSM
pnpm parley push api production
# 5. Pull from SSM → local .env.<profile>
pnpm parley pull api production
| Command | Description |
|---|---|
init | Scaffold parley.config.ts, sanity-check AWS credentials |
push | Local .env.<profile> → SSM (changes only) |
pull | SSM → local .env.<profile> |
diff | Compare keys between local and remote (values hashed) |
list | List SSM keys for an app/profile |
get / set / unset | Single-key operations |
run -- <cmd> | Inject env from SSM and exec a command (no disk writes) |
| `sync push | pull` |
doctor | Diagnose credentials, SSM access, KMS access, mappings |
// parley.config.ts
import { defineConfig } from '@coldsurf/parley/config';
export default defineConfig({
region: 'ap-northeast-2',
prefix: '/myorg/myproject',
kmsKeyId: 'alias/parley',
apps: {
api: { path: 'apps/api', profiles: ['development', 'staging', 'production'] },
web: { path: 'apps/web', profiles: ['development', 'production'] },
},
});
| parley | chamber | Doppler / Infisical | sops | |
|---|---|---|---|---|
| Backend | AWS SSM + KMS | AWS SSM + KMS | SaaS | File (any backend) |
| Self-hosted | ✅ | ✅ | Paid plan | ✅ |
| TS DX | ✅ | ❌ (Go) | ✅ | ❌ |
push/pull/diff | ✅ | partial | ✅ | partial |
| Monorepo apps × profiles | ✅ | ❌ | partial | ❌ |
MIT © COLDSURF
FAQs
Git-style env sync between your machine and AWS Parameter Store + KMS. A self-hosted alternative to Doppler/Infisical for AWS-native teams.
We found that @coldsurf/parley demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.