Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For **user-facing release notes** (RU/EN block per version) and **growth handoff
### Changed

- [RELEASE.md](docs/RELEASE.md): **Public launch readiness (CLI)** section (CI, docs funnel, live smoke, npm parity, publish vs automated token) and link to [docs/README.md](docs/README.md).
- Dependency: `skillget-manager` **v0.1.3** (archive download transport/HTTP hints, README; keep in sync with manager releases).
- Dependency: `skillget-manager` **v0.1.4** (registry compiled-core JSON: `versions` map + semver latest + optional read bearer; [REGISTRY_CLIENT_CONTRACT.md](https://github.com/getskillpack/skillget-manager/blob/main/docs/REGISTRY_CLIENT_CONTRACT.md)).
- CLI: `skillget config -h` / `--help` and rejection of stray arguments on `config`.
- CLI: `skillget <command> -h` / `--help` on `list`, `search`, `install`, and `publish` prints command-specific flags and exits 0 (was a generic error exit).
- CI: committed `vendor/` for private `skillget-manager`; default **Go** workflow job builds with `-mod=vendor` **without** repository secrets (fork PRs included). Second job skips heavy steps when `GETSKILLPACK_ORG_PAT` is absent; with the secret it runs remote `go mod download` / build and checks `vendor/` matches `go.mod`.
Expand Down
8 changes: 6 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
module github.com/getskillpack/cli

go 1.22
go 1.22.0

require github.com/getskillpack/skillget-manager v0.1.3
toolchain go1.22.12

Comment on lines +3 to +6

Copilot AI Mar 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR introduces a toolchain go1.22.12 directive. That change isn’t mentioned in the PR description and can change build behavior by forcing Go to auto-download/pin a specific patch toolchain (potentially impacting offline/hermetic builds and CI caching). If the intent is just to bump skillget-manager, consider removing the toolchain line; if pinning is desired, update CI/tooling docs to use the same exact Go patch (e.g., setup-go go-version: 1.22.12) so builds don’t unexpectedly download a different toolchain.

Copilot uses AI. Check for mistakes.
require github.com/getskillpack/skillget-manager v0.1.4

require golang.org/x/mod v0.23.0 // indirect

// Private org: GOPRIVATE / GONOSUMDB + Git credentials for `go build` — см. docs/BOARD_PAT_QUICK_RU.md § Go modules.
6 changes: 4 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
github.com/getskillpack/skillget-manager v0.1.3 h1:avVsRsf6UVCgmznxOwmPT9Y3pXJAhTFPTRFou5d+wCA=
github.com/getskillpack/skillget-manager v0.1.3/go.mod h1:XDmEMMPsIni59OVQLAYlNXZqAZE7smTmj4Djsx8Gr54=
github.com/getskillpack/skillget-manager v0.1.4 h1:Qc5uvKCKWeG22MxI6u1dNKG2QDvNG7zDAyXW9c91jzo=
github.com/getskillpack/skillget-manager v0.1.4/go.mod h1:nuCuVtegzpePhhGfsqGlLiHBwg6NIgauqaNKPfK4I8E=
golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 32 additions & 22 deletions vendor/github.com/getskillpack/skillget-manager/types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions vendor/golang.org/x/mod/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions vendor/golang.org/x/mod/PATENTS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading