Skip to content
Draft
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 README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cursor Cookbook
# Cursor Sciencebook

This repo contains small examples for building with Cursor.

Expand Down
4 changes: 2 additions & 2 deletions sdk/dag-task-runner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ Run the included example DAG end-to-end:
pnpm example
```

The example builds a tiny single-file CLI todo app. Tasks run against `process.cwd()` by default, so use a scratch directory if you don't want files written into the cookbook:
The example builds a tiny single-file CLI todo app. Tasks run against `process.cwd()` by default, so use a scratch directory if you don't want files written into the sciencebook:

```bash
mkdir -p /tmp/dag-demo && cd /tmp/dag-demo
CURSOR_API_KEY="crsr_..." \
pnpm --dir ~/Code/cookbook/sdk/dag-task-runner \
pnpm --dir ~/Code/sciencebook/sdk/dag-task-runner \
dev -- --dag examples/example_dag.json --canvas-path "$PWD/dag-example.canvas.tsx" --cwd "$PWD"
```

Expand Down