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

# Overview

{% hint style="info" %}
**Takeaways**

* Which workflow solves the problem you're facing?
* Which Tessl components and commands each workflow uses.
  {% endhint %}

Each tutorial walks through one common agentic-development workflow from start to finish. Start with the one that matches the problem you're solving.

| Tutorial                                                                                                        | Use it when                                                                                  |
| --------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
| [Using Tessl as a package manager](/tutorials/using-tessl-as-a-package-manager.md)                              | You want to install, version, and publish skills like code dependencies.                     |
| [Protecting yourself from insecure skills](/tutorials/protecting-against-insecure-skills.md)                    | Installing skills from public sources exposes you to supply-chain and prompt-injection risk. |
| [Codifying and enforcing your company's skill standards](/tutorials/codifying-and-enforcing-skill-standards.md) | Skills sprawl into overlapping, drifting copies with no enforced standard.                   |
| [Improving a skill](/tutorials/improving-a-skill.md)                                                            | You can't tell whether a skill actually improves agent output, so no one risks changing it.  |
| [Setting up agentic code review](/tutorials/setting-up-agentic-code-review.md)                                  | Code review doesn't scale to agent-authored PRs.                                             |
| [Improving agent code quality](/tutorials/improving-agent-code-quality.md)                                      | Agents repeat the same mistakes across PRs.                                                  |
| [Automating repetitive tasks](/tutorials/automating-repetitive-tasks.md)                                        | Repetitive work never gets turned into automation.                                           |


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.tessl.io/tutorials/tutorials.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
