From e9fe197304a6280441cb9b40dd6ac06677c5801c Mon Sep 17 00:00:00 2001 From: WellDunDun <45949032+WellDunDun@users.noreply.github.com> Date: Tue, 10 Mar 2026 21:11:47 +0300 Subject: [PATCH 1/3] Prepare 0.2.1 release --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 883d5ba..3d97ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [0.2.1] — 2026-03-10 + +### Changed + +- Updated package metadata to point to the new `selftune-dev/selftune` GitHub org and repository URLs. +- Organizational move follow-up release so npm metadata resolves to the new public repo. + ## [0.2.0] — 2026-03-08 ### Added diff --git a/package.json b/package.json index bc7ad62..5db48cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "selftune", - "version": "0.2.0", + "version": "0.2.1", "description": "Self-improving skills CLI for AI agents", "type": "module", "license": "MIT", From 6593ba755cce6d6c40700aaca6f9181d5899d4c1 Mon Sep 17 00:00:00 2001 From: WellDunDun <45949032+WellDunDun@users.noreply.github.com> Date: Tue, 10 Mar 2026 21:15:27 +0300 Subject: [PATCH 2/3] Update README install path --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7824eef..1814d3d 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ **Self-improving skills for AI agents.** -[![CI](https://github.com/WellDunDun/selftune/actions/workflows/ci.yml/badge.svg)](https://github.com/WellDunDun/selftune/actions/workflows/ci.yml) -[![CodeQL](https://github.com/WellDunDun/selftune/actions/workflows/codeql.yml/badge.svg)](https://github.com/WellDunDun/selftune/actions/workflows/codeql.yml) -[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/WellDunDun/selftune/badge)](https://securityscorecards.dev/viewer/?uri=github.com/WellDunDun/selftune) +[![CI](https://github.com/selftune-dev/selftune/actions/workflows/ci.yml/badge.svg)](https://github.com/selftune-dev/selftune/actions/workflows/ci.yml) +[![CodeQL](https://github.com/selftune-dev/selftune/actions/workflows/codeql.yml/badge.svg)](https://github.com/selftune-dev/selftune/actions/workflows/codeql.yml) +[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/selftune-dev/selftune/badge)](https://securityscorecards.dev/viewer/?uri=github.com/selftune-dev/selftune) [![npm version](https://img.shields.io/npm/v/selftune)](https://www.npmjs.com/package/selftune) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-blue.svg)](https://www.typescriptlang.org/) @@ -30,7 +30,7 @@ Works with **Claude Code**, **Codex**, **OpenCode**, and **OpenClaw**. Zero runt ## Install ```bash -npx skills add WellDunDun/selftune +npx skills add selftune-dev/selftune ``` Then tell your agent: **"initialize selftune"** From e156e93398764570dd9f2f57b68e592416a38964 Mon Sep 17 00:00:00 2001 From: WellDunDun <45949032+WellDunDun@users.noreply.github.com> Date: Tue, 10 Mar 2026 21:28:17 +0300 Subject: [PATCH 3/3] Use trusted publishing for npm --- .github/workflows/publish.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a853720..01cc957 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -88,8 +88,6 @@ jobs: - name: Publish to npm if: steps.check.outputs.should_publish == 'true' id: publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: npm publish --provenance --access public - name: Create GitHub Release