```ts
type ContextManagerStrategy =
  | ContextManagerPreset
  | ContextManagerConfig
  | false;
```

Defined in: [src/context-manager/context-manager.ts:41](https://github.com/strands-agents/harness-sdk/blob/d1e1d0acbb3718d71741eceedee029cda695dcfd/strands-ts/src/context-manager/context-manager.ts#L41)

Supported values for the `contextManager` parameter.

-   `"auto"`: Managed context with proactive compression + offloading.
-   `"agentic"`: Model-driven context management via injected tools.
-   [ContextManagerConfig](/docs/api/typescript/ContextManagerConfig/index.md): Custom strategy pipeline and stash configuration.
-   `false`: Explicitly disable all context management (no compression, no offloading).