mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
feat: refresh workspace tooling and bump 0.4.2
This commit is contained in:
4
.opencode/commands/hello-stranger.md
Normal file
4
.opencode/commands/hello-stranger.md
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
description: Say hello stranger
|
||||
---
|
||||
hello stranger
|
||||
22
.opencode/skills/get-started/SKILL.md
Normal file
22
.opencode/skills/get-started/SKILL.md
Normal 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.
|
||||
54
.opencode/skills/release/SKILL.md
Normal file
54
.opencode/skills/release/SKILL.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user