diff --git a/README.md b/README.md index 04cfd86d..569f08f8 100644 --- a/README.md +++ b/README.md @@ -74,10 +74,10 @@ Jobs are multi-step workflows where each Step has clear input and output artifac The process of defining a job itself is actually a DeepWork job. You can see it at `.deepwork/jobs/deepwork_jobs/`. -To start the process, just run the first Step in the job: +To start the process, just run: ``` -/deepwork_jobs.define +/deepwork_jobs ``` Follow the interactive prompts to: diff --git a/src/deepwork/cli/install.py b/src/deepwork/cli/install.py index 843445fc..19bec4f8 100644 --- a/src/deepwork/cli/install.py +++ b/src/deepwork/cli/install.py @@ -423,5 +423,5 @@ def _install_deepwork(platform_name: str | None, project_path: Path) -> None: console.print() console.print("[bold]Next steps:[/bold]") console.print(" 1. Start your agent CLI (ex. [cyan]claude[/cyan] or [cyan]gemini[/cyan])") - console.print(" 2. Define your first job using the command [cyan]/deepwork_jobs.define[/cyan]") + console.print(" 2. Define your first job using the command [cyan]/deepwork_jobs[/cyan]") console.print()