> For the complete documentation index, see [llms.txt](https://documentarians.gitbook.io/metadocumentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentarians.gitbook.io/metadocumentation/redirect/structure/namespaces.md).

# Namespaces

A fundamental aspect of documentation is figuring out how to present information to readers in the most effective way. A part of that is related to the way we create and handle `namespaces`, a set of schemes to organize content. Here's a few examples of the most common namespace types in documentation:

## **By "persona"**

*Personas* are profiles of the target audience of a certain portion of the documentation.

{% code title="Hubs by personas on MediaWiki's documentation" %}

```
├── Users
├── System Administrators
├── Developers
├── Translators
```

{% endcode %}

## By action

{% code title="GitHub guides" %}

```
├── Understanding the GitHub flow
├── Getting started with GitHub Pages
├── Forking projects
├── Making your code citable
├── Mastering issues
├── Mastering Markdown
├── Documenting your project on GitHub
```

{% endcode %}

{% code title="MediaWiki.org landing page" %}

```
├── Set up and run MediaWiki
├── Edit and use MediaWiki
├── Develop and extend code
├── Get help and contribute
```

{% endcode %}

## By subject

{% code title="GitLab user docs" %}

```
├── Overview
├── Concepts
├── Use cases
├── Projects
├── GitLab CI/CD
├── Account
├── Groups
```

{% endcode %}

## By type

{% code title="Clear Linux\* OS documentation" %}

```
├── About
├── Guides
├── Tutorials 
├── Reference 
├── FAQ
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentarians.gitbook.io/metadocumentation/redirect/structure/namespaces.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
