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 .opencode/skills/daytona-cloud-instance/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Start the Den cloud stack in Daytona, confirm it is reachable, and return the UR

## Fast Path

From the repo root, prefer the existing Daytona helper when available:
From the repo root, prefer the existing Daytona server helper when available:

```bash
bash .devcontainer/test-on-daytona.sh $(git rev-parse --abbrev-ref HEAD) --server-only --artifacts-volume
bash .devcontainer/test-server-on-daytona.sh $(git rev-parse --abbrev-ref HEAD)
```

If the branch is local-only, push it first or apply the local diff manually in the sandbox before validating.
Expand Down
2 changes: 1 addition & 1 deletion .opencode/skills/daytona-dev/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ browser.

- Daytona CLI installed: `brew install daytonaio/cli/daytona` or download from [GitHub releases](https://github.com/daytonaio/daytona/releases)
- Logged in: `daytona login`
- Using the "Different AI" org: `daytona organization use "Different AI"`
- Using the right Daytona organization for your workspace: `daytona organization use "<org-name>"`

## Quick Start

Expand Down
4 changes: 3 additions & 1 deletion .opencode/skills/daytona-seeded-cloud-demo/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ Daytona cloud demo is running and seeded.

## Troubleshooting

If `.devcontainer/test-on-daytona.sh --server-only` appears in older docs, do not use it unless this checkout supports that flag. Use `.devcontainer/test-server-on-daytona.sh` for server-only cloud demos.
If older docs suggest running the Electron helper in a server-only mode, do not
use that path unless this checkout supports it. Use
`.devcontainer/test-server-on-daytona.sh` for server-only cloud demos.

If sign-in returns `403` for email verification, Den API is not running with `OPENWORK_DEV_MODE=1` or did not restart after env changes. Restart the Den stack and rerun the seed.

Expand Down
4 changes: 2 additions & 2 deletions .opencode/skills/run-evals/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Run the OpenWork UI evaluation flows against a real Electron app. Prefer a fresh
## Prerequisites

- `daytona` CLI installed and logged in (`daytona login`)
- Using the "Different AI" org (`daytona organization use "Different AI"`)
- Using the right Daytona organization for your workspace (`daytona organization use "<org-name>"`)
- The `.devcontainer/` files exist in the repo
- Optional provider coverage: reusable Daytona volume `openwork-eval-secrets`
populated with `.env` files using `bash .devcontainer/setup-daytona-secrets-volume.sh .newtoken`
Expand All @@ -38,7 +38,7 @@ Use these Daytona skills when an eval touches a specific area:
Use the repo helper unless you need to debug a specific Daytona step manually:

```bash
daytona organization use "Different AI"
daytona organization use "<org-name>"
bash .devcontainer/test-on-daytona.sh <branch-or-commit>
```

Expand Down
2 changes: 1 addition & 1 deletion evals/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ display needed. See [`daytona-flows.md`](./daytona-flows.md) for full details.
Quick start:

```bash
daytona organization use "Different AI"
daytona organization use "<org-name>"
bash .devcontainer/test-on-daytona.sh [branch-or-commit]
# Use the printed Electron CDP URL with browser_* tools.
```
Expand Down
2 changes: 1 addition & 1 deletion evals/daytona-flows.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Daytona proxy.
### 1. Create/start the sandbox

```bash
daytona organization use "Different AI"
daytona organization use "<org-name>"
bash .devcontainer/test-on-daytona.sh [branch-or-commit]
```

Expand Down
Loading