skydive-cli 0.4.0 → 0.4.1-beta.2
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/CHANGELOG.md +4 -0
- package/README.md +51 -0
- package/dist/js/{billing-blocked-euid6MN9.mjs → billing-blocked-Dgu5-oDy.mjs} +1 -1
- package/dist/js/bin.mjs +333 -51
- package/dist/js/{boot-on5ucI_Z.mjs → boot-DZYbTxev.mjs} +988 -259
- package/dist/js/{client-CKzK-12y.mjs → client-Cf7cvftg.mjs} +19 -6
- package/dist/js/client-CneLVPei.mjs +4 -0
- package/dist/js/{daemon-CaFz7Wtw.mjs → daemon-DaUaCMwC.mjs} +22 -5
- package/dist/js/daemon-client-CJxbCLOb.mjs +168 -0
- package/dist/js/daemon-client-DlblQIR9.mjs +6 -0
- package/dist/js/daemon-imLBqTGg.mjs +5 -0
- package/dist/js/http-error-DzyrsLAZ.mjs +20 -0
- package/dist/js/{print-X2N5wJ5l.mjs → print-CbayCa87.mjs} +6 -5
- package/dist/js/{print-BXNq9UxE.mjs → print-ba_0hiV9.mjs} +3 -3
- package/dist/js/{print-share-D72CfWJk.mjs → print-share-CT4ltX7u.mjs} +3 -3
- package/dist/js/{install-Ba-UTi-l.mjs → profiler-BA-c3-gP.mjs} +210 -3
- package/dist/js/raw-pty-3EkG-jjH.mjs +5 -0
- package/dist/js/{raw-pty-DAmb8uqt.mjs → raw-pty-B6mAroiI.mjs} +1 -1
- package/dist/js/{rest-imDZZGQA.mjs → rest-BY2nADw5.mjs} +24 -10
- package/dist/js/rest-DADJh0bi.mjs +6 -0
- package/package.json +3 -2
- package/dist/js/client-D6apKmV0.mjs +0 -6
- package/dist/js/daemon-BADmpJAs.mjs +0 -7
- package/dist/js/raw-pty-t5DC-e1T.mjs +0 -5
- package/dist/js/rest-Br2eFTlj.mjs +0 -5
- /package/dist/js/{billing-blocked-CwfG1BTR.mjs → billing-blocked-2wju4gC_.mjs} +0 -0
- /package/dist/js/{client-D8s9vY4p.mjs → client-Cn2af31H.mjs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `skydive fs` — a namespace for working with the files on an agent's computer (its sandbox) from your own machine. Its first subcommand, `skydive fs edit <path>`, reads a remote file down over the same relay `skydive sandbox` uses, opens it in your local editor (`$VISUAL`/`$EDITOR`, override with `--editor`, defaults to `vi`), and writes your changes back atomically when you save and close — so you can edit a remote file as if it were local without opening the chat TUI. A path that doesn't exist yet is created on save; no changes means nothing is written. Access is gated on EDIT permission for the agent, exactly like `skydive sandbox`. (A first-class `fs` relay channel and `skydive fs mount` land in follow-ups.)
|
|
13
|
+
|
|
10
14
|
## [0.4.0] - 2026-08-07
|
|
11
15
|
|
|
12
16
|
### Added
|
package/README.md
CHANGED
|
@@ -521,3 +521,54 @@ Mach-Os, OpenTUI's tree-sitter worker needs explicit embedding, and
|
|
|
521
521
|
`NODE_ENV=production` silently breaks highlight repaints) — see the header
|
|
522
522
|
comment in `scripts/build-binary.ts` before changing any of the flags it
|
|
523
523
|
passes.
|
|
524
|
+
|
|
525
|
+
## Releasing
|
|
526
|
+
|
|
527
|
+
The CLI ships on two channels, both driven by merges to `anyone`
|
|
528
|
+
(`release-skydive-cli.yml` for npm, `release-skydive-cli-binaries.yml` for the
|
|
529
|
+
standalone binaries — they always publish the same version for a given commit).
|
|
530
|
+
|
|
531
|
+
Versions come from [yarn's release workflow][yarn-release]: **a PR that changes
|
|
532
|
+
this workspace declares how it affects the next release**, and the declaration is
|
|
533
|
+
reviewed as part of the diff.
|
|
534
|
+
|
|
535
|
+
```sh
|
|
536
|
+
yarn workspace skydive-cli version patch --deferred # bug fix
|
|
537
|
+
yarn workspace skydive-cli version minor --deferred # new feature
|
|
538
|
+
yarn workspace skydive-cli version major --deferred # breaking change
|
|
539
|
+
yarn workspace skydive-cli version decline --deferred # no user-visible change
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
Each writes a small record to `.yarn/versions/*.yml` — commit it.
|
|
543
|
+
`yarn version check --interactive` picks the strategy from a menu instead, and
|
|
544
|
+
`yarn version check` is what CI enforces (scoped to this workspace by
|
|
545
|
+
`check-skydive-cli-version-record.yml`). A PR that only bumps `version` in
|
|
546
|
+
`package.json` is exempt: the bump is itself the declaration.
|
|
547
|
+
|
|
548
|
+
**canary** (automatic, opt-in for users) — every merge affecting the CLI or a
|
|
549
|
+
workspace it depends on publishes a prerelease of the _next_ version to the npm
|
|
550
|
+
`beta` dist-tag and the `canary` binary channel: `0.3.1-beta.4` while `0.3.0` is
|
|
551
|
+
the release. The `beta.N` counts betas already on that line, so it restarts at 1
|
|
552
|
+
after each release. A merge with no version record (a dependency-only change)
|
|
553
|
+
falls back to a patch line.
|
|
554
|
+
|
|
555
|
+
> The version is a prerelease of the **next** version, never of the released one.
|
|
556
|
+
> `0.3.0-beta.4` sorts _below_ `0.3.0` per semver, which is how canary once ended
|
|
557
|
+
> up permanently "older" than stable while carrying newer code. The resolver
|
|
558
|
+
> refuses to publish a canary that doesn't sort above the released stable — see
|
|
559
|
+
> `scripts/resolve-release-version.mjs`.
|
|
560
|
+
|
|
561
|
+
**stable** (deliberate) — cutting a release is a reviewed PR that consumes the
|
|
562
|
+
accumulated records and cuts the changelog:
|
|
563
|
+
|
|
564
|
+
```sh
|
|
565
|
+
yarn version apply --all # records -> the new version in package.json
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
Then move `CHANGELOG.md`'s `[Unreleased]` entries under the new version heading
|
|
569
|
+
and open the PR. Merging it publishes to the npm `latest` dist-tag and the
|
|
570
|
+
`stable` binary channel — a plain `npm i -g skydive-cli` and the default
|
|
571
|
+
`install.sh` resolve that. Review of the bump PR is the release gate; nothing
|
|
572
|
+
publishes to stable automatically.
|
|
573
|
+
|
|
574
|
+
[yarn-release]: https://yarnpkg.com/features/release-workflow
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as billingBlockedOutcomeSchema, i as billingBlockedOutcomeFromSendResponse, n as BillingBlockedError, r as billingBlockedJsonResult, t as BILLING_BLOCKED_EXIT_CODE } from "./billing-blocked-
|
|
2
|
+
import { a as billingBlockedOutcomeSchema, i as billingBlockedOutcomeFromSendResponse, n as BillingBlockedError, r as billingBlockedJsonResult, t as BILLING_BLOCKED_EXIT_CODE } from "./billing-blocked-2wju4gC_.mjs";
|
|
3
3
|
|
|
4
4
|
export { BILLING_BLOCKED_EXIT_CODE, BillingBlockedError, billingBlockedJsonResult };
|