@invarn/cli 0.2.1 → 0.2.3
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 +4 -0
- package/dist/invarn.cjs +7 -7
- package/dist/sdk.mjs +56 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -147,10 +147,14 @@ Secrets and variables are scoped to the org or a specific pipeline. Values are p
|
|
|
147
147
|
```bash
|
|
148
148
|
echo "sk_live_..." | invarn secrets set STRIPE_KEY
|
|
149
149
|
echo "sk_live_..." | invarn secrets set STRIPE_KEY --pipeline pipe_abc
|
|
150
|
+
echo "sk_live_..." | invarn secrets set STRIPE_KEY --agent agt_xyz # scope to the agent's owned pipeline
|
|
150
151
|
invarn secrets list
|
|
152
|
+
invarn secrets list --agent agt_xyz
|
|
151
153
|
invarn secrets rm STRIPE_KEY
|
|
152
154
|
```
|
|
153
155
|
|
|
156
|
+
`--agent` and `--pipeline` are mutually exclusive. The agent variant is a convenience — the server resolves the agent's 1:1 pipeline internally, so you don't need to look up the pipeline id in the dashboard. Same applies to the `invarn_secrets_set` / `invarn_secrets_list` MCP tools (pass `agent_id`).
|
|
157
|
+
|
|
154
158
|
There is no read command — once set, values cannot be retrieved through the CLI or MCP.
|
|
155
159
|
|
|
156
160
|
## In-process SDK (for agent hosts)
|