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

# Manifests

> Resolve app manifests into TinyCloud spaces and databases

Use `tc manifest resolve` when you want to turn a manifest into the concrete `--space` and `--db` values you should pass to other CLI commands.

```bash theme={null}
tc manifest resolve ./manifest.json
tc manifest resolve https://example.com/manifest.json
```

## What it returns

* App id, name, and manifest version
* Effective owned-space name and resolved space URI
* Permission entries with resolved paths
* Derived SQL database basenames

## Typical use

```bash theme={null}
tc manifest resolve ./manifest.json
tc sql query --space applications --db xyz.tinycloud.listen/conversations "SELECT count(*) FROM conversation"
```

The command is read-only. It helps you line up manifest declarations with the CLI target values you need later.

<Note>
  The manifest command resolves against the active profile so it can compute the correct owned-space URI without contacting the node.
</Note>
