Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ RUN apt-get update && apt-get install -y libdbus-1-dev pkg-config
RUN git clone --depth 1 https://github.com/lukehinds/nono.git /tmp/nono && cd /tmp/nono && cargo build --release

FROM node:24-bookworm-slim AS base
ARG TPS_VERSION=0.5.2
ARG TPS_VERSION=0.5.3
RUN npm install -g @tpsdev-ai/agent@${TPS_VERSION}
COPY --from=nono-builder /tmp/nono/target/release/nono /usr/local/bin/nono
RUN apt-get update && apt-get install -y --no-install-recommends git curl jq ca-certificates libdbus-1-3 && rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tpsdev-ai/agent",
"version": "0.5.2",
"version": "0.5.3",
"description": "Native TPS Agent Runtime — headless, mail-driven, nono-sandboxed",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tpsdev-ai/cli-darwin-arm64",
"version": "0.5.2",
"version": "0.5.3",
"description": "TPS CLI native binary for darwin-arm64",
"os": [
"darwin"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tpsdev-ai/cli-darwin-x64",
"version": "0.5.2",
"version": "0.5.3",
"description": "TPS CLI native binary for darwin-x64",
"os": [
"darwin"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tpsdev-ai/cli-linux-arm64",
"version": "0.5.2",
"version": "0.5.3",
"description": "TPS CLI native binary for linux-arm64",
"os": [
"linux"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tpsdev-ai/cli-linux-x64",
"version": "0.5.2",
"version": "0.5.3",
"description": "TPS CLI native binary for linux-x64",
"os": [
"linux"
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@tpsdev-ai/cli",
"version": "0.5.2",
"version": "0.5.3",
"description": "TPS Report CLI — because every agent needs the proper paperwork.",
"type": "module",
"bin": {
"tps": "./bin/tps.cjs"
},
"optionalDependencies": {
"@tpsdev-ai/cli-darwin-arm64": "0.5.2",
"@tpsdev-ai/cli-darwin-x64": "0.5.2",
"@tpsdev-ai/cli-linux-arm64": "0.5.2",
"@tpsdev-ai/cli-linux-x64": "0.5.2"
"@tpsdev-ai/cli-darwin-arm64": "0.5.3",
"@tpsdev-ai/cli-darwin-x64": "0.5.3",
"@tpsdev-ai/cli-linux-arm64": "0.5.3",
"@tpsdev-ai/cli-linux-x64": "0.5.3"
},
"scripts": {
"build": "tsc",
Expand Down
Loading