diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 1b93a28..12c3006 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,6 +1,5 @@ blank_issues_enabled: false contact_links: - name: Security report - url: https://github.com/samzong/kitup/security/advisories/new + url: https://github.com/lathe-cli/kitup/security/advisories/new about: Report vulnerabilities privately. - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9ee8e1a..5179ec2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: VERSION="$version" node -e 'const { readFileSync } = require("node:fs"); const version = process.env.VERSION; const pkg = JSON.parse(readFileSync("ts/package.json", "utf8")); if (pkg.version !== version) { throw new Error(`ts/package.json version ${pkg.version} != ${version}`); }' rust_version="$(awk -F '"' '/^version = / { print $2; exit }' rust/Cargo.toml)" test "$rust_version" = "$version" - go_cobra_core_version="$(awk '/github.com\/samzong\/kitup\/go / { print $2; exit }' go-cobra/go.mod)" + go_cobra_core_version="$(awk '/github.com\/lathe-cli\/kitup\/go / { print $2; exit }' go-cobra/go.mod)" test "$go_cobra_core_version" = "v$version" - name: Check published versions id: published diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c4a7a5c..b5688c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -92,8 +92,8 @@ Use `make release-patch`, `make release-minor`, or `make release-major` from a c - `@kitup/sdk` - `kitup` on crates.io -- `github.com/samzong/kitup/go` through the `go/vX.Y.Z` tag -- `github.com/samzong/kitup/go-cobra` through the `go-cobra/vX.Y.Z` tag +- `github.com/lathe-cli/kitup/go` through the `go/vX.Y.Z` tag +- `github.com/lathe-cli/kitup/go-cobra` through the `go-cobra/vX.Y.Z` tag - GitHub Release notes See [docs/RELEASE.md](docs/RELEASE.md) for the release flow, first npm release recovery, and public install smoke check. diff --git a/README.md b/README.md index 516d579..e930f6c 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ const githubSkillBundle = githubBundle({ Install: ```bash -go get github.com/samzong/kitup/go +go get github.com/lathe-cli/kitup/go ``` Use the workflow API for user-facing install commands: @@ -97,7 +97,7 @@ Use the workflow API for user-facing install commands: import ( "os" - kitup "github.com/samzong/kitup/go" + kitup "github.com/lathe-cli/kitup/go" ) result, err := kitup.RunBundledSkillInstall(kitup.InstallWorkflowOptions{ @@ -130,8 +130,8 @@ For Cobra CLIs, the adapter does not own installer behavior; it only wires Cobra ```go import ( - kitup "github.com/samzong/kitup/go" - kitupcobra "github.com/samzong/kitup/go-cobra" + kitup "github.com/lathe-cli/kitup/go" + kitupcobra "github.com/lathe-cli/kitup/go-cobra" ) root.AddCommand(kitupcobra.NewSkillCommand(kitupcobra.Options{ diff --git a/SECURITY.md b/SECURITY.md index 226c53b..f2887db 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -15,7 +15,7 @@ Do not open a public issue for a vulnerability. Use GitHub's private vulnerability reporting flow: -https://github.com/samzong/kitup/security/advisories/new +https://github.com/lathe-cli/kitup/security/advisories/new If that flow is unavailable, open a minimal public issue asking for maintainer contact without including exploit details. @@ -40,4 +40,3 @@ Out of scope: - Vulnerabilities in downstream agent hosts. - Arbitrary behavior inside user-authored skill content. - Requests to execute skill scripts. `kitup` does not execute files from a skill directory. - diff --git a/docs/API.md b/docs/API.md index ff806bb..61d679a 100644 --- a/docs/API.md +++ b/docs/API.md @@ -88,10 +88,10 @@ Implemented functions: ## Go -Module: `github.com/samzong/kitup/go` +Module: `github.com/lathe-cli/kitup/go` ```go -import kitup "github.com/samzong/kitup/go" +import kitup "github.com/lathe-cli/kitup/go" ``` Primitive install call: @@ -145,7 +145,7 @@ Implemented functions: - `UninstallBundledSkill(opts)` - `InstallUX` -Optional Cobra adapter module: `github.com/samzong/kitup/go-cobra` +Optional Cobra adapter module: `github.com/lathe-cli/kitup/go-cobra` - `NewSkillCommand(opts)` - `NewInstallCommand(opts)` diff --git a/docs/RELEASE.md b/docs/RELEASE.md index de0d88e..49879be 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -4,8 +4,8 @@ - npm: `@kitup/sdk` - crates.io: `kitup` -- Go module: `github.com/samzong/kitup/go` -- Go Cobra adapter: `github.com/samzong/kitup/go-cobra` +- Go module: `github.com/lathe-cli/kitup/go` +- Go Cobra adapter: `github.com/lathe-cli/kitup/go-cobra` ## Normal Release diff --git a/examples/go/go.mod b/examples/go/go.mod index 7edff0c..4402882 100644 --- a/examples/go/go.mod +++ b/examples/go/go.mod @@ -2,6 +2,6 @@ module kitup-example-go go 1.23 -require github.com/samzong/kitup/go v0.1.0 +require github.com/lathe-cli/kitup/go v0.1.0 -replace github.com/samzong/kitup/go => ../../go +replace github.com/lathe-cli/kitup/go => ../../go diff --git a/examples/go/main.go b/examples/go/main.go index 3e9d0ba..7660372 100644 --- a/examples/go/main.go +++ b/examples/go/main.go @@ -4,7 +4,7 @@ import ( "encoding/json" "os" - kitup "github.com/samzong/kitup/go" + kitup "github.com/lathe-cli/kitup/go" ) func main() { diff --git a/go-cobra/go.mod b/go-cobra/go.mod index b2b7296..e1de685 100644 --- a/go-cobra/go.mod +++ b/go-cobra/go.mod @@ -1,9 +1,9 @@ -module github.com/samzong/kitup/go-cobra +module github.com/lathe-cli/kitup/go-cobra go 1.23 require ( - github.com/samzong/kitup/go v0.1.2 + github.com/lathe-cli/kitup/go v0.1.2 github.com/spf13/cobra v1.9.1 ) @@ -12,4 +12,4 @@ require ( github.com/spf13/pflag v1.0.6 // indirect ) -replace github.com/samzong/kitup/go => ../go +replace github.com/lathe-cli/kitup/go => ../go diff --git a/go-cobra/skill.go b/go-cobra/skill.go index de77bed..d7dee5d 100644 --- a/go-cobra/skill.go +++ b/go-cobra/skill.go @@ -3,7 +3,7 @@ package kitupcobra import ( "io" - kitup "github.com/samzong/kitup/go" + kitup "github.com/lathe-cli/kitup/go" "github.com/spf13/cobra" ) diff --git a/go-cobra/skill_test.go b/go-cobra/skill_test.go index 053f329..15a1639 100644 --- a/go-cobra/skill_test.go +++ b/go-cobra/skill_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - kitup "github.com/samzong/kitup/go" + kitup "github.com/lathe-cli/kitup/go" ) func TestSkillCommandInstallsWithCoreFlags(t *testing.T) { diff --git a/go/go.mod b/go/go.mod index b0ac555..a7139f2 100644 --- a/go/go.mod +++ b/go/go.mod @@ -1,3 +1,3 @@ -module github.com/samzong/kitup/go +module github.com/lathe-cli/kitup/go go 1.23 diff --git a/rust/Cargo.toml b/rust/Cargo.toml index bb9f6f2..0390987 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -4,8 +4,8 @@ version = "0.1.2" edition = "2021" description = "Shared installer SDK for bundled Agent Skills." license = "MIT" -repository = "https://github.com/samzong/kitup" -homepage = "https://github.com/samzong/kitup" +repository = "https://github.com/lathe-cli/kitup" +homepage = "https://github.com/lathe-cli/kitup" readme = "README.md" keywords = ["agent", "skills", "installer", "sdk"] categories = ["development-tools"] diff --git a/rust/README.md b/rust/README.md index fbade50..ecd603a 100644 --- a/rust/README.md +++ b/rust/README.md @@ -3,4 +3,4 @@ Rust SDK for `kitup`, a shared installer for bundled Agent Skills. See the repository README for product scope and examples: -https://github.com/samzong/kitup +https://github.com/lathe-cli/kitup diff --git a/scripts/prepare-release.mjs b/scripts/prepare-release.mjs index 6fd762e..439d4b3 100755 --- a/scripts/prepare-release.mjs +++ b/scripts/prepare-release.mjs @@ -51,7 +51,7 @@ write(packagePath, `${JSON.stringify(pkg, null, 2)}\n`); replaceOne(cargoPath, /^version = "([^"]+)"$/m, `version = "${nextVersion}"`); replaceOne( goCobraModPath, - /(github\.com\/samzong\/kitup\/go\s+)v\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?/, + /(github\.com\/lathe-cli\/kitup\/go\s+)v\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?/, `$1${tag}`, ); diff --git a/scripts/smoke-release.sh b/scripts/smoke-release.sh index a672a4f..9fb6443 100755 --- a/scripts/smoke-release.sh +++ b/scripts/smoke-release.sh @@ -46,14 +46,14 @@ smoke_go() { dir="$(mktemp -d "$tmp/go.XXXXXX")" cd "$dir" go mod init kitup-release-smoke >/dev/null - go get "github.com/samzong/kitup/go@v$version" >/dev/null + go get "github.com/lathe-cli/kitup/go@v$version" >/dev/null cat > main.go <<'GO' package main import ( "fmt" - kitup "github.com/samzong/kitup/go" + kitup "github.com/lathe-cli/kitup/go" ) func main() { @@ -74,16 +74,16 @@ smoke_go_cobra() { dir="$(mktemp -d "$tmp/go-cobra.XXXXXX")" cd "$dir" go mod init kitup-release-smoke-cobra >/dev/null - go get "github.com/samzong/kitup/go-cobra@v$version" >/dev/null - test "$(go list -m -f '{{.Version}}' github.com/samzong/kitup/go)" = "v$version" + go get "github.com/lathe-cli/kitup/go-cobra@v$version" >/dev/null + test "$(go list -m -f '{{.Version}}' github.com/lathe-cli/kitup/go)" = "v$version" cat > main.go <<'GO' package main import ( "fmt" - kitup "github.com/samzong/kitup/go" - kitupcobra "github.com/samzong/kitup/go-cobra" + kitup "github.com/lathe-cli/kitup/go" + kitupcobra "github.com/lathe-cli/kitup/go-cobra" ) func main() { diff --git a/ts/README.md b/ts/README.md index aa7534a..f2844a1 100644 --- a/ts/README.md +++ b/ts/README.md @@ -3,4 +3,4 @@ TypeScript SDK for `kitup`, a shared installer for bundled Agent Skills. See the repository README for product scope and examples: -https://github.com/samzong/kitup +https://github.com/lathe-cli/kitup diff --git a/ts/package.json b/ts/package.json index a5c56b8..34d003f 100644 --- a/ts/package.json +++ b/ts/package.json @@ -6,13 +6,13 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/samzong/kitup", + "url": "https://github.com/lathe-cli/kitup", "directory": "ts" }, "bugs": { - "url": "https://github.com/samzong/kitup/issues" + "url": "https://github.com/lathe-cli/kitup/issues" }, - "homepage": "https://github.com/samzong/kitup#readme", + "homepage": "https://github.com/lathe-cli/kitup#readme", "keywords": [ "agent", "skills",