kylon-cli 0.7.3-next.966 → 0.7.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 +8 -9
- package/dist/kylon-bundle.manifest.json +3 -3
- package/dist/kylon-bundle.mjs +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -632,24 +632,23 @@ so workspace commands do not require `--server-url` again. API keys are
|
|
|
632
632
|
write-only Connections with explicit agent grants. Create one by asking the
|
|
633
633
|
workspace's Kylon agent to start the secure Connection setup flow;
|
|
634
634
|
enter the Connection name, key, value, and optional icon in the app. The
|
|
635
|
-
workspace CLI
|
|
636
|
-
service's variables into a child command:
|
|
635
|
+
workspace CLI can list granted key names and inject them into one child command:
|
|
637
636
|
|
|
638
637
|
```bash
|
|
639
|
-
kylon workspace
|
|
640
|
-
kylon workspace
|
|
638
|
+
kylon workspace secret list --scope-workspace <WORKSPACE_ID>
|
|
639
|
+
kylon workspace secret run -- curl https://api.example.com/resource
|
|
641
640
|
```
|
|
642
641
|
|
|
643
|
-
|
|
644
|
-
|
|
642
|
+
`kylon workspace secret set` is retired. It accepts no secret value and only
|
|
643
|
+
prints guidance for the secure Connection flow.
|
|
645
644
|
|
|
646
645
|
There is intentionally no top-level `kylon secret` command. The namespace
|
|
647
646
|
selects the resource and identity without inspecting unrelated local credential
|
|
648
647
|
state:
|
|
649
648
|
|
|
650
|
-
- Use `kylon workspace
|
|
651
|
-
|
|
652
|
-
|
|
649
|
+
- Use `kylon workspace secret list|share|unshare|delete|run` for canonical
|
|
650
|
+
workspace secret grants with browser authorization. Create API keys through
|
|
651
|
+
the secure Connection flow in Kylon.
|
|
653
652
|
- Use `kylon gateway secret list|delete --agent <agent-id>` for agent-local
|
|
654
653
|
records, authenticated by this installation's saved runtime credential
|
|
655
654
|
through agent-scoped runtime routes. There is no `set`: a credential is
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.7.3
|
|
3
|
-
"fingerprint": "
|
|
4
|
-
"source_commit": "
|
|
2
|
+
"version": "0.7.3",
|
|
3
|
+
"fingerprint": "0c35ffcf220fe3d02835510514948ad7c4c2e13dca8b73ee641bb89610ce12c3",
|
|
4
|
+
"source_commit": "4cf7690041d283ff61c3be6d4957adfdc23d20ca"
|
|
5
5
|
}
|