ExamplesSmart Links

Smart Links

Creating smart links with SDK

Configure a task to auto-execute from a URL

Demo here: Create a New Operator

  1. Import the components
pnpm i @doable.sh/sdk
import { TaskDefinition, startTask } from '@doable.sh/sdk';
  1. Check for a task definition in url
const searchParams = useSearchParams();
const taskId = searchParams.get("taskId");
const autoExecute = searchParams.get("autoExecute") === "create-operator-task" ? true : false;
  1. Add useEffect to start a task i.e. src/app/(app)/(user)/dashboard/page.tsx
useEffect(() => {
    console.log("autoExecute", autoExecute);
    if (autoExecute) {
        startTask("create-operator-task");
    }
}, [autoExecute]);
  1. Create a task definition i.e. src/app/(app)/(user)/dashboard/page.tsx
<TaskDefinition
    id="create-operator-task"
    name="Create Operator"
    description="Create a new operator"
    steps={[
        "Click the 'Create New Operator' button in the top right",
        "Fill out the form with dummy values for 'Acme Inc. Web App Operator'",
        "Use example.com as the domain",
        "Create the operator",
        "Click the 'Configuration' Tab next to Sessions"
    ]}
/>
  1. Serve http://localhost:3000 or development port to see results.