# pi-docket v0.7.1

A patch release for tmux navigation polish. Workers can now return directly to the parent tmux target that spawned them.

## Fixes

### Attach back to parent from workers

`/docket attach parent` now works inside a Docket worker when the worker was spawned from a tmux-backed parent session.

- top-level workers record the parent tmux session/window/pane target at spawn time,
- child workers fall back to their parent worker's tmux window,
- running the command inside tmux uses `tmux switch-client`, matching existing `/docket attach w<N>` behavior,
- outside tmux it copies the corresponding `tmux attach` command,
- workers spawned without a tmux-backed parent get a clear warning instead of a misleading attach command.

This keeps direct worker inspection reversible without adding a new command family or alias.

## Compatibility

No worker protocol, storage path, or command-name migration is required. Existing workers continue to work; only workers spawned after this release record a parent tmux target for `/docket attach parent`.

## Upgrade

```bash
npm install -g @roodriigoooo/pi-docket@0.7.1
```

Publishing is handled by the `Release` GitHub Actions workflow. It reads the version from `package.json`, verifies the requested version matches, publishes to npm with provenance, packs the npm artifact, and creates the GitHub Release from this file.
