From 1fb1c03457361f74c7e14f259cfc10f0f665a8d6 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 23 Jun 2026 18:12:10 +0000 Subject: [PATCH] Rename Cookbook to Sciencebook Co-authored-by: Aaditya Jain --- README.md | 2 +- sdk/dag-task-runner/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d651daa..3533c23 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Cursor Cookbook +# Cursor Sciencebook This repo contains small examples for building with Cursor. diff --git a/sdk/dag-task-runner/README.md b/sdk/dag-task-runner/README.md index 5aabe14..9febb45 100644 --- a/sdk/dag-task-runner/README.md +++ b/sdk/dag-task-runner/README.md @@ -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" ```