From cb0f767f76751696b0ff5db6833f640dbbb0ad94 Mon Sep 17 00:00:00 2001 From: Tyler Willis Date: Thu, 22 Jan 2026 16:43:17 -0800 Subject: [PATCH] Update install message and docs to use /deepwork_jobs entry point Change references from /deepwork_jobs.define to /deepwork_jobs since the meta-skill is now the recommended entry point for defining jobs. Co-Authored-By: Claude Opus 4.5 --- README.md | 4 ++-- src/deepwork/cli/install.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 5d525475..b80a840e 100644 --- a/src/deepwork/cli/install.py +++ b/src/deepwork/cli/install.py @@ -417,5 +417,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()