From c77aaaa7a2c08459e402f02ff2af58a185ab0012 Mon Sep 17 00:00:00 2001 From: Beon de Nood Date: Sun, 18 Jan 2026 20:02:47 -0500 Subject: [PATCH 1/3] chore: Bump version to 2.4.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0484a4b..e05d39a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capiscio", - "version": "2.3.1", + "version": "2.4.0", "description": "The official CapiscIO CLI tool for validating A2A agents", "keywords": [ "a2a", From 2c73504020782ce872f7e30f47309349ef8dfff5 Mon Sep 17 00:00:00 2001 From: Beon de Nood Date: Sun, 18 Jan 2026 20:31:49 -0500 Subject: [PATCH 2/3] docs: Add v2.4.0 changelog entry --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fffa8a..732ae1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.4.0] - 2026-01-18 + +### Changed +- **CORE VERSION**: Now downloads `capiscio-core` v2.4.0 + ## [2.3.1] - 2025-01-14 ### Changed From f2bb980bdf5885aa8e669b421be8833e23e6199f Mon Sep 17 00:00:00 2001 From: Beon de Nood Date: Tue, 3 Feb 2026 23:24:52 +0200 Subject: [PATCH 3/3] docs: update CLI naming to capiscio (consolidation) --- .github/workflows/README.md | 4 +++- CONTRIBUTING.md | 17 ++++++++++------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 55bb430..3dcb97e 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -1,6 +1,8 @@ # GitHub Actions Workflows -This directory contains the CI/CD workflows for the capiscio-cli project. +This directory contains the CI/CD workflows for the `capiscio-node` project (npm package: `capiscio`). + +Core binaries are published from `capiscio-core` releases: https://github.com/capiscio/capiscio-core/releases ## Workflows diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a165d01..c3922f4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,11 +1,14 @@ -# Contributing to CapiscIO CLI +# Contributing to CapiscIO CLI (Node.js Wrapper) -Thank you for your interest in contributing to CapiscIO CLI! This document provides guidelines and information for contributors. +Thank you for your interest in contributing to the CapiscIO CLI wrapper! This repository is `capiscio-node`, and the published npm package name is `capiscio`. + +!!! note "Where the binaries come from" + This project downloads the `capiscio-core` GitHub Release binaries at runtime. Core binaries are published from https://github.com/capiscio/capiscio-core. ## 🚀 Quick Start 1. Fork the repository -2. Clone your fork: `git clone https://github.com/your-username/capiscio-cli.git` +2. Clone your fork: `git clone https://github.com/your-username/capiscio-node.git` 3. Install dependencies: `npm install` 4. Create a feature branch: `git checkout -b feature/your-feature-name` 5. Make your changes @@ -43,7 +46,7 @@ git push origin main #### 2. Create Draft Release -1. Go to [GitHub Releases](https://github.com/capiscio/capiscio-cli/releases) +1. Go to [GitHub Releases](https://github.com/capiscio/capiscio-node/releases) 2. Click "Create a new release" 3. **Important**: Create as **Draft** (do not publish yet) 4. Set tag version (e.g., `v1.2.3`) @@ -54,7 +57,7 @@ git push origin main #### 3. Wait for Binary Upload 1. The **Build and Release Binaries** workflow will trigger automatically -2. Monitor the [Actions tab](https://github.com/capiscio/capiscio-cli/actions) +2. Monitor the [Actions tab](https://github.com/capiscio/capiscio-node/actions) 3. Wait for all binaries to be built and uploaded (~10-15 minutes) 4. Verify assets appear in the draft release: - `capiscio-linux-x64.tar.gz` @@ -97,8 +100,8 @@ git push origin main ### Installation ```bash -git clone https://github.com/capiscio/capiscio-cli.git -cd capiscio-cli +git clone https://github.com/capiscio/capiscio-node.git +cd capiscio-node npm install ```