> For the complete documentation index, see [llms.txt](https://developer.kizen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.kizen.com/docs/readme/contributing-to-kizen-docs/submitting-documentation-updates.md).

# Submitting Documentation Updates

Follow these steps to contribute to any open-source <code class="expression">space.vars.Kizen\_company\_name</code> docs.

{% stepper %}
{% step %}

#### Open the documentation page

* Go to the <kbd>developer.kizen.com</kbd> page you want to improve.
* Click **Edit on GitHub**.
  {% endstep %}

{% step %}

#### Fork the repository

* On GitHub, select **Fork**.

{% hint style="info" %}
**Note:** Forking the repository creates your own copy to edit.
{% endhint %}
{% endstep %}

{% step %}

#### Create a new branch

In your fork, type the following into your CLI:

```bash
git checkout -b update-docs-[short-description]
```

{% hint style="success" %}
**Example:** <kbd>update-docs-fix-webhook-example</kbd>
{% endhint %}
{% endstep %}

{% step %}

#### Make your changes

* Edit the Markdown file GitHub opened. Make sure to keep the change focused and match existing formatting, tone, and style.
  {% endstep %}

{% step %}

#### Commit your update

Use a clear commit message, for example:

```bash
git commit -m "Clarified webhook payload example and fixed query parameters"
```

{% endstep %}

{% step %}

#### Push your branch

```bash
git push origin update-docs-[short-description]
```

{% endstep %}

{% step %}

#### Open a Pull Request

In GitHub, select **Compare & Pull Request**.

Add a short summary to explain why the change is needed, and provide a link to the doc page.

{% hint style="info" %}
**Note:** If you changed formatting on the page, please include before/after screenshots.
{% endhint %}
{% endstep %}
{% endstepper %}

Once submitted, the PR enters <code class="expression">space.vars.Kizen\_company\_name</code>’s review workflow.

<details>

<summary>Related Topics</summary>

* [Introduction](/docs/readme.md)
* [Intended Audience](/docs/readme/intended-audience.md)
* [Contributing to Kizen Docs](/docs/readme/contributing-to-kizen-docs.md)
* [Pull Request Review and Publishing Process](/docs/readme/contributing-to-kizen-docs/pull-request-review-and-publishing-process.md)

</details>


---

# 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://developer.kizen.com/docs/readme/contributing-to-kizen-docs/submitting-documentation-updates.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.
