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
4 changes: 2 additions & 2 deletions .claude/skills/cli-toolbox_publish/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Bump versions, push tags, trigger CI releases, and optionally install locally

## Context

This is for the `productiveio/cli-toolbox` workspace. It has 4 independent binaries: `tb-prod`, `tb-sem`, `tb-bug`, `tb-lf`. Each is versioned and released independently using git tags in `<crate>-v<version>` format.
This is for the `productiveio/cli-toolbox` workspace. It has 5 independent binaries: `tb-prod`, `tb-sem`, `tb-bug`, `tb-lf`, `tb-devctl`. Each is versioned and released independently using git tags in `<crate>-v<version>` format.

**Critical:** GitHub Actions does NOT trigger individual workflows when multiple tags are pushed in a single `git push --tags`. Tags MUST be pushed one at a time with a small delay between them.

## Step 1: Parse arguments

Parse `$ARGUMENTS` to determine:
- **Which tools** to publish: a specific tool name (e.g., `tb-prod`), multiple names, or `--all` for all 4
- **Which tools** to publish: a specific tool name (e.g., `tb-prod`), multiple names, or `--all` for all 5
- **Version**: the target version (e.g., `0.2.0`). If omitted, ask the user.
- **`--install`**: after releases complete, install binaries locally via `scripts/install.sh`
- **`--with-skill`**: when installing, also install Claude Code skills (passed through to install.sh)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Fmt, Clippy, Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: Swatinem/rust-cache@v2

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: Fmt, Clippy, Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: Swatinem/rust-cache@v2

Expand All @@ -73,7 +73,7 @@ jobs:
suffix: linux-x86_64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -86,7 +86,7 @@ jobs:
run: cp target/${{ matrix.target }}/release/${{ needs.prepare.outputs.crate }} ${{ needs.prepare.outputs.crate }}-${{ matrix.suffix }}

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ needs.prepare.outputs.crate }}-${{ matrix.suffix }}
path: ${{ needs.prepare.outputs.crate }}-${{ matrix.suffix }}
Expand All @@ -97,7 +97,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/') && !(inputs.dry_run || false)
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ A Cargo workspace monorepo containing CLI tools built for internal use at [Produ
| `tb-sem` | `tb-sem` | Semaphore CI insights — pipeline and job analysis |
| `tb-prod` | `tb-prod` | Productive.io CLI — tasks, projects, people, time tracking |
| `tb-bug` | `tb-bug` | Bugsnag insights — error and stability analysis |
| `tb-devctl` | `tb-devctl` | Local dev environment orchestrator for Productive services |
| `toolbox-core` | (library) | Shared infrastructure: config, HTTP, output formatting, time parsing |

## Naming convention
Expand Down