# list_trusted_skill_dir_entries

> **Function** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/skills/trust/list_trusted_skill_dir_entries)

Return trusted directories paired with their approval timestamps.

The audit surface for the `trusted_at` metadata that `trust_skill_dir`
records: `list_trusted_skill_dirs` returns only paths (all enforcement
needs), so this is the one reader of the timestamp, used by `skills trust
list` to show *when* each directory was approved.

## Signature

```python
list_trusted_skill_dir_entries(
    *,
    store_path: Path | None = None,
    strict: bool = False,
) -> list[tuple[str, str]]
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `store_path` | `Path \| None` | No | Path to the trust store file. Defaults to `~/.deepagents/.state/skill_trust.json`. (default: `None`) |
| `strict` | `bool` | No | Propagated to `_load_store`; see `list_trusted_skill_dirs`. (default: `False`) |

## Returns

`list[tuple[str, str]]`

`(path, trusted_at)` tuples sorted by path. `trusted_at` is the stored
ISO-8601 string, or `""` when a hand-edited entry omitted
or malformed it (the path is still listed so it remains
visible and revocable).

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/e14e0adcbe78565ed3650e7f24b2a775d5437d25/libs/code/deepagents_code/skills/trust.py#L465)