feat: refresh workspace tooling and bump 0.4.2

This commit is contained in:
Benjamin Shafii
2026-01-25 23:40:15 -08:00
parent 6f623936c2
commit 3dca99aaba
37 changed files with 1879 additions and 1325 deletions

View File

@@ -0,0 +1,4 @@
---
description: Say hello stranger
---
hello stranger

View File

@@ -0,0 +1,22 @@
---
name: get-started
description: Guide users through the get started setup and Chrome DevTools demo.
---
## When to use
- Always load this skill when the user says "get started".
## What to do
- Reply with these four lines, exactly and in order:
1) hey there welcome this is openwork
2) we've pre-configured you with a couple tools
3) Get Started
4) write "hey go on google.com"
## Then
- If the user writes "go on google.com" (or "hey go on google.com"), use the chrome-devtools MCP to open the site.
- After the navigation completes, reply: "I'm on <site>" where <site> is the final URL or page title they asked for.

View File

@@ -0,0 +1,54 @@
---
title: Release flow
description: Step through versioning, tagging, and verification
name: release
---
## Prepare
Confirm the repo is on `main` and clean. Keep changes aligned with OpenCode primitives like `.opencode`, `opencode.json`, skills, and plugins when relevant.
---
## Bump
Update versions in `packages/app/package.json`, `packages/desktop/package.json`, `packages/desktop/src-tauri/tauri.conf.json`, and `packages/desktop/src-tauri/Cargo.toml`. Use one of these commands.
```bash
pnpm bump:patch
pnpm bump:minor
pnpm bump:major
pnpm bump:set -- 0.1.21
```
---
## Merge
Merge the version bump into `main`. Make sure no secrets or credentials are committed.
---
## Tag
Create and push the tag to trigger the Release App workflow.
```bash
git tag vX.Y.Z
git push origin vX.Y.Z
```
---
## Rerun
If a tag needs a rerun, dispatch the workflow.
```bash
gh workflow run "Release App" --repo different-ai/openwork -f tag=vX.Y.Z
```
---
## Verify
Confirm the run and the published release.
```bash
gh run list --repo different-ai/openwork --workflow "Release App" --limit 5
gh release view vX.Y.Z --repo different-ai/openwork
```