# What is my package for?

{% hint style="warning" %}
Warnin&#x67;**:** Chakra is still very buggy and is still in development!
{% endhint %}

{% hint style="info" %}
**Good to know:** Chakra was mainly designed with beginners in mind, making more \
complicated tasks easier, as a tradeoff, more experienced developers will lose\
customizability.
{% endhint %}

Here are a couple of examples of some amazing bots made with Chakra:

> No bots have been made yet. (This gives you better chances of being shown up here if you make a bot)
>
> — From Noone (yet)

> No bots have been made yet. (This gives you better chances of being shown up here if you make a bot)
>
> — From Noone (yet)

## Getting Started

{% code title="index.js" %}

```javascript
const Discord = require('discord.js')
const client = new Discord.Client()
const engine = require('chakra-engine')
const config = JSON.parse(require('./config.json'))

const token = config.token
// V for logging into the website
const oauthLink = config.oauthLink
// V port for website
const PORT = config.port || 80
// V so the engine can read your package.json
const pack = require('package.json')

engine.initialize(token, oauthLink, PORT, pack)
```

{% endcode %}

{% hint style="info" %}
**Good to know:** Chakra builds a full and feature-full website up from the ground when you launch your project, and uses discord oauth2 to set up a sign-up/in system.
{% endhint %}

### Important lessons:&#x20;

Learn the fundamentals of Chakra to get a deeper understanding of our main features:

{% content-ref url="/pages/OnJMK4muDFcELX8QefEU" %}
[Creating your first command](/chakra-engine/guides/creating-your-first-command.md)
{% endcontent-ref %}

{% content-ref url="/pages/lU5i3k4StOa3ybVspkJM" %}
[Creating your oauth URL](/chakra-engine/guides/creating-your-oauth-url.md)
{% endcontent-ref %}


---

# Agent Instructions: 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://amukh1.gitbook.io/chakra-engine/what-is-my-package-for.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.
