Skip to content

Commit cf7bd5c

Browse files
authored
Merge pull request #124 from TrueNine/dev
Update CLI release workflow to publish SDK artifacts
2 parents 4dec8a6 + f68e7f8 commit cf7bd5c

38 files changed

+1151
-139
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ coverage/
66
.nyc_output
77
*.tmp
88
*.temp
9-
nul
10-
.idea/
11-
.vscode/
9+
1210
.npmrc
1311
README.md
1412
!/README.md
@@ -25,3 +23,4 @@ cli/npm/**/*.node
2523
libraries/**/dist/*.node
2624
**/target/
2725
!**/Cargo.lock
26+
output/

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
]
1111

1212
[workspace.package]
13-
version = "2026.10402.110"
13+
version = "2026.10402.116"
1414
edition = "2024"
1515
rust-version = "1.88"
1616
license = "AGPL-3.0-only"

cli/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-darwin-arm64",
3-
"version": "2026.10402.110",
3+
"version": "2026.10402.116",
44
"os": [
55
"darwin"
66
],

cli/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-darwin-x64",
3-
"version": "2026.10402.110",
3+
"version": "2026.10402.116",
44
"os": [
55
"darwin"
66
],

cli/npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-linux-arm64-gnu",
3-
"version": "2026.10402.110",
3+
"version": "2026.10402.116",
44
"os": [
55
"linux"
66
],

cli/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-linux-x64-gnu",
3-
"version": "2026.10402.110",
3+
"version": "2026.10402.116",
44
"os": [
55
"linux"
66
],

cli/npm/win32-x64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-win32-x64-msvc",
3-
"version": "2026.10402.110",
3+
"version": "2026.10402.116",
44
"os": [
55
"win32"
66
],

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@truenine/memory-sync-cli",
33
"type": "module",
4-
"version": "2026.10402.110",
4+
"version": "2026.10402.116",
55
"description": "TrueNine Memory Synchronization CLI shell",
66
"author": "TrueNine",
77
"license": "AGPL-3.0-only",

cli/src/plugin.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import {
99
DroidCLIOutputPlugin,
1010
EditorConfigOutputPlugin,
1111
GeminiCLIOutputPlugin,
12-
GenericSkillsOutputPlugin,
1312
GitExcludeOutputPlugin,
1413
JetBrainsAIAssistantCodexOutputPlugin,
1514
JetBrainsIDECodeStyleConfigOutputPlugin,
15+
KiroCLIOutputPlugin,
1616
OpencodeCLIOutputPlugin,
1717
QoderIDEPluginOutputPlugin,
1818
ReadmeMdConfigFileOutputPlugin,
@@ -48,7 +48,7 @@ export async function createDefaultPluginConfig(
4848
new JetBrainsAIAssistantCodexOutputPlugin(),
4949
new DroidCLIOutputPlugin(),
5050
new GeminiCLIOutputPlugin(),
51-
new GenericSkillsOutputPlugin(),
51+
new KiroCLIOutputPlugin(),
5252
new OpencodeCLIOutputPlugin(),
5353
new QoderIDEPluginOutputPlugin(),
5454
new TraeIDEOutputPlugin(),

0 commit comments

Comments
 (0)