@seekrit/cli 0.24.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/dist/index.js +933 -521
- package/dist/{mcp-t-sJ_SvE.js → mcp-DLplPOvz.js} +75 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ Run `seekrit <command> --help` for full flags. The
|
|
|
58
58
|
| `init --org --app --env` | Link this directory to an environment (`seekrit.json`). |
|
|
59
59
|
| `org create` / `app create` / `env create` | Create organizations, apps, and environments. |
|
|
60
60
|
| `secrets list` | List secret names (never values). |
|
|
61
|
-
| `secrets get <name
|
|
61
|
+
| `secrets get <name> [--raw]` | Decrypt and print one secret value (`--raw` skips `${OTHER_SECRET}` expansion). |
|
|
62
62
|
| `secrets set <name> [value]` | Encrypt and store a secret (reads stdin if value is omitted or `-`). |
|
|
63
63
|
| `secrets rm <name>` | Delete a secret. |
|
|
64
64
|
| `run <command…>` | Run a command with decrypted secrets in its environment. |
|
|
@@ -71,6 +71,11 @@ Run `seekrit <command> --help` for full flags. The
|
|
|
71
71
|
(e.g. `seekrit run -- node app.js --port 3000`). `secrets set NAME -` reads the
|
|
72
72
|
value from stdin, so you can pipe: `printf '%s' "$VALUE" | seekrit secrets set NAME -`.
|
|
73
73
|
|
|
74
|
+
A value may reference another secret as `${OTHER_SECRET}`: stored literally,
|
|
75
|
+
expanded on read against the merged environment (`--no-interpolate` on
|
|
76
|
+
`run`/`export` opts out). See the
|
|
77
|
+
[references guide](https://seekrit.dev/docs/guides/references).
|
|
78
|
+
|
|
74
79
|
## Service tokens (CI, Docker, agents)
|
|
75
80
|
|
|
76
81
|
A service token carries its own private key in the token string; the server
|