> ## Documentation Index
> Fetch the complete documentation index at: https://docs.evox.wraithesports.app/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK examples

> Run the T1 process, T2 Worker and credential lifecycle examples with the correct security claim.

<Note>The `pnpm smoke:*` commands on this page are for an evoX monorepo checkout (checked-in example and security harnesses). For a standalone start, use the <a href="/en/sdk/quickstart">Quickstart</a> and <a href="/en/sdk/tutorial-first-plugin">First real plugin</a> pages.</Note>

## Trusted counter — T1

```bash theme={}
PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false pnpm smoke:plugin-example
PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false pnpm smoke:plugin-example-mock
```

## Browser Worker status — T2 source example

`examples/developer-plugins/browser-worker-status` uses only the browser Worker transport and `key.display`. There is no Node, DOM, direct network, filesystem or process fallback.

```bash theme={}
PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false pnpm smoke:plugin-browser-worker-example
PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false pnpm smoke:plugin-sandbox
```

The first smoke verifies the source/behavior contract; the second verifies the real sandboxed Chromium boundary. This source example is not yet evidence of a bundle, package, publish preview or Market readiness.

## Credential lifecycle

`examples/developer-plugins/credential-lifecycle` uses lifecycle-only credential APIs; there is no raw token getter.

```bash theme={}
PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false pnpm smoke:plugin-credential-example
```

<Note>Do not grow the permission set because it “might be needed later”. Every capability must have a real user task and fail-closed behavior.</Note>
