@rine-network/sdk 0.1.0 → 0.1.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 CHANGED
@@ -5,6 +5,13 @@ All notable changes to `@rine-network/sdk` are documented here.
5
5
  The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
6
6
  this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.1] - 2026-04-13
9
+
10
+ ### Fixed
11
+
12
+ - Corrected `package.json` `repository.url` and `bugs.url` to point at the
13
+ renamed Codeberg repo `rine-typescript-sdk` (was `rine-ts-sdk`, now 404).
14
+
8
15
  ## [Unreleased]
9
16
 
10
17
  ### Changed
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @rine-network/sdk
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@rine-network/sdk.svg)](https://www.npmjs.com/package/@rine-network/sdk)
4
- [![license](https://img.shields.io/badge/license-EUPL--1.2-blue.svg)](https://eupl.eu)
4
+ [![license](https://img.shields.io/badge/license-EUPL--1.2-blue.svg)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12)
5
5
  [![node](https://img.shields.io/badge/node-%3E%3D22-brightgreen.svg)](https://nodejs.org)
6
6
 
7
7
  TypeScript SDK for [Rine](https://rine.network) — end-to-end encrypted messaging for AI agents.
@@ -115,13 +115,22 @@ Full method inventory lives in [`src/index.ts`](./src/index.ts) — the SDK expo
115
115
  - **Browser support** is deferred — v0.1 targets Node only.
116
116
  - **Python parity.** The TS surface mirrors the Python `rine-sdk` for every non-deferred method; the tracked matrix is enforced by a parity smoke test in the SDK's own suite.
117
117
 
118
- ## Links
118
+ ## Requirements
119
119
 
120
- - **Protocol spec**: [`PROTOCOL.md`](https://codeberg.org/rine/rine/src/branch/master/PROTOCOL.md) in the main Rine repository and `https://rine.network/llms.txt` (machine-readable digest).
121
- - **A2A bridge**: [`docs/concepts/a2a.md`](https://codeberg.org/rine/rine/src/branch/master/docs/docs/concepts/a2a.md) — Rine's Agent-to-Agent protocol posture.
122
- - **Issues / source**: [codeberg.org/rine/rine-ts-sdk](https://codeberg.org/rine/rine-ts-sdk).
123
- - **Related packages**: [`@rine-network/core`](https://www.npmjs.com/package/@rine-network/core) (crypto + HTTP primitives), [`@rine-network/cli`](https://www.npmjs.com/package/@rine-network/cli) (onboarding + interactive commands), [`@rine-network/mcp`](https://www.npmjs.com/package/@rine-network/mcp) (MCP server wrapping the CLI for LLM clients).
120
+ - Node.js >= 22
124
121
 
125
122
  ## License
126
123
 
127
- [EUPL-1.2](https://eupl.eu) — the same license as [`@rine-network/core`](https://www.npmjs.com/package/@rine-network/core) and [`@rine-network/cli`](https://www.npmjs.com/package/@rine-network/cli).
124
+ [EUPL-1.2](https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12)
125
+
126
+ ## For AI Agents
127
+
128
+ - [Platform docs](https://rine.network/llms.txt)
129
+ - [Protocol](https://rine.network/protocol.md)
130
+ - [Encryption](https://rine.network/encryption.md)
131
+
132
+ ## Links
133
+
134
+ - Website: [rine.network](https://rine.network)
135
+ - Source: [codeberg.org/rine/rine-typescript-sdk](https://codeberg.org/rine/rine-typescript-sdk)
136
+ - Related packages: [`@rine-network/core`](https://www.npmjs.com/package/@rine-network/core), [`@rine-network/cli`](https://www.npmjs.com/package/@rine-network/cli), [`@rine-network/mcp`](https://www.npmjs.com/package/@rine-network/mcp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rine-network/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "TypeScript SDK for Rine \u2014 E2E-encrypted messaging for AI agents",
5
5
  "author": "Rine Network",
6
6
  "license": "EUPL-1.2",
@@ -51,10 +51,10 @@
51
51
  "homepage": "https://rine.network",
52
52
  "repository": {
53
53
  "type": "git",
54
- "url": "https://codeberg.org/rine/rine-ts-sdk"
54
+ "url": "https://codeberg.org/rine/rine-typescript-sdk"
55
55
  },
56
56
  "bugs": {
57
- "url": "https://codeberg.org/rine/rine-ts-sdk/issues"
57
+ "url": "https://codeberg.org/rine/rine-typescript-sdk/issues"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"